HomeSort by relevance Sort by last modified time
    Searched refs:System (Results 251 - 275 of 2091) sorted by null

<<11121314151617181920>>

  /external/emma/core/java13/com/vladium/util/exit/
ExitHookManager.java 76 System.out.println ("exception caught while adding a shutdown hook:");
77 e.printStackTrace (System.out);
101 System.out.println ("exception caught while removing a shutdown hook:");
102 e.printStackTrace (System.out);
  /external/proguard/src/proguard/preverify/
CodeSubroutineInliner.java 80 System.err.println("Unexpected error while inlining subroutines:");
81 System.err.println(" Class = ["+clazz.getName()+"]");
82 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
83 System.err.println(" Exception = ["+ex.getClass().getName()+"] ("+ex.getMessage()+")");
107 System.out.println("SubroutineInliner: processing ["+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)+"]");
128 System.out.println(" Skipping original subroutine instruction "+instruction.toString(offset));
151 System.out.println(" Appending label after code at ["+offset+"]");
193 System.out.println(" Inlining subroutine ["+subroutineStart+" -> "+subroutineEnd+"] at ["+subroutineInvocationOffset+"]");
220 System.out.println(" Appending label after inlined subroutine at ["+subroutineEnd+"]");
262 System.out.println(" Replacing subroutine return at ["+offset+"] by a label")
    [all...]
  /ndk/samples/hello-neon/src/com/example/neon/
HelloNeon.java 35 System.loadLibrary("helloneon");
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/
HierarchyViewer.java 31 System.setProperty("apple.laf.useScreenMenuBar", "true");
32 System.setProperty("apple.awt.brushMetalLook", "true");
33 System.setProperty("com.apple.mrj.application.apple.menu.about.name", "HierarchyViewer");
35 final String os = System.getProperty("os.name");
  /cts/tests/tests/os/src/android/os/cts/
ConditionVariableTest.java 83 long time = System.currentTimeMillis();
85 assertTrue(System.currentTimeMillis() - time < TOLERANCE_MS);
89 time = System.currentTimeMillis();
91 assertTrue(System.currentTimeMillis() - time >= BLOCK_TIME);
94 time = System.currentTimeMillis();
109 long timeDelta = System.currentTimeMillis() - time;
113 time = System.currentTimeMillis();
  /dalvik/libcore/crypto/src/main/java/javax/crypto/spec/
PBEKeySpec.java 49 System.arraycopy(password, 0, this.password, 0, password.length);
94 System.arraycopy(password, 0, this.password, 0, password.length);
97 System.arraycopy(salt, 0, this.salt, 0, salt.length);
133 System.arraycopy(password, 0, this.password, 0, password.length);
136 System.arraycopy(salt, 0, this.salt, 0, salt.length);
161 System.arraycopy(password, 0, result, 0, password.length);
176 System.arraycopy(salt, 0, result, 0, salt.length);
  /dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ErrorManagerTest.java 38 private final PrintStream err = System.err;
39 private final PrintStream out = System.out;
46 System.setErr(new PrintStream(errSubstituteStream));
50 System.setErr(err);
51 System.setOut(out);
66 System.setErr(st);
67 System.setOut(st);
  /frameworks/base/core/tests/coretests/src/android/os/
TraceTest.java 40 long start = System.currentTimeMillis();
48 long end = System.currentTimeMillis();
60 long start = System.currentTimeMillis();
62 long end = System.currentTimeMillis();
73 long start = System.currentTimeMillis();
77 long end = System.currentTimeMillis();
208 System.loadLibrary("trace_test");
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
SerializationStressTest1.java 384 System.out.println("Obj = " + objToSave);
395 System.out.println("Error when obj = " + objToSave);
417 System.out.println("Obj = " + objToSave);
427 System.out.println("Error when obj = " + objToSave);
450 System.out.println("Obj = " + objToSave);
461 System.out.println("Error when obj = " + objToSave);
484 System.out.println("Obj = " + objToSave);
495 System.out.println("Error when obj = " + objToSave);
518 System.out.println("Obj = " + objToSave);
529 System.out.println("Error when obj = " + objToSave)
    [all...]
  /cts/tools/vm-tests/src/util/build/
