Home
last modified time | relevance | path

Searched refs:classes (Results 1 – 25 of 26) sorted by relevance

12

/libcore/luni/src/test/etc/loading-test2-jar/
Dbuild.sh38 rm -rf classes
39 rm -rf classes.dex
42 mkdir classes
43 javac -d classes *.java
44 find classes -type f | xargs d8 --output . # Creates classes.dex
45 jar cf loading-test2.jar classes.dex -C resources .
47 rm -rf classes
48 mv classes.dex ${resourceDir}/loading-test2.dex
/libcore/luni/src/test/etc/loading-test-jar/
Dbuild.sh38 rm -rf classes
40 rm -rf classes.dex
48 mkdir classes
49 javac -classpath classes2 -d classes *.java
50 d8 --output . --classpath classes2 $(find classes -type f) # Creates classes.dex
51 jar cf loading-test.jar classes.dex -C resources .
53 rm -rf classes
55 mv classes.dex ${resourceDir}/loading-test.dex
/libcore/ojluni/src/main/java/java/net/
DContentHandler.java100 public Object getContent(URLConnection urlc, Class[] classes) throws IOException { in getContent() argument
103 for (int i = 0; i < classes.length; i++) { in getContent()
104 if (classes[i].isInstance(obj)) { in getContent()
DURLConnection.java791 public Object getContent(Class[] classes) throws IOException { in getContent() argument
796 return getContentHandler().getContent(this, classes); in getContent()
DURL.java1103 public final Object getContent(Class[] classes) in getContent() argument
1105 return openConnection().getContent(classes); in getContent()
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
DContentHandlerTest.java35 Class[] classes = { Foo.class, String.class, }; in test_getContent() local
38 Object content = handler.getContent(conn, classes); in test_getContent()
42 content = handler.getContent(conn, classes); in test_getContent()
/libcore/luni/src/test/java/dalvik/system/
Dcreate_test_jar.sh25 jar cf ./child.jar classes.dex resource.txt
50 jar cf ./parent.jar classes.dex resource.txt resource2.txt
70 jar cf ./bootoverride.jar classes.dex android/icu/ICUConfig.properties
/libcore/luni/src/main/java/java/util/logging/
Dlogging.properties37 # Specify handler classes list, these classes will be instantiated during the
40 # classes must be in the classpath.
46 # Specify a class names list, these classes' default constructor will be executed
49 # classes must be in the classpath.
/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DREADME.txt1 These classes are tied to the VM, e.g. the VM may invoke some of the methods.
/libcore/dom/src/test/java/
DREADME1 all classes under org.w3c.domts are from the official w3c test suite.
/libcore/
Dnullability_annotated_classes.txt1 # The following classes have nullability annotations directly in their source
DJavaLibrary.bp212 // contains the core-all jar, which contains the classes that end up in core-oj,
396 // contains lambdas. This contains all classes / methods required by javac
413 // because those classes are also part of the core library public SDK API
492 // This builds classes that are in the java.base Java module:
736 // 1.) DeserializeMethodTest and SerializedLambdaTest, because they depends on stub classes
738 // 2.) util/stream/boot*. Those directories contain classes in the package java.util.stream;
806 // classes for which a system module can be created. Every system module must
807 // contain the java.lang classes so the set was constructed by starting with
808 // the java.lang classes and then adding their transitive dependencies without
809 // splitting packages. So, if one class from a package is used then all classes
[all …]
Dopenjdk_java_files.bp1 // Classes which are part of the public API, except where classes and
1367 // any of these classes.
1406 // the public APIs. Unless they are annotated, these classes and all their
1820 // All classes, whether exposed in any API or not.
1841 // Generates stub files for the classes exposed in the public API, without
1853 // Generates stub files for the classes exposed in the intra-core or
/libcore/mmodules/intracoreapi/
DAndroid.bp57 // classes/members that are in the intra-core API but which are not the public API.
95 // A library containing additional classes that are needed in the system modules.
123 // Additional classes needed by javac but which are not present in the stubs.
/libcore/luni/src/test/java/libcore/java/lang/
DOldClassTest.java256 Class<?> [] classes = {PublicTestClass.class, ExtendTestClass.class, in test_forNameLjava_lang_StringLbooleanLClassLoader() local
259 for(int i = 0; i < classes.length; i++) { in test_forNameLjava_lang_StringLbooleanLClassLoader()
260 Class<?> clazz = Class.forName(classes[i].getName(), true, pcl); in test_forNameLjava_lang_StringLbooleanLClassLoader()
261 assertEquals(classes[i], clazz); in test_forNameLjava_lang_StringLbooleanLClassLoader()
263 clazz = Class.forName(classes[i].getName(), false, pcl); in test_forNameLjava_lang_StringLbooleanLClassLoader()
264 assertEquals(classes[i], clazz); in test_forNameLjava_lang_StringLbooleanLClassLoader()
/libcore/luni/src/test/filesystems/
DAndroid.bp15 // Contains classes for testing loading FileSystemProvider from a custom ClassLoader.
/libcore/luni/src/test/parameter_metadata/
DAndroid.bp15 // Contains classes for testing access to parameter information via reflection.
/libcore/dalvik/src/main/java/dalvik/system/
DVMDebug.java597 public static native long[] countInstancesOfClasses(Class[] classes, boolean assignable); in countInstancesOfClasses() argument
615 public static native Object[][] getInstancesOfClasses(Class[] classes, boolean assignable); in getInstancesOfClasses() argument
/libcore/tools/testmapping/
DREADME31 number of classes to exclude, so the TEST_MAPPING looks reasonable. If this list
/libcore/tools/docs/crypto/
DREADME6 a couple extra classes.
/libcore/ojluni/annotations/
DREADME37 to the classes and members.
/libcore/luni/src/test/java/libcore/java/lang/reflect/
DMethodTest.java550 Class[] classes = { in testDefaultMethod_invoke() local
561 for (Class<?> clazz : classes) { in testDefaultMethod_invoke()
/libcore/ojluni/annotations/hiddenapi/java/net/
DURL.java176 public java.lang.Object getContent(java.lang.Class[] classes) throws java.io.IOException { in getContent() argument
/libcore/mmodules/core_platform_api/
DAndroid.bp20 // classes/members that are in the intra-core API but which are not in the public
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
DObjectInputStreamTest.java1481 Class<?> classes[] = new Class[] { byte.class, short.class, int.class, field in Test
1489 return Arrays.equals(classes, ((Test) o).classes); in equals()

12