HomeSort by relevance Sort by last modified time
    Searched refs:SECONDS (Results 51 - 75 of 153) sorted by null

1 23 4 5 6 7

  /cts/tests/tests/opengl/src/android/opengl/cts/
OpenGLES20ActivityTwo.java 43 result = mLatch.await(10L, TimeUnit.SECONDS);
OpenGLES20NativeActivityTwo.java 43 result = mLatch.await(10L, TimeUnit.SECONDS);
OpenGLES20ActivityOne.java 64 result = mLatch.await(10L, TimeUnit.SECONDS);
OpenGLES20NativeActivityOne.java 51 result = mLatch.await(10L, TimeUnit.SECONDS);
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GlPlanetsActivity.java 51 return mSem.tryAcquire(timeoutInSecs, TimeUnit.SECONDS);
  /external/blktrace/btt/
trace.c 70 (int)SECONDS(iop->t.time),
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
InactivityTimer.java 56 TimeUnit.SECONDS);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceVersionDetector.java 55 setTagLatch.await(5, TimeUnit.SECONDS);
  /libcore/luni/src/main/java/javax/xml/datatype/
Duration.java 35 * minutes, and seconds) plus a sign (+/-) field.</p>
39 * and the seconds field has a non-negative decimal or null.
163 boolean secondSet = isSet(DatatypeConstants.SECONDS);
288 * Obtains the value of the SECONDS field as an integer value,
292 * that this method works on the SECONDS field.
294 * @return seconds in the integer value. The fraction of seconds
299 return getFieldValueAsInt(DatatypeConstants.SECONDS);
305 * <p>If the seconds field carries more digits than millisecond order,
342 * <p>If the seconds field carries more digits than millisecond order
909 BigDecimal seconds = (BigDecimal) getField(DatatypeConstants.SECONDS); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
NativeCryptoTest.java 852 TestSSLHandshakeCallbacks clientCallback = client.get(TIMEOUT_SECONDS, TimeUnit.SECONDS);
853 TestSSLHandshakeCallbacks serverCallback = server.get(TIMEOUT_SECONDS, TimeUnit.SECONDS)
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTest.java 28 import static java.util.concurrent.TimeUnit.SECONDS;
236 assertEquals(6, transformedFuture.get(1000, TimeUnit.SECONDS).intValue());
243 1000, TimeUnit.SECONDS).intValue());
441 performAsyncFunctionTransformedFutureDelgationTest(25, TimeUnit.SECONDS);
    [all...]
AbstractScheduledServiceTest.java 283 return new Schedule(0, TimeUnit.SECONDS);
336 return new Schedule(0, TimeUnit.SECONDS);
395 service.stop().get(100, TimeUnit.SECONDS);
  /external/openssl/apps/
s_time.c 108 #undef SECONDS
109 #define SECONDS 30
130 static int maxTime = SECONDS;
153 maxTime = SECONDS;
175 -time arg - max number of seconds to collect data, default %d\n\
196 printf( umsg,SECONDS );
392 printf( "Collecting connection statistics for %d seconds\n", maxTime );
454 printf( "%d connections in %ld real seconds, %ld bytes read per connection\n",nConn,(long)time(NULL)-finishtime+maxTime,bytes_read/nConn);
544 printf( "%d connections in %ld real seconds, %ld bytes read per connection\n",nConn,(long)time(NULL)-finishtime+maxTime,bytes_read/nConn);
  /cts/tests/tests/graphics2/src/android/graphics2/cts/
TextureViewCameraActivity.java 110 return mLatch.await(timeoutInSecs, TimeUnit.SECONDS);
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
IncomingFileTransfer.java 193 inputStream = streamNegotiatorTask.get(15, TimeUnit.SECONDS);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.4.2.js 82 var SECONDS = 15;
196 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", ResultArray[SECONDS], DateCase.getSeconds() );
15.9.3.1-1.js 24 ECMA Section: 15.9.3.1 new Date (year, month, date, hours, minutes, seconds, ms)
36 6. Call ToNumber(seconds)
59 var TITLE = "new Date( year, month, date, hours, minutes, seconds, ms )";
77 var SECONDS = 15;
258 testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", ResultArray[SECONDS], DateCase.getSeconds() );
  /packages/apps/Mms/src/com/android/mms/util/
BackgroundLoaderManager.java 73 poolSize, poolSize, 5, TimeUnit.SECONDS, queue,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DictionaryPool.java 34 * As a deadlock-detecting device, if waiting for more than TIMEOUT = 3 seconds, we
41 // How many seconds we wait for a dictionary to become available. Past this delay, we give up in
109 return poll(TIMEOUT, TimeUnit.SECONDS);
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerInternalMapTest.java 24 import static java.util.concurrent.TimeUnit.SECONDS;
278 TimeUnit unit = SECONDS;
286 TimeUnit unit = SECONDS;
518 makeMap(createMapMaker().concurrencyLevel(1).expireAfterAccess(99999, SECONDS));
593 makeMap(createMapMaker().concurrencyLevel(1).expireAfterAccess(99999, SECONDS));
637 makeMap(createMapMaker().concurrencyLevel(1).expireAfterAccess(99999, SECONDS));
676 makeMap(createMapMaker().concurrencyLevel(1).expireAfterAccess(99999, SECONDS));
708 makeMap(createMapMaker().concurrencyLevel(1).expireAfterAccess(99999, SECONDS));
903 .expireAfterWrite(99999, SECONDS)
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
MoreExecutors.java 153 * <p>This method waits 120 seconds before continuing with JVM termination,
166 return getExitingExecutorService(executor, 120, TimeUnit.SECONDS);
174 * <p>This method waits 120 seconds before continuing with JVM termination,
187 return getExitingScheduledExecutorService(executor, 120, TimeUnit.SECONDS);
  /frameworks/base/tests/TtsTests/src/com/android/speech/tts/
TextToSpeechTests.java 172 awaitCountDown(latch, 5, TimeUnit.SECONDS);
186 awaitCountDown(latch, 5, TimeUnit.SECONDS);
  /libcore/luni/src/test/java/tests/api/org/apache/harmony/kernel/dalvik/
ThreadsTest.java 178 barrier.await(60, TimeUnit.SECONDS);
272 barrier.await(60, TimeUnit.SECONDS);
  /external/blktrace/
blkparse_fmt.c 91 sec = abs_start_time.tv_sec + SECONDS(timestamp);
235 fprintf(ofp, strcat(format, "d"), SECONDS(t->time));
307 (int) SECONDS(t->time), (unsigned long) NANO_SECONDS(t->time),
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoManager.java 68 // Sets the Time Unit to seconds
115 // The time unit for "keep alive" is in seconds
116 KEEP_ALIVE_TIME_UNIT = TimeUnit.SECONDS;

Completed in 1149 milliseconds

1 23 4 5 6 7