JarBuildStep.java 48 System.err.println("io exception:"+e.getMessage());
55 System.err.println("failed to create output dir: "
62 Main main = new Main(System.out, System.err, "jar");
73 System.err.println("exception in JarBuildStep while calling jar with args:" +
  /dalvik/libcore/luni/src/test/java/com/google/coretests/
CoreTestRunnable.java 35 System.getProperty("java.vm.name"));
142 " -classpath " + System.getProperty("java.class.path") +
143 " -Djava.home=" + System.getProperty("java.home") +
144 " -Duser.home=" + System.getProperty("user.home") +
145 " -Djava.io.tmpdir=" + System.getProperty("java.io.tmpdir") +
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
DESedeEngine.java 57 System.arraycopy(keyMaster, 0, key1, 0, key1.length);
58 System.arraycopy(keyMaster, 8, key2, 0, key2.length);
59 System.arraycopy(keyMaster, 16, key3, 0, key3.length);
67 System.arraycopy(keyMaster, 0, key1, 0, key1.length);
68 System.arraycopy(keyMaster, 8, key2, 0, key2.length);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/modes/
OFBBlockCipher.java 74 System.arraycopy(iv, 0, IV, IV.length - iv.length, iv.length);
82 System.arraycopy(iv, 0, IV, 0, IV.length);
163 System.arraycopy(ofbV, blockSize, ofbV, 0, ofbV.length - blockSize);
164 System.arraycopy(ofbOutV, 0, ofbV, ofbV.length - blockSize, blockSize);
175 System.arraycopy(IV, 0, ofbV, 0, IV.length);
CTSBlockCipher.java 95 System.arraycopy(buf, blockSize, buf, 0, blockSize);
146 System.arraycopy(in, inOff, buf, bufOff, gapLen);
149 System.arraycopy(buf, blockSize, buf, 0, blockSize);
158 System.arraycopy(in, inOff, buf, bufOff, blockSize);
160 System.arraycopy(buf, blockSize, buf, 0, blockSize);
167 System.arraycopy(in, inOff, buf, bufOff, len);
231 System.arraycopy(block, 0, out, outOff + blockSize, len);
253 System.arraycopy(buf, blockSize, block, 0, len);
256 System.arraycopy(lastBlock, 0, out, outOff + blockSize, len);
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/helpers/
XMLReaderFactoryTest.java 57 System.setProperty("org.xml.sax.driver", "foo.bar.XMLReader");
66 System.setProperty("org.xml.sax.driver",
76 System.setProperty("org.xml.sax.driver",
86 System.setProperty("org.xml.sax.driver",
98 System.setProperty("org.xml.sax.driver",
  /dalvik/tests/003-omnibus-opcodes/src/
IntMath.java 9 System.out.println("IntMath.shiftTest1");
38 System.out.println("IntMath.shiftTest2");
56 System.out.println("IntMath.unsignedShiftTest");
75 System.out.println("IntMath.convTest");
102 System.out.println("IntMath.charSubTest");
118 System.out.println("IntMath.intOperTest");
139 System.out.println("IntMath.intOperCheck");
164 System.out.println("IntMath.lit16Test");
194 System.out.println("IntMath.lit8Test");
211 // System.out.println(" " + i + ": " + results[i])
    [all...]
  /external/proguard/src/proguard/optimize/
ParameterShrinker.java 94 System.out.println("ParameterShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
95 System.out.println(" Old parameter size = " + oldParameterSize);
96 System.out.println(" New parameter size = " + newParameterSize);
97 System.out.println(" Max locals = " + maxLocals);
118 System.out.println(" Deleting parameter #"+parameterIndex);
  /packages/apps/Settings/src/com/android/settings/wifi/
AdvancedSettings.java 31 import android.provider.Settings.System;
48 System.WIFI_STATIC_IP, System.WIFI_STATIC_GATEWAY, System.WIFI_STATIC_NETMASK,
49 System.WIFI_STATIC_DNS1, System.WIFI_STATIC_DNS2
152 int value = Settings.System.getInt(getContentResolver(),
153 Settings.System.WIFI_SLEEP_POLICY,Settings. System.WIFI_SLEEP_POLICY_DEFAULT);
187 Settings.System.putInt(getContentResolver()
    [all...]
  /sdk/layoutopt/app/src/com/android/layoutopt/cli/
Main.java 62 System.out.println(analysis.getName());
64 System.out.print(String.format("\t%d:%d ", issue.getStartLine(), issue.getEndLine()));
65 System.out.println(issue.getDescription());
73 System.exit(0);
80 System.out.println("usage: layoutopt <directories/files to analyze>");
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 86 db.execSQL("CREATE TABLE system (" +
91 db.execSQL("CREATE INDEX systemIndex1 ON system (name);");
186 db.execSQL("DELETE FROM system WHERE name='network_preference'");
187 db.execSQL("INSERT INTO system ('name', 'value') values ('network_preference', '" +
267 db.execSQL("DELETE FROM system WHERE name='"
268 + Settings.System.MODE_RINGER_STREAMS_AFFECTED + "'");
272 db.execSQL("INSERT INTO system ('name', 'value') values ('"
273 + Settings.System.MODE_RINGER_STREAMS_AFFECTED + "', '"
308 db.execSQL("DELETE FROM system WHERE name='"
309 + Settings.System.WINDOW_ANIMATION_SCALE + "'")
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/getfield/
Test_getfield.java 90 System.out.print("dvmvfe:");
101 System.out.println("res:"+res);
107 System.out.print("dvmvfe:");
126 System.out.print("dvmvfe:");
142 System.out.print("dvmvfe:");
158 System.out.print("dvmvfe:");
191 System.out.print("dvmvfe:");
209 System.out.print("dvmvfe:");
227 System.out.print("dvmvfe:");
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
ObjectVector.java 97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
212 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
219 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at);
260 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i);
285 System.arraycopy(m_map, i + 1, m_map, i, m_firstFree);
414 System.arraycopy(m_map, 0, newMap, 0, m_firstFree);
  /external/proguard/src/proguard/classfile/editor/
ClassEditor.java 61 System.arraycopy(interfaces, 0,
69 System.out.println(targetClass.getName()+": adding interface ["+targetClass.getClassName(interfaceConstantIndex)+"]");
87 System.arraycopy(interfaces, interfaceIndex+1,
129 System.arraycopy(fields, 0,
137 System.out.println(targetClass.getName()+": adding field ["+field.getName(targetClass)+" "+field.getDescriptor(targetClass)+"]");
157 System.arraycopy(fields, fieldIndex+1,
199 System.arraycopy(methods, 0,
207 System.out.println(targetClass.getName()+": adding method ["+method.getName(targetClass)+method.getDescriptor(targetClass)+"]");
227 System.arraycopy(methods, methodIndex+1,
  /cts/tools/dasm/src/dasm/
Main.java 61 System.err.println("Command line option " + opt
63 System.exit(-1);
93 System.err.println("DASM Error: " + e.getMessage());
96 System.err.println("Exception <" + e.getClass().getName() + ">"
105 System.err.println("Found " + dAsm.errorCount() + " errors "
143 System.err.println("Cannot create directory " + dest_dir);
158 System.err.println("Exception <" + e.getClass().getName() + ">"
173 System.out.println("Generated: " + out_file.getPath());
193 System.exit(-1);
199 System.exit(0)
    [all...]
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/
Runtime.java 52 import dalvik.system.VMDebug;
53 import dalvik.system.VMStack;
60 * @see System
101 String pathList = System.getProperty("java.library.path", ".");
102 String pathSep = System.getProperty("path.separator", ":");
103 String fileSep = System.getProperty("file.separator", "/");
110 System.out.println("Runtime paths:");
118 System.out.println(" " + mLibPaths[i]);
305 SecurityManager smgr = System.getSecurityManager();
393 SecurityManager smgr = System.getSecurityManager()
    [all...]

Completed in 696 milliseconds

<<11121314151617181920>>