/art/test/113-multidex/src/ |
Second.java | 19 System.out.println("Second::zcall"); 23 System.out.println("Second::zcall1"); 27 System.out.println("Second::zcall2"); 31 System.out.println("Second::zcall3"); 35 System.out.println("Second::zcall4"); 39 System.out.println("Second::zcall5"); 43 System.out.println("Second::zcall6"); 47 System.out.println("Second::zcall7"); 51 System.out.println("Second::zcall8"); 55 System.out.println("Second::zcall9") [all...] |
/hardware/bsp/intel/peripheral/libupm/examples/java/ |
GROVESCAMSample.java | 30 System.loadLibrary("javaupm_grovescam"); 32 System.err.println("error in loading native library"); 33 System.exit(-1); 44 System.err.println("Failed to setup tty port parameters"); 45 System.exit(-1); 49 System.out.println("Initialized..."); 51 System.out.println("Initialization failed"); 54 System.out.println("preCapture succeeded..."); 56 System.out.println("preCapture failed."); 59 System.out.println("doCapture succeeded...") [all...] |
A110XSample.java | 29 System.loadLibrary("javaupm_a110x"); 31 System.err.println("error in loading native library"); 32 System.exit(-1); 44 System.out.println("Magnet (south polarity) detected."); 46 System.out.println("No magnet detected.");
|
BISS0001Sample.java | 29 System.loadLibrary("javaupm_biss0001"); 31 System.err.println("error in loading native library"); 32 System.exit(-1); 45 System.out.println("Detecting moving object"); 47 System.out.println("No moving objects detected");
|
GroveLineFinderSample.java | 29 System.loadLibrary("javaupm_grovelinefinder"); 31 System.err.println("error in loading native library"); 32 System.exit(-1); 44 System.out.println("White detected"); 46 System.out.println("Black detected");
|
GroveWaterSample.java | 29 System.loadLibrary("javaupm_grovewater"); 31 System.err.println("error in loading native library"); 32 System.exit(-1); 44 System.out.println("Sensor is wet"); 46 System.out.println("Sensor is dry");
|
LDT0028Sample.java | 30 System.loadLibrary("javaupm_ldt0028"); 32 System.err.println("error in loading native library"); 33 System.exit(-1); 43 System.out.println("Sensor name: " + sensor.name()); 46 System.out.println("Sample value: " + sensor.getSample());
|
RFR359FSample.java | 29 System.loadLibrary("javaupm_rfr359f"); 31 System.err.println("error in loading native library"); 32 System.exit(-1); 43 System.out.println("Object detected"); 45 System.out.println("Area is clear!");
|
RPR220Sample.java | 29 System.loadLibrary("javaupm_rpr220"); 31 System.err.println("error in loading native library"); 32 System.exit(-1); 45 System.out.println("Black detected"); 47 System.out.println("Black NOT detected");
|
YG1006Sample.java | 29 System.loadLibrary("javaupm_yg1006"); 31 System.err.println("error in loading native library"); 32 System.exit(-1); 44 System.out.println("Flame detected"); 46 System.out.println("No flame detected");
|
ZFM20Sample.java | 30 System.loadLibrary("javaupm_zfm20"); 32 System.err.println("error in loading native library"); 33 System.exit(-1); 44 System.err.println("Failed to setup tty port parameters"); 45 System.exit(-1); 55 System.out.println("Password verified."); 57 System.err.println("Password verification failed."); 58 System.exit(-1); 62 System.out.println("Total stored templates: " + fp.getNumTemplates()); 65 System.out.println("Waiting for finger print...") [all...] |
/art/test/965-default-verify/src/ |
Main.java | 18 System.out.println("Create Main instance"); 20 System.out.println("Calling functions on concrete Main"); 22 System.out.println("Calling functions on interface Iface"); 27 System.out.println("Calling verifiable function on Main"); 28 System.out.println(m.sayHi()); 29 System.out.println("Calling unverifiable function on Main"); 32 System.out.println("Unexpected no error Thrown on Main"); 34 System.out.println("Expected NSME Thrown on Main"); 36 System.out.println("Unexpected Error Thrown on Main"); 37 e.printStackTrace(System.out) [all...] |
/art/test/015-switch/src/ |
Main.java | 29 System.out.println("0"); break; 31 System.out.println("1"); break; 33 System.out.println("2"); break; 35 System.out.println("3"); break; 37 System.out.println("4"); break; 39 System.out.println("default"); break; 47 System.out.println("-3"); break; 49 System.out.println("-2"); break; 51 System.out.println("-1"); break; 53 System.out.println("0"); break [all...] |
/art/test/966-default-conflict/src/ |
Main.java | 18 System.out.println("Create Main instance"); 20 System.out.println("Calling functions on concrete Main"); 22 System.out.println("Calling functions on interface Iface"); 24 System.out.println("Calling functions on interface Iface2"); 28 System.out.println("Calling non-conflicting function on Main"); 29 System.out.println(m.charge()); 30 System.out.println("Calling conflicting function on Main"); 32 System.out.println(m.sayHi()); 33 System.out.println("Unexpected no error Thrown on Main"); 35 System.out.println("Unexpected AME Thrown on Main") [all...] |
/art/test/967-default-ame/src/ |
Main.java | 18 System.out.println("Create Main instance"); 20 System.out.println("Calling functions on concrete Main"); 22 System.out.println("Calling functions on interface Iface"); 24 System.out.println("Calling functions on interface Iface2"); 28 System.out.println("Calling non-abstract function on Main"); 29 System.out.println(m.charge()); 30 System.out.println("Calling abstract function on Main"); 32 System.out.println(m.sayHi()); 33 System.out.println("Unexpected no error Thrown on Main"); 35 System.out.println("Expected AME Thrown on Main") [all...] |
/external/vogar/src/vogar/ |
Vogar.java | 56 return new File(System.getProperty("user.home", "."), name); 117 private boolean ansi = !"dumb".equals(System.getenv("TERM")); 221 System.out.println("Usage: Vogar [options]... <actions>... [-- target args]..."); 222 System.out.println(); 223 System.out.println(" <actions>: .java files, directories, or class names."); 224 System.out.println(" These should be JUnit tests, jtreg tests, Caliper benchmarks"); 225 System.out.println(" or executable Java classes."); 226 System.out.println(); 227 System.out.println(" When passing in a JUnit test class, it may have \"#method_name\""); 228 System.out.println(" appended to it, to specify a single test method.") [all...] |
/art/test/024-illegal-access/src/ |
Main.java | 21 System.err.println("ERROR: call 1 not expected to succeed"); 24 System.out.println("Got expected failure 1"); 27 System.out.println("Got expected failure 1"); 32 System.err.println("ERROR: call 2 not expected to succeed"); 35 System.out.println("Got expected failure 2"); 40 System.err.println("ERROR: call 3 not expected to succeed"); 43 System.out.println("Got expected failure 3"); 46 System.out.println("Got expected failure 3"); 51 System.err.println("ERROR: call 4 not expected to succeed"); 54 System.out.println("Got expected failure 4") [all...] |
/art/test/077-method-override/src2/ |
Base.java | 19 System.out.println("declaredInBase: Base"); 23 System.out.println("overridden: Base"); 28 // System.out.println("wasOverridden: Base"); 35 System.out.println("overrideWithPublic: Base"); 43 System.out.println("overridePublicWithProtected: Base"); 50 System.out.println("overrideProtectedWithPublic: Base"); 58 System.out.println("overridePublicWithPrivate: Base"); 65 System.out.println("overridePrivateWithPublic: Base"); 73 System.out.println("overrideVirtualWithStatic: Base"); 80 System.out.println("overrideStaticWithVirtual: Base") [all...] |
/art/test/126-miranda-multidex/src/ |
MirandaClass.java | 38 System.out.println("inInterfaceDummy1"); 41 System.out.println("inInterfaceDummy2"); 44 System.out.println("inInterfaceDummy3"); 47 System.out.println("inInterfaceDummy4"); 50 System.out.println("inInterfaceDummy5");
|
MirandaClass2.java | 28 System.out.println("inInterfaceDummy1"); 31 System.out.println("inInterfaceDummy2"); 34 System.out.println("inInterfaceDummy3"); 37 System.out.println("inInterfaceDummy4"); 40 System.out.println("inInterfaceDummy5");
|
/art/test/046-reflect/src/otherpackage/ |
Other.java | 21 System.out.println("public method"); 24 System.out.println("package method"); 33 System.out.println("inner method");
|
/cts/tools/dasm/src/java_cup/ |
internal_error.java | 17 System.err.println("JavaCUP Fatal Internal Error Detected"); 18 System.err.println(getMessage()); 20 System.exit(-1);
|
/external/conscrypt/src/compat/java/org/conscrypt/ |
NativeCryptoJni.java | 26 System.loadLibrary("gmscore"); 27 System.loadLibrary("conscrypt_gmscore_jni"); 29 System.loadLibrary("conscrypt_jni");
|
/art/test/075-verification-error/src/ |
Main.java | 39 System.err.println("ERROR: MaybeAbstract succeeded unexpectedly"); 41 System.out.println("Got expected InstantationError"); 42 if (VERBOSE) System.out.println("--- " + ie); 44 System.err.println("Got unexpected MaybeAbstract failure"); 57 System.out.println("Got expected NoSuchFieldError"); 58 if (VERBOSE) System.out.println("--- " + nsfe); 64 System.out.println("Got expected NoSuchFieldError"); 65 if (VERBOSE) System.out.println("--- " + nsfe); 71 System.out.println("Got expected NoSuchMethodError"); 72 if (VERBOSE) System.out.println("--- " + nsme) [all...] |
/external/testng/src/test/java/test/ant/ |
AntSystemPropertySet.java | 19 assertNotNull(System.getProperty("syspropset1"), "syspropset1 not found"); 20 assertEquals(System.getProperty("syspropset1"), "value 1", "Wrong value for syspropset1"); 22 assertNotNull(System.getProperty("syspropset2"), "syspropset2 not found"); 23 assertEquals(System.getProperty("syspropset2"), "value 2", "Wrong value for syspropset2"); 25 assertNotNull(System.getProperty("sysprop1"), "sysprop1 not found"); 26 assertEquals(System.getProperty("sysprop1"), "value 3", "Wrong value for sysprop1");
|