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

<<51525354555657585960>>

  /dalvik/dx/src/com/android/dx/command/annotool/
AnnotationLister.java 208 System.out.println(packageName.replace('/','.'));
228 System.out.println(classname);
  /dalvik/dx/src/junit/runner/
BaseTestRunner.java 150 System.out.println("Missing Test class name");
216 String home= System.getProperty("user.home");
TestCaseClassLoader.java 13 * of these packages is delegated to the system class
44 this(System.getProperty("java.class.path"));
57 String separator= System.getProperty("path.separator");
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/
DOMTest.java 142 System.getProperty("org.w3c.domts.httpbase",
185 String httpBase = System.getProperty("org.w3c.domts.httpbase",
  /dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/util/
Resources.java 123 * Returns an array of names of locales that are available in the system,
137 * Returns an array of names of timezones that are available in the system,
208 long start = System.currentTimeMillis();
249 + (System.currentTimeMillis() - start) + "ms.");
  /dalvik/libcore/luni/src/main/java/java/net/
NetworkInterface.java 33 * system or to identify the local interface of a joined multicast group.
79 System.arraycopy(addresses, 0, newAddresses, 0, addresses.length);
108 * Returns the index for the network interface. Unless the system supports
171 SecurityManager security = System.getSecurityManager();
309 * Gets a list of all network interfaces available on the local system or
  /dalvik/libcore/luni/src/main/java/java/util/
PriorityQueue.java 332 System.arraycopy(c.elements, 0, elements, 0, c.size());
408 System.arraycopy(elements, 0, newElements, 0, elements.length);
  /dalvik/libcore/luni/src/test/java/junit/runner/
BaseTestRunner.java 150 System.out.println("Missing Test class name");
216 String home= System.getProperty("user.home");
TestCaseClassLoader.java 13 * of these packages is delegated to the system class
44 this(System.getProperty("java.class.path"));
57 String separator= System.getProperty("path.separator");
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
PipedOutputStreamTest.java 43 System.out.println("Exception setting up reader: "
72 System.out.println("Exception reading ("
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/ref/
ReferenceQueueTest.java 112 System.gc();
113 System.runFinalization();
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
AccessibleObject.java 118 SecurityManager smgr = System.getSecurityManager();
171 SecurityManager smgr = System.getSecurityManager();
  /dalvik/libcore/luni-kernel/src/test/java/tests/api/org/apache/harmony/kernel/dalvik/
ThreadsTest.java 207 long start = System.currentTimeMillis();
215 long end = System.currentTimeMillis();
  /dalvik/libcore/math/src/main/java/java/math/
BitLevel.java 161 // System.arraycopy(source, 0, result, intCount, result.length
294 System.arraycopy(source, intCount, result, 0, resultLen);
330 System.arraycopy(val.digits, 0, resDigits, 0, val.numberLength);
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
IOUtil.java 88 System.arraycopy(chars.array(), position, buf, offset,
103 System.arraycopy(chars.array(), position, buf, offset,
  /dalvik/libcore/prefs/src/main/java/java/util/prefs/
Preferences.java 41 * system preferences shared by all users and the other for user preferences
46 * notational conventions as directories in a file system. The root node's
76 * <!DOCTYPE preferences SYSTEM "http://java.sun.com/dtd/preferences.dtd">
78 * This system URI is not really accessed by network, it is only a
86 * system property {@code java.util.prefs.PreferencesFactory} to detemine which
135 //factory used to get user/system prefs root
149 return System.getProperty("java.util.prefs.PreferencesFactory"); //$NON-NLS-1$
157 // return System.getProperty("os.name"); //$NON-NLS-1$
278 * &lt;!DOCTYPE preferences SYSTEM &quot;http://java.sun.com/dtd/preferences.dtd&quot;&gt;
305 * &lt;!DOCTYPE preferences SYSTEM &quot;http://java.sun.com/dtd/preferences.dtd&quot;&gt
    [all...]
  /dalvik/libcore/security/src/main/java/java/security/
UnresolvedPermission.java 87 System.arraycopy(certs, 0, targetCerts, 0, certs.length);
273 System.arraycopy(targetCerts, 0, certs, 0, certs.length);
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
DerOutputStream.java 131 System.arraycopy(len, 0, newLen, 0, val.length);
135 System.arraycopy(val, 0, newVal, 0, val.length);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/encodings/
ISO9796d1Encoding.java 154 System.arraycopy(in, inOff + inLen - (t - i),
159 System.arraycopy(in, inOff, block, block.length - (i + z), z);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JCEIESCipher.java 218 System.out.println("eeek!");
344 System.arraycopy(buf, 0, output, outputOffset, buf.length);
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
KeyRepTest.java 218 System.err.println(getName()
243 System.err.println(getName()
  /dalvik/libcore/security/src/test/java/tests/security/cert/
PolicyQualifierInfoTest.java 242 System.arraycopy(encoding, 12, pqEncoding, 0, pqEncoding.length);
268 System.arraycopy(encoding, 12, pqEncoding, 0, pqEncoding.length);
  /dalvik/libcore/text/src/main/java/java/text/
ChoiceFormat.java 136 System.arraycopy(limits, 0, choiceLimits, 0, limitCount);
157 System.arraycopy(limits, 0, newLimits, 0, limitCount);
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSessionImpl.java 329 SecurityManager sm = System.getSecurityManager();
347 && lastAccessedTime + context.getSessionTimeout() > System.currentTimeMillis()) {
  /dalvik/libcore/xml/src/main/java/javax/xml/parsers/
SAXParser.java 53 * on a system property setting or uses the platform default
56 * The system property that controls which Factory implementation
295 System.out.println("Escaped URI = " + escapedURI);
324 System.out.println("Escaped URI = " + escapedURI);

Completed in 813 milliseconds

<<51525354555657585960>>