HomeSort by relevance Sort by last modified time
    Searched refs:System (Results 426 - 450 of 1931) sorted by null

<<11121314151617181920>>

  /development/samples/Alarm/src/com/example/android/newalarm/
AlarmService.java 87 long waitTime = System.currentTimeMillis() + WAIT_TIME_SECONDS * MILLISECS_PER_SEC;
91 while (System.currentTimeMillis() < waitTime) {
98 mBinder.wait(waitTime - System.currentTimeMillis());
132 // Gets a handle to the system mNotification service.
188 System.currentTimeMillis() // the time stamp
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlarmService_Service.java 75 long endTime = System.currentTimeMillis() + 15*1000;
76 while (System.currentTimeMillis() < endTime) {
79 mBinder.wait(endTime - System.currentTimeMillis());
104 System.currentTimeMillis());
  /development/samples/SimpleJNI/src/com/example/android/simplejni/
SimpleJNI.java 39 System.loadLibrary("simplejni");
  /device/sample/frameworks/PlatformLibrary/java/com/example/android/platform_library/
PlatformLibrary.java 26 System.loadLibrary("platform_library_jni");
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
ImageFactory.java 50 System.err.println("Can't load image file: " + name);
51 System.exit(1);
53 System.err.println("Can't load image file: " + name);
54 System.exit(1);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CommonTokenStream.cs 34 using System.Collections.Generic;
36 using InvalidOperationException = System.InvalidOperationException;
37 using StringBuilder = System.Text.StringBuilder;
48 [System.Serializable]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
TestDriver.cs 37 using System;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonTokenStream.cs 35 using System.Collections.Generic;
37 using InvalidOperationException = System.InvalidOperationException;
38 using StringBuilder = System.Text.StringBuilder;
49 [System.Serializable]
ParserRuleReturnScope.cs 35 using CLSCompliant = System.CLSCompliantAttribute;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
AntlrRuntime_BaseTreeDebugView.cs 35 using System.Diagnostics;
TreeRuleReturnScope`1.cs 41 [System.Serializable]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSocketFunctionalTest.java 57 System.out.println("========================");
58 System.out.println("====== Running the test: " + getName());
59 System.out.println("========================");
100 System.out.println("======== Checking the work on cipher: "
109 System.out.println("======== " + (k & 1) + " " + ((k & 2) >> 1));
145 System.out.println("======= " + cipher_suites[i]);
200 System.out.println("Socket accepted: " + s);
210 System.out.println("Received message of length "
219 System.out.println("Server is closed: "
226 System.out.println("Server is closed:
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/
Version.java 61 System.out.println(getVersion());
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Version.java 58 System.out.println(getVersion());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
RC2Parameters.java 24 System.arraycopy(key, 0, this.key, 0, key.length);
  /external/chromium_org/tools/cr/cr/base/
linux_chromeos.py 22 return cr.Platform.System() == 'Linux'
  /external/javassist/sample/rmi/
Counter.java 29 System.err.println(
  /external/objenesis/main/src/org/objenesis/
ObjenesisException.java 29 private static final boolean jdk14 = (Double.parseDouble(System
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
OkHttp.java 64 long start = System.nanoTime();
68 long finish = System.nanoTime();
71 System.out.println(String.format("Transferred % 8d bytes in %4d ms",
75 System.out.println("Failed: " + e);
UrlConnection.java 61 long start = System.nanoTime();
70 long finish = System.nanoTime();
73 System.out.println(String.format("Transferred % 8d bytes in %4d ms",
77 System.out.println("Failed: " + e);
  /art/test/003-omnibus-opcodes/src/
MethodCall.java 23 System.out.println(" MethodCall ctor");
45 System.out.println("MethodCalls.manyArgs");
76 System.out.println(" MethodCallBase ctor");
  /art/test/045-reflect-array/src/
Main.java 21 System.out.println("ReflectArrayTest passed");
69 System.out.println("ReflectArrayTest.testSingleInt passed");
122 System.out.println("ReflectArrayTest.testSingleChar passed");
134 System.out.println("ReflectArrayTest.testSingleShort passed");
159 System.out.println("ReflectArrayTest.testSingleLong passed");
175 //System.out.println("array: " + array);
192 System.out.println("ReflectArrayTest.testSingle passed");
211 System.out.println("ReflectArrayTest.testMultiInt passed");
241 System.out.println(array3[0][1][2]);
242 //System.out.println("array3: " + array3)
    [all...]
  /cts/tests/tests/nativeopengl/standalone/src/com/android/gltest/
GLTestActivity.java 42 System.exit(0);
79 System.loadLibrary("stlport_shared");
80 System.loadLibrary("nativeopengltests");
  /cts/tools/vm-tests-tf/src/util/build/
DFHBuildStep.java 39 System.err.println("failed to create dir: "
51 System.err.println(e);
58 System.err.println("error in DFHBuildStep for inputfile "+inputFile.fileName+", outputfile "+outputFile.fileName);
JavacBuildStep.java 53 System.err.println("failed to create destination dir");
66 System.arraycopy(files, 0, commandLine, args, files.length);
69 return Main.compile(commandLine, new PrintWriter(System.err)) == 0;

Completed in 568 milliseconds

<<11121314151617181920>>