Home
last modified time | relevance | path

Searched refs:Java (Results 1 – 25 of 1690) sorted by relevance

12345678910>>...68

/external/javaparser/javaparser-core-testing/src/test/resources/com/github/javaparser/lexical_preservation_samples/
DExample4_original.java.txt47 * 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 …]
/external/protobuf/java/
Dlite.md7 ## 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 …]
DREADME.md7 ## Use Java Protocol Buffers
9 To use protobuf in Java, first obtain the protocol compiler (a.k.a., protoc,
11 generate Java code for your .proto files:
15 Include the generated Java files in your project and add a dependency on the
16 protobuf Java runtime.
52 ### Use Java Protocol Buffers on Android
54 For Android users, it's recommended to use protobuf Java Lite runtime because
55 of its smaller code size. Java Lite runtime also works better with Proguard
56 because it doesn't rely on Java reflection and is optimized to allow as much
57 code stripping as possible. You can following these [instructions to use Java
[all …]
/external/javaparser/javaparser-core-testing-bdd/src/test/resources/com/github/javaparser/
Dpretty_printing_scenarios.story7 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 …]
Dcomment_attribution_scenarios.story1 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 …]
/external/gson/
DREADME.md3Java 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…
6Java 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 …]
/external/cronet/third_party/protobuf/java/
Dlite.md7 ## Use Protobuf Java Lite Runtime
9 Protobuf Java Lite runtime is separated from the main Java runtime because
10 it's designed/implemented with different constraints. In particular, Java
15 NOT guarantee API/ABI stability for Java Lite. If this is not acceptable
16 for your use-case, please use the full Java runtime instead. Note that
17 the latest version of Java Lite is not compatible with the 3.0.0 version.
19 You can generate Java Lite code for your .proto files:
26 Include the generated Java files in your project and add a dependency on the
27 protobuf Java runtime. If you are using Maven, use the following:
53 For the older version of Java Lite (v3.0.0), please refer to:
DREADME.md7 ## Use Java Protocol Buffers
9 To use protobuf in Java, first obtain the protocol compiler (a.k.a., protoc,
11 generate Java code for your .proto files:
15 Include the generated Java files in your project and add a dependency on the
16 protobuf Java runtime.
52 ### Use Java Protocol Buffers on Android
54 For Android users, it's recommended to use protobuf Java Lite runtime because
55 of its smaller code size. Java Lite runtime also works better with Proguard
56 because it doesn't rely on Java reflection and is optimized to allow as much
57 code stripping as possible. You can following these [instructions to use Java
[all …]
/external/libchrome/base/android/jni_generator/
DREADME.md2 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 …]
/external/perfetto/docs/data-sources/
Djava-heap-profiler.md1 # 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 ![Java heap dumps in the process tracks](/docs/images/profile-diamond.png)
24 ![Flamegraph of a Java heap dump](/docs/images/java-heap-graph.png)
32 Information about the Java Heap is written to the following tables:
[all …]
/external/flatbuffers/docs/source/
DJavaUsage.md1 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 …]
/external/opencensus-java/contrib/agent/
DREADME.md1 # OpenCensus Agent for Java
7 The *OpenCensus Agent for Java* collects and sends latency data about your Java process to
13 The *OpenCensus Agent for Java* is in an early development stage. The following features are
40 We see tracing as a cross-cutting concern which the *OpenCensus Agent for Java* weaves into
41 existing Java bytecode (the application and its libraries) at runtime, typically when first loading
48 stays as-is across the supported versions, the Java agent's bytecode weaver will be able to
51 The *OpenCensus Agent for Java* uses [Byte Buddy](http://bytebuddy.net/), a widely used and
52 well-maintained bytecode manipulation library, for instrumenting selected Java methods at class
53 load-time. Which Java methods we want to intercept/instrument obviously depends on the library
59 Download the latest version of the *OpenCensus Agent for Java* `.jar` file
[all …]
/external/apache-commons-bcel/docs/
Dmanual.bib11 title = {\protect{Adding Type Parameterization to the Java
30 title = {\protect{Barat -- A Front-End for Java}},
47 title = {\protect{BIT: A Tool for Instrumenting Java
72 title = {\protect{Dynamic Class Loading in the Java Virtual
98 title = {The Java Language Specification},
104 title = {Inside Java Class Files},
114 title = {Java Virtual Machine},
121 title = {\protect{JaWa: Java with Assertions}},
138 title = {The Java Virtual Machine Specification},
145 title = {\protect{Parameterized Types for Java}},
[all …]
Dgeneric.mdl78 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 …]
/external/libxml2/result/
Dsvg2.rde60 4 3 #text 0 1 Java Font definition:Dialog 0
71 4 3 #text 0 1 Java Font definition:Helvetica 0
99 4 3 #text 0 1 Java Font definition:Dialog 0
110 4 3 #text 0 1 Java Font definition:Helvetica 700
159 4 3 #text 0 1 Java Font definition:Dialog 700
170 4 3 #text 0 1 Java Font definition:Dialog 700
Dsvg2.rdr60 4 3 #text 0 1 Java Font definition:Dialog 0
71 4 3 #text 0 1 Java Font definition:Helvetica 0
99 4 3 #text 0 1 Java Font definition:Dialog 0
110 4 3 #text 0 1 Java Font definition:Helvetica 700
159 4 3 #text 0 1 Java Font definition:Dialog 700
170 4 3 #text 0 1 Java Font definition:Dialog 700
/external/grpc-grpc-java/compiler/
DREADME.md1 gRPC Java Codegen Plugin for Protobuf Compiler
4 This generates the Java interfaces out of the service definition from a
15 * Java 7 or up
35 To compile a proto file and generate Java interfaces out of the service definitions:
40 To generate Java interfaces with protobuf lite:
45 To generate Java interfaces with protobuf nano:
59 ## Creating a release of GRPC Java
/external/javassist/
DREADME.md1 Java bytecode engineering toolkit
6 Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
7 simple. It is a class library for editing bytecodes in Java; it enables Java
12 of the Java bytecode. The whole API is designed with only the vocabulary of
13 the Java language. You can even specify inserted bytecode in the form of
/external/tensorflow/tensorflow/tools/lib_package/
DREADME.md27 ## Java library
29 The TensorFlow [Java
31 consists of a native library (`libtensorflow_jni.so`) and a Java archive (JAR).
46 - The Java archive at:
48 - The Java archive for Java sources at:
/external/icu/icu4j/tools/build/
Dmanifest.stub4 Specification-Title: ICU for Java Doc Tools
7 Implementation-Title: ICU for Java Doc Tools
14 Specification-Title: ICU for Java Resource Index Generator
17 Implementation-Title: ICU for Java Resource Index Generator
/external/angle/third_party/bazel/desugar/
DREADME.chromium1 Name: Desugar, transforming Java 8 bytecode to be Java 7 compatible
10 Desugar is a Google-developed open-source Java library used by the build process
11 to transform Java 8 bytecode to Java 7. It is used to enable Java 8 features
/external/cronet/base/android/jni_generator/
DREADME.md2 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
26 Generally Java->Native calls are exported from the shared library and lazily
35 ### Exposing Java Methods
37 Java methods just need to be annotated with `@CalledByNative`. The generated
[all …]
/external/xz-java/
DNEWS2 XZ for Java release notes
7 * Fix a binary compatibility regression: XZ for Java 1.7 binaries
8 in the Maven Central require Java 9 which is too new. XZ for
9 Java 1.8 binaries require Java 5. (XZ for Java 1.6 and older
10 binaries require Java 1.4.)
/external/oss-fuzz/docs/getting-started/new-project-guide/
Djvm_lang.md3 title: Integrating a Java/JVM project
10 # Integrating a Java/JVM project
17 The process of integrating a project written in Java or any other language
18 running on the Java Virtual Machine (JVM) with OSS-Fuzz is very similar to the
25 Java fuzzing in OSS-Fuzz depends on
39 as an example of a simple Java-only fuzzing project. Additional examples,
40 including one for a Java project with native dependencies, are part of the
54 UndefinedBehaviorSanitizer (`undefined`). For pure Java projects, specify
82 In the simplest case, every fuzzer consists of a single Java file with a
101 Java-only project with single-file fuzz targets as described above:
[all …]
/external/grpc-grpc-java/examples/android/
DREADME.md1 gRPC Hello World Example (Android Java)
6 - [Java gRPC](https://github.com/grpc/grpc-java)
10 - [gRPC Java Android Quick Start Guide](https://grpc.io/docs/quickstart/android.html)
17 1. (Only for non-released versions) Install gRPC Java

12345678910>>...68