/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Modules/ |
D | FindJava.cmake | 8 Find Java 10 This module finds if Java is installed and determines where the 12 to specify a Java installation prefix explicitly. 14 See also the :module:`FindJNI` module to find Java Native Interface (JNI). 17 Added support for Java 9+ version parsing. 23 Runtime = Java Runtime Environment used to execute Java byte-compiled applications 25 IdlJ = Interface Description Language (IDL) to Java compiler 26 JarSigner = Signer and verifier tool for Java Archive (JAR) files 33 Java_JAVA_EXECUTABLE = the full path to the Java runtime 34 Java_JAVAC_EXECUTABLE = the full path to the Java compiler [all …]
|
D | FindJNI.cmake | 8 Find Java Native Interface (JNI) libraries. 10 JNI enables Java code running in a Java Virtual Machine (JVM) to call 14 This module finds if Java is installed and determines where the 17 Java installation prefix explicitly. 37 the path to the Java AWT Native Interface (JAWT) library 39 the path to the Java Virtual Machine (JVM) library 176 "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit;CurrentVersion]" NAME) 179 "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.9;JavaHome]/lib" 180 "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.8;JavaHome]/lib" 181 "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.7;JavaHome]/lib" [all …]
|
D | CMakeDetermineJavaCompiler.cmake | 5 # determine the compiler to use for Java programs 14 …set(CMAKE_Java_COMPILER_ARG1 "${CMAKE_Java_FLAGS_ENV_INIT}" CACHE STRING "Arguments to Java compil… 36 "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\2.0;JavaHome]/bin" 37 "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.9;JavaHome]/bin" 38 "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.8;JavaHome]/bin" 39 "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.7;JavaHome]/bin" 40 "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.6;JavaHome]/bin" 41 "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.5;JavaHome]/bin" 42 "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.4;JavaHome]/bin" 43 "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.3;JavaHome]/bin" [all …]
|
/aosp_15_r20/external/javaparser/javaparser-core-testing/src/test/resources/com/github/javaparser/lexical_preservation_samples/ |
H A D | Example4_original.java.txt | 47 * Parse Java source code and creates Abstract Syntax Trees. 122 * Parses the Java code contained in the {@link InputStream} and returns a 125 * @param in {@link InputStream} containing Java source code 127 * @return CompilationUnit representing the Java source code 135 * Parses the Java code contained in the {@link InputStream} and returns a 139 * @param in {@link InputStream} containing Java source code 140 * @return CompilationUnit representing the Java source code 148 * Parses the Java code contained in a {@link File} and returns a 151 * @param file {@link File} containing Java source code 153 * @return CompilationUnit representing the Java source code [all …]
|
/aosp_15_r20/external/javaparser/javaparser-core-testing-bdd/src/test/resources/com/github/javaparser/ |
H A D | pretty_printing_scenarios.story | 7 When the class is parsed by the Java parser 22 When the class is parsed by the Java parser 46 When the class is parsed by the Java parser 69 When the class is parsed by the Java parser 89 When the class is parsed by the Java parser 112 When the class is parsed by the Java parser 129 When the class is parsed by the Java parser 139 When the class is parsed by the Java parser 155 When the class is parsed by the Java parser 173 When the class is parsed by the Java parser [all …]
|
H A D | comment_attribution_scenarios.story | 1 Scenario: A Class With Line Comments is processed by the Java Parser 15 When the class is parsed by the Java parser 26 Scenario: A Class With Line Comments is processed by the Java Parser 44 When the class is parsed by the Java parser 58 Scenario: A Class With Orphan Comment in Class Declaration is parsed by the Java Parser 70 When the class is parsed by the Java parser 75 Scenario: A Class With Line Comments in Multiple Methods is parsed by the Java Parser 97 When the class is parsed by the Java parser 113 Scenario: A Class With Line Comments in Multiple Methods is parsed by the Java Parser 130 When the class is parsed by the Java parser [all …]
|
/aosp_15_r20/art/runtime/ |
H A D | native_gc_triggering.md | 1 Triggering the GC to reclaim non-Java memory 5 effectively owned by a Java object, and reclaimed when the garbage collector determines that the 6 owning Java object is no longer reachable. Various mechanisms are used to accomplish this. These 7 include traditional Java finalizers, more modern Java `Cleaner`s, Android's `SystemCleaner` and, 12 Java objects of significantly smaller size. The Java garbage collector normally decides when to 13 collect based on occupancy of the Java heap. It would not collect if there are few bytes of newly 14 allocated Java objects in the Java heap, even if they "own" large amounts of C++ memory, which 15 cannot be reclaimed until the Java objects are reclaimed. 20 Java GC. 23 owned by Java objects. However, its major problem was that registering the exact size of such [all …]
|
/aosp_15_r20/external/gson/ |
H A D | README.md | 3 …Java library that can be used to convert Java Objects into their JSON representation. It can also … 4 Gson can work with arbitrary Java objects including pre-existing objects that you do not have sourc… 6 …Java objects to JSON. However, most of them require that you place Java annotations in your classe… 11 …* Provide simple `toJson()` and `fromJson()` methods to convert Java objects to JSON and vice-versa 13 * Extensive support of Java Generics 40 #### Minimum Java version 41 - Gson 2.9.0 and newer: Java 7 42 - Gson 2.8.9 and older: Java 6 44 …pite supporting older Java versions, Gson also provides a JPMS module descriptor (module name `com… 46 #### JPMS dependencies (Java 9+) [all …]
|
/aosp_15_r20/external/libchrome/base/android/jni_generator/ |
H A D | README.md | 2 JNI (Java Native Interface) is the mechanism that enables Java code to call 3 native functions, and native code to call Java functions. 5 * Native code calls into Java using apis from `<jni.h>`, which basically mirror 6 Java's reflection APIs. 7 * Java code calls native functions by declaring body-less functions with the 8 `native` keyword, and then calling them as normal Java functions. 14 `jni_generator` uses regular expressions to parse .Java files, so don't do 27 * Java->Native calls are exported from the shared library and lazily resolved 31 * Java->Native calls are explicitly registered with JNI on the native side. 47 ### Exposing Java Methods [all …]
|
/aosp_15_r20/external/perfetto/docs/data-sources/ |
H A D | java-heap-profiler.md | 1 # Memory: Java heap dumps 3 NOTE: Capturing Java heap dumps requires Android 11 or higher 6 started with Java heap dumps. 8 Conversely from [Native heap profiles](native-heap-profiler.md), Java heap dumps 10 information recorded in a Java heap dump is of the form: _Object X retains 13 Java heap dumps are not to be confused with profiles taken by the 14 [Java heap sampler](native-heap-profiler.md#java-heap-sampling) 22  24  32 Information about the Java Heap is written to the following tables: [all …]
|
/aosp_15_r20/external/apache-commons-bcel/docs/ |
H A D | generic.mdl | 78 language "Java") 108 language "Java") 129 language "Java") 143 language "Java") 151 language "Java") 164 language "Java") 177 language "Java") 185 language "Java") 193 language "Java") 203 language "Java") [all …]
|
/aosp_15_r20/external/protobuf/java/ |
H A D | lite.md | 7 ## Use the Protobuf Java Lite Runtime 9 The Protobuf Java Lite runtime is separated from the main Java runtime because 10 it's designed and implemented with different constraints. In particular, the Java 14 NOT guarantee API/ABI stability for Java Lite. If this is not acceptable 15 for your use-case, use the full Java runtime instead. Note that 16 the latest version of Java Lite is not compatible with the 3.0.0 version. 18 You can generate Java Lite code for your .proto files: 23 effect on Java code. 25 Include the generated Java files in your project and add a dependency on the 26 protobuf Java Lite runtime. If you are using Maven, include the following: [all …]
|
/aosp_15_r20/external/cronet/third_party/protobuf/java/ |
H A D | lite.md | 7 ## Use the Protobuf Java Lite Runtime 9 The Protobuf Java Lite runtime is separated from the main Java runtime because 10 it's designed and implemented with different constraints. In particular, the Java 14 NOT guarantee API/ABI stability for Java Lite. If this is not acceptable 15 for your use-case, use the full Java runtime instead. Note that 16 the latest version of Java Lite is not compatible with the 3.0.0 version. 18 You can generate Java Lite code for your .proto files: 23 effect on Java code. 25 Include the generated Java files in your project and add a dependency on the 26 protobuf Java Lite runtime. If you are using Maven, include the following: [all …]
|
/aosp_15_r20/external/okio/docs/ |
H A D | recipes.md | 8 These recipes work on all platforms: Java, Android, Kotlin/Native, and Kotlin/JS. See 9 [java.io Recipes](java_io_recipes.md) for samples that integrate Java APIs. 12 Read a text file line-by-line ([Java][ReadFileLineByLine]/[Kotlin][ReadFileLineByLineKt]) 28 === "Java" 30 Here we use Java's `try` blocks to close our sources automatically. 77 === "Java" 79 The above Java program can be written more compactly by inlining the `fileSource` variable and 118 === "Java" 150 Write a text file ([Java][WriteFile]/[Kotlin][WriteFileKt]) 177 === "Java" [all …]
|
/aosp_15_r20/external/flatbuffers/docs/source/ |
H A D | JavaUsage.md | 1 Use in Java {#flatbuffers_guide_use_java} 6 Before diving into the FlatBuffers usage in Java, it should be noted that 8 general FlatBuffers usage in all of the supported languages (including Java). 10 specific to Java. 17 ## FlatBuffers Java code location 19 The code for the FlatBuffers Java library can be found at 24 ## Testing the FlatBuffers Java libraries 28 The test code for Java is located in [JavaTest.java](https://github.com/google 36 *Note: These scripts require that [Java](https://www.oracle.com/java/index.html) 39 ## Using the FlatBuffers Java library [all …]
|
/aosp_15_r20/external/google-cloud-java/java-grafeas/ |
H A D | README.md | 1 # Google Grafeas Client for Java 3 Java idiomatic client for [Grafeas][product-docs]. 102 ## Supported Java Versions 104 Java 8 or above is required for using this client. 106 Google's Java client libraries, 111 [Oracle Java SE support roadmap][oracle] 112 (see the Oracle Java SE Product Releases section). 116 In general, new feature development occurs with support for the lowest Java 121 Java 11 and (in September 2021) Java 17 are the best choices for new 132 Google's client libraries support legacy versions of Java runtimes with long [all …]
|
/aosp_15_r20/external/google-cloud-java/java-iam/ |
H A D | README.md | 1 # Google IAM Client for Java 3 Java idiomatic client for [IAM][product-docs]. 106 ## Supported Java Versions 108 Java 8 or above is required for using this client. 110 Google's Java client libraries, 115 [Oracle Java SE support roadmap][oracle] 116 (see the Oracle Java SE Product Releases section). 120 In general, new feature development occurs with support for the lowest Java 125 Java 11 and (in September 2021) Java 17 are the best choices for new 136 Google's client libraries support legacy versions of Java runtimes with long [all …]
|
/aosp_15_r20/external/apache-commons-io/ |
H A D | RELEASE-NOTES.txt | 7 Commons IO is a package of Java utility classes like java.io. 14 Java 8 is required. 57 Commons IO 2.9.0 requires Java 8. 58 Commons IO 2.8.0 requires Java 8. 59 Commons IO 2.7 requires Java 8. 60 Commons IO 2.6 requires Java 7. 61 Commons IO 2.5 requires Java 6. 62 Commons IO 2.4 requires Java 6. 63 Commons IO 2.3 requires Java 6. 64 Commons IO 2.2 requires Java 5. [all …]
|
/aosp_15_r20/external/google-cloud-java/java-automl/ |
H A D | README.md | 1 # Google Cloud Auto ML Client for Java 3 Java idiomatic client for [Cloud Auto ML][product-docs]. 87 **AutoML API Java Client is now available in Vertex AI. Please visit** 88 [java-aiplatform](https://github.com/googleapis/java-aiplatform) **for the new Java Vertex AI clien… 117 ## Supported Java Versions 119 Java 8 or above is required for using this client. 121 Google's Java client libraries, 126 [Oracle Java SE support roadmap][oracle] 127 (see the Oracle Java SE Product Releases section). 131 In general, new feature development occurs with support for the lowest Java [all …]
|
/aosp_15_r20/external/google-cloud-java/java-service-usage/ |
H A D | README.md | 1 # Google Service Usage Client for Java 3 Java idiomatic client for [Service Usage][product-docs]. 106 ## Supported Java Versions 108 Java 8 or above is required for using this client. 110 Google's Java client libraries, 115 [Oracle Java SE support roadmap][oracle] 116 (see the Oracle Java SE Product Releases section). 120 In general, new feature development occurs with support for the lowest Java 125 Java 11 and (in September 2021) Java 17 are the best choices for new 136 Google's client libraries support legacy versions of Java runtimes with long [all …]
|
/aosp_15_r20/external/google-cloud-java/java-websecurityscanner/ |
H A D | README.md | 1 # Google Cloud Security Scanner Client for Java 3 Java idiomatic client for [Cloud Security Scanner][product-docs]. 106 ## Supported Java Versions 108 Java 8 or above is required for using this client. 110 Google's Java client libraries, 115 [Oracle Java SE support roadmap][oracle] 116 (see the Oracle Java SE Product Releases section). 120 In general, new feature development occurs with support for the lowest Java 125 Java 11 and (in September 2021) Java 17 are the best choices for new 136 Google's client libraries support legacy versions of Java runtimes with long [all …]
|
/aosp_15_r20/external/google-cloud-java/java-area120-tables/ |
H A D | README.md | 1 # Google Area 120 Tables Client for Java 3 Java idiomatic client for [Area 120 Tables][product-docs]. 109 ## Supported Java Versions 111 Java 8 or above is required for using this client. 113 Google's Java client libraries, 118 [Oracle Java SE support roadmap][oracle] 119 (see the Oracle Java SE Product Releases section). 123 In general, new feature development occurs with support for the lowest Java 128 Java 11 and (in September 2021) Java 17 are the best choices for new 139 Google's client libraries support legacy versions of Java runtimes with long [all …]
|
/aosp_15_r20/external/google-cloud-java/java-document-ai/ |
H A D | README.md | 1 # Google Document AI Client for Java 3 Java idiomatic client for [Document AI][product-docs]. 106 ## Supported Java Versions 108 Java 8 or above is required for using this client. 110 Google's Java client libraries, 115 [Oracle Java SE support roadmap][oracle] 116 (see the Oracle Java SE Product Releases section). 120 In general, new feature development occurs with support for the lowest Java 125 Java 11 and (in September 2021) Java 17 are the best choices for new 136 Google's client libraries support legacy versions of Java runtimes with long [all …]
|
/aosp_15_r20/external/google-cloud-java/java-shell/ |
H A D | README.md | 1 # Google Cloud Shell Client for Java 3 Java idiomatic client for [Cloud Shell][product-docs]. 106 ## Supported Java Versions 108 Java 8 or above is required for using this client. 110 Google's Java client libraries, 115 [Oracle Java SE support roadmap][oracle] 116 (see the Oracle Java SE Product Releases section). 120 In general, new feature development occurs with support for the lowest Java 125 Java 11 and (in September 2021) Java 17 are the best choices for new 136 Google's client libraries support legacy versions of Java runtimes with long [all …]
|
/aosp_15_r20/external/google-cloud-java/java-iot/ |
H A D | README.md | 1 # Google Cloud Internet of Things (IoT) Core Client for Java 3 Java idiomatic client for [Cloud Internet of Things (IoT) Core][product-docs]. 106 ## Supported Java Versions 108 Java 8 or above is required for using this client. 110 Google's Java client libraries, 115 [Oracle Java SE support roadmap][oracle] 116 (see the Oracle Java SE Product Releases section). 120 In general, new feature development occurs with support for the lowest Java 125 Java 11 and (in September 2021) Java 17 are the best choices for new 136 Google's client libraries support legacy versions of Java runtimes with long [all …]
|