/dalvik/tests/004-annotations/src/android/test/anno/ |
TestAnnotations.java | 23 System.out.println(prefix + " " + a); 24 System.out.println(prefix + " " + a.annotationType()); 33 System.out.println("annotations on TYPE " + clazz + 36 System.out.println(); 40 System.out.println(" annotations on CTOR " + c + ":"); 43 System.out.println(" constructor parameter annotations:"); 51 System.out.println(" annotations on METH " + m + ":"); 54 System.out.println(" method parameter annotations:"); 62 System.out.println(" annotations on FIELD " + f + ":"); 68 System.out.println(" aff: " + aff + " / " + aff.getClass()) [all...] |
/external/proguard/src/proguard/gui/ |
ProGuardRunnable.java | 68 // Redirect the System's out and err streams to the console text area. 69 PrintStream oldOut = System.out; 70 PrintStream oldErr = System.err; 75 System.setOut(printStream); 76 System.setErr(printStream); 87 System.out.println("Processing completed successfully"); 94 System.out.println(ex.getMessage()); 105 System.gc(); 108 System.out.println(msg("outOfMemoryInfo", configurationFileName)); 121 // Restore the old System's out and err streams [all...] |
/dalvik/tests/044-proxy/src/ |
WrappedThrow.java | 38 System.out.println("WT init failed"); 46 System.err.println("No exception thrown"); 48 System.out.println("Got expected UTE"); 50 System.err.println("Got unexpected exception: " + t); 55 System.err.println("No exception thrown"); 57 System.out.println("Got expected IOE"); 59 System.err.println("Got unexpected exception: " + t); 64 System.err.println("No exception thrown"); 66 System.out.println("Got expected IOE"); 68 System.err.println("Got unexpected exception: " + t) [all...] |
BasicTest.java | 36 System.err.println("not a proxy class?"); 38 System.err.println("ERROR: Proxy.getInvocationHandler is null"); 56 System.out.println("Didn't get expected exception"); 58 System.out.println("Got expected ioobe"); 62 System.out.println("Didn't get expected exception"); 64 System.out.println("Got expected ie"); 71 System.out.println(""); 73 System.out.println("Proxy methods: " + Arrays.deepToString(methods)); 75 System.out.println("Decl annos: " + Arrays.deepToString(meth.getDeclaredAnnotations())); 77 System.out.println("Param annos (" + paramAnnos.length + ") : [all...] |
/external/proguard/src/proguard/ |
Initializer.java | 70 WarningPrinter classReferenceWarningPrinter = new WarningPrinter(System.err, configuration.warn); 71 WarningPrinter dependencyWarningPrinter = new WarningPrinter(System.err, configuration.warn); 91 WarningPrinter memberReferenceWarningPrinter = new WarningPrinter(System.err, configuration.warn); 119 WarningPrinter dynamicClassReferenceNotePrinter = new WarningPrinter(System.out, configuration.note); 120 WarningPrinter classForNameNotePrinter = new WarningPrinter(System.out, configuration.note); 134 WarningPrinter getMemberNotePrinter = new WarningPrinter(System.out, configuration.note); 157 WarningPrinter fullyQualifiedClassNameNotePrinter = new WarningPrinter(System.out, configuration.note); 158 WarningPrinter descriptorKeepNotePrinter = new WarningPrinter(System.out, configuration.note); 232 System.out.println("Note: there were " + fullyQualifiedNoteCount + 234 System.out.println(" You should check your configuration for typos.") [all...] |
Targeter.java | 63 System.err.print("Warning: some classes have more recent versions ("); 69 System.err.print(ClassUtil.externalClassVersion(classVersion.intValue())); 73 System.err.print(","); 77 System.err.println(")"); 78 System.err.println(" than the target version ("+ClassUtil.externalClassVersion(configuration.targetClassVersion)+")."); 82 System.err.println(" If you are sure this is not a problem,"); 83 System.err.println(" you could try your luck using the '-ignorewarnings' option.");
|
/dalvik/tests/027-arithmetic/src/ |
Main.java | 20 System.out.println("values are " + Integer.toHexString(i1) 23 System.out.println("First l is " + Long.toHexString(l)); 34 System.out.println("Second l is " + Long.toHexString(l)); 51 System.out.println("shiftTest2 l is " + Long.toHexString(result)); 64 System.out.println("f=" + f + " --> i=" + i); 68 System.out.println("f=" + f + " --> i=" + i); 73 System.out.println("d=" + d + " --> i=" + i); 77 System.out.println("d=" + d + " --> i=" + i); 82 System.out.println("d=" + d + " --> l=" + l); 86 System.out.println("d=" + d + " --> l=" + l) [all...] |
/dalvik/dx/tests/087-ssa-local-vars/ |
Blort.java | 13 System.out.println("foo"); 20 System.out.println("string -> object"); 21 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length); 22 System.out.println("object -> string"); 23 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length); 24 System.out.println("object -> string (modified)"); 27 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length); 30 System.out.println("caught ArrayStoreException (expected)"); 40 System.err.println(foo);
|
/dalvik/libcore/logging/src/main/java/java/util/logging/ |
ErrorManager.java | 81 * implementation will write out the message to {@link System#err} on the 101 System.err.println(this.getClass().getName() 105 System.err.println(Messages.getString("logging.1E", message)); //$NON-NLS-1$ 109 System.err.println(Messages.getString("logging.1F", exception)); //$NON-NLS-1$
|
ConsoleHandler.java | 22 * {@code System.err}. 50 super(System.err); 54 * Closes this handler. The {@code System.err} is flushed but not closed.
|
/dalvik/tests/037-inherit/src/ |
Main.java | 6 System.out.println(" " + i + ": " + magicArray[i].getSomeData()); 12 System.out.print("magic is "); 13 System.out.println(magic.getSomeData());
|
/dalvik/tests/049-show-object/src/ |
Main.java | 11 System.out.println("d is " + d); 16 System.out.println("class: " + foo.getClass()); 19 System.out.println(i + ": " + foo[i]);
|
/external/jdiff/src/jdiff/ |
API.java | 87 for (int i = 0; i < indent; i++) System.out.print(" "); 88 System.out.println("Package Name: " + pkg.name_); 95 System.out.print("Package doc block:"); 96 System.out.println("\"" + pkg.doc_ + "\""); 107 for (int i = 0; i < indent; i++) System.out.print(" "); 109 System.out.println("Interface name: " + c.name_); 111 System.out.println("Class Name: " + c.name_); 113 for (int i = 0; i < indent; i++) System.out.print(" "); 114 System.out.println("Extends: " + c.extends_); 117 for (int i = 0; i < indent; i++) System.out.print(" ") [all...] |
Options.java | 153 System.out.println("Command line arguments: "); 158 System.out.print(" " + options[i][j]); 162 System.out.println(); 386 System.out.println("JDiff version: " + JDiff.version); 387 System.exit(0); 391 System.exit(0); 404 System.err.println("JDiff version: " + JDiff.version); 405 System.err.println(""); 406 System.err.println("Valid JDiff arguments:"); 407 System.err.println("") [all...] |
JDiff.java | 30 System.out.println("JDiff: doclet started ..."); 42 long startTime = System.currentTimeMillis(); 63 System.out.println("Error: file '" + tempOldFileName + "' does not exist for the old API"); 78 System.out.println("Error: file '" + tempNewFileName + "' does not exist for the new API"); 84 System.out.print("JDiff: reading the old API in from file '" + tempOldFileName + "'..."); 90 System.out.print("JDiff: reading the new API in from file '" + tempNewFileName + "'..."); 112 System.out.println("JDiff: reading the comments in from file '" + commentsFileName + "'..."); 115 System.out.println(" (the comments file will be created)"); 128 System.out.println("JDiff: writing the comments out to file '" + commentsFileName + "'..."); 132 System.out.print("JDiff: finished (took " + (System.currentTimeMillis() - startTime)/1000 + "s") [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
WithFramework.java | 38 System.loadLibrary("android_runtime"); 44 System.arraycopy(args, 1, newArgs, 0, newArgs.length); 50 System.err.println("Usage: dalvikvm " + WithFramework.class.getName()
|
/frameworks/base/tests/CoreTests/android/core/ |
JniLibTest.java | 41 System.loadLibrary("jni_lib_test"); 52 + System.getProperty("java.library.path")); 54 + System.mapLibraryName("jni_lib_test") + "'");
|
/packages/apps/Settings/src/com/android/settings/ |
SoundSettings.java | 19 import static android.provider.Settings.System.SCREEN_OFF_TIMEOUT; 116 mDtmfTone.setChecked(Settings.System.getInt(resolver, 117 Settings.System.DTMF_TONE_WHEN_DIALING, 1) != 0); 120 mSoundEffects.setChecked(Settings.System.getInt(resolver, 121 Settings.System.SOUND_EFFECTS_ENABLED, 0) != 0); 124 mHapticFeedback.setChecked(Settings.System.getInt(resolver, 125 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0) != 0); 128 mLockSounds.setChecked(Settings.System.getInt(resolver, 129 Settings.System.LOCKSCREEN_SOUNDS_ENABLED, 1) != 0); 134 emergencyTonePreference.setValue(String.valueOf(Settings.System.getInt [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/util/ |
ASN1Dump.java | 49 buf.append(System.getProperty("line.separator")); 60 buf.append(System.getProperty("line.separator")); 99 buf.append(System.getProperty("line.separator")); 105 buf.append(System.getProperty("line.separator")); 122 buf.append(System.getProperty("line.separator")); 132 buf.append(System.getProperty("line.separator")); 153 buf.append(System.getProperty("line.separator")); 163 buf.append(System.getProperty("line.separator")); 184 buf.append(System.getProperty("line.separator")); 194 buf.append(System.getProperty("line.separator")) [all...] |
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
EventRecurrenceTest.java | 572 System.out.println("Error... got:"); 574 System.out.println("expected:"); 575 System.out.println("{"); 576 System.out.println(" freq=" + freq); 577 System.out.println(" until=" + until); 578 System.out.println(" count=" + count); 579 System.out.println(" interval=" + interval); 580 System.out.println(" wkst=" + wkst); 581 System.out.println(" bysecond=" + Arrays.toString(bysecond)); 582 System.out.println(" byminute=" + Arrays.toString(byminute)) [all...] |
/cts/tests/tests/jni/src/android/jni/cts/ |
JniCTest.java | 28 System.loadLibrary("jnitest");
|
JniCppTest.java | 28 System.loadLibrary("jnitest");
|
/dalvik/tests/003-omnibus-opcodes/src/ |
InternedString.java | 23 System.out.println("InternedString.run"); 34 System.gc(); 41 System.gc(); 53 System.gc();
|
/dalvik/tests/025-access-controller/src/ |
Main.java | 12 System.out.println("AccessControllerTest: got " + result);
|
/dalvik/tests/034-call-null/src/ |
Main.java | 7 System.out.println("mFoo is " + mFoo);
|