HomeSort by relevance Sort by last modified time
    Searched full:now (Results 1 - 25 of 6977) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/
AUTHORS 1 For Now:
  /dalvik/tests/082-inline-execute/
expected.txt 4 Now is the time[0] = "N"
5 Now is the time[1] = "o"
6 Now is the time[10] = " "
7 Now is the time[last] = "e"
  /dalvik/vm/interp/
README.txt 3 The "mterp" directory now holds the interpreter implementation.
  /external/dnsmasq/contrib/Suse/
README 1 This packaging is now unmaintained in the dnsmasq source: dnsmasq is
2 included in Suse proper, and up-to-date packages are now available
  /system/extras/tests/icachetest/
icache_main.c 11 struct timeval now, tm; local
19 gettimeofday(&now, 0);
22 t = (tm.tv_sec*1000000LL+tm.tv_usec) - (now.tv_sec*1000000LL+now.tv_usec);
26 gettimeofday(&now, 0);
29 t = (tm.tv_sec*1000000LL+tm.tv_usec) - (now.tv_sec*1000000LL+now.tv_usec);
  /external/bluetooth/glib/build/
README 0 Now this directory is private to GLib. Only the files relevant to GLib
  /external/webkit/WebCore/manual-tests/gtk/
caret-browsing.html 3 <p>Manual test for Caret Browsing. Resize your window until the first paragraph fills at least two lines of text . Enable caret browsing mode (usually by pressing theF7 key). Press down. Now you should be on the second line of the first paragraph. Press up. Now you should be on the first line again. Now press Ctrl+Down.</p>
4 <p>You should be on the first line of the second paragraph now. Press Ctrl+Down again.</p>
5 <p>You should be on the first line of the third paragraph now. Press Ctrl+Up, and you should be back on the second paragraph.</p>
  /external/chromium/net/base/
host_cache_unittest.cc 32 base::TimeTicks now; local
41 cache.Set(Key("foobar.com"), OK, AddressList(), now);
47 now += base::TimeDelta::FromSeconds(5);
51 cache.Set(Key("foobar2.com"), OK, AddressList(), now);
57 now += base::TimeDelta::FromSeconds(4);
60 EXPECT_EQ(entry1, cache.Lookup(Key("foobar.com"), now));
61 EXPECT_EQ(entry2, cache.Lookup(Key("foobar2.com"), now));
63 // Advance to t=10; entry1 is now expired.
64 now += base::TimeDelta::FromSeconds(1);
66 EXPECT_TRUE(cache.Lookup(Key("foobar.com"), now) == NULL)
92 base::TimeTicks now; local
116 base::TimeTicks now; local
177 base::TimeTicks now = base::TimeTicks() + base::TimeDelta::FromSeconds(10); local
182 cache.Set(Key(hostname), OK, AddressList(), now); local
197 cache.Set(Key(hostname), ERR_NAME_NOT_RESOLVED, AddressList(), now); local
241 base::TimeTicks now = base::TimeTicks() + kSuccessEntryTTL; local
277 base::TimeTicks now; local
312 base::TimeTicks now; local
326 base::TimeTicks now; local
    [all...]
ssl_config_service_mac.h 18 explicit SSLConfigServiceMac(base::TimeTicks now); // Used for testing.
35 GetSSLConfigAt(config, base::TimeTicks::Now());
39 void GetSSLConfigAt(SSLConfig* config, base::TimeTicks now);
44 void UpdateConfig(base::TimeTicks now);
  /system/extras/tests/bionic/libc/other/
bench_locks.c 7 static double now(void) function
23 t0 = now();
28 t1 = now() - t0;
  /dalvik/tests/030-bad-finalizer/
expected.txt 5 Finalizer sleeping forever now.
  /external/dbus/test/data/auth/
cancel.auth-script 11 ## now start over and see if it works
  /external/e2fsprogs/tests/progs/test_data/
expect.icount 63 Count is now 1
67 Count is now 2
71 Count is now 3
75 Count is now 4
79 Count is now 3
83 Count is now 2
87 Count is now 1
91 Count is now 0
96 Count is now 2
100 Count is now
    [all...]
  /external/kernel-headers/original/linux/
config.h 4 * autoconf.h is now included via -imacros on the commandline
  /external/webkit/WebCore/manual-tests/memory/
string-growth.html 8 // x should now be a 2^23 character string, which is 16M in size.
12 // now append to it repeatedly in a way that prevents buffer sharing
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 44 private Date now = new Date(); field in class:TimestampTest
64 new Timestamp(now, null);
70 Timestamp timestamp = new Timestamp(now, cpath);
71 assertEquals("not expected value", now, timestamp.getTimestamp());
85 Timestamp one = new Timestamp(now, cpath);
86 Timestamp two = new Timestamp(now, cpath);
106 assertSame(new Timestamp(now, cpath).getSignerCertPath(), cpath);
116 Timestamp t = new Timestamp(now, cpath);
117 assertEquals(now, t.getTimestamp());
118 assertNotSame(now, t.getTimestamp())
    [all...]
  /external/qemu/hw/
goldfish_timer.c 31 int64_t now; member in struct:timer_state
42 qemu_put_be64(f, s->now); /* in case the kernel is in the middle of a timer read */
45 int64_t now = qemu_get_clock(vm_clock); local
47 qemu_put_be64(f, alarm-now);
58 s->now = qemu_get_be64(f);
61 int64_t now = qemu_get_clock(vm_clock); local
63 int64_t alarm = now + diff;
65 if (alarm <= now) {
80 s->now = muldiv64(qemu_get_clock(vm_clock), 1000000000, get_ticks_per_sec());
81 return s->now;
93 int64_t alarm, now; local
134 int64_t now; member in struct:rtc_state
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
SyncQueueTest.java 67 long now = SystemClock.elapsedRealtime() + 200; local
69 assertEquals(op6, mSyncQueue.nextReadyToRun(now).first);
72 assertEquals(op1, mSyncQueue.nextReadyToRun(now).first);
75 assertEquals(op4, mSyncQueue.nextReadyToRun(now).first);
78 assertEquals(op5, mSyncQueue.nextReadyToRun(now).first);
81 assertEquals(op2, mSyncQueue.nextReadyToRun(now).first);
84 assertEquals(op3, mSyncQueue.nextReadyToRun(now).first);
110 long now = SystemClock.elapsedRealtime() + 200; local
112 assertEquals(op6, mSyncQueue.nextReadyToRun(now).first);
115 assertEquals(op1, mSyncQueue.nextReadyToRun(now).first)
    [all...]
  /frameworks/base/opengl/tests/finish/
finish.cpp 77 long long now, t;
90 now = systemTime();
93 printf("memcpy() time = %llu us\n", (t-now)/1000);
107 now = systemTime();
111 printf("glFinish() time = %llu us\n", (t-now)/1000);
121 now = systemTime();
125 printf("glFinish() time = %llu us\n", (t-now)/1000);
135 now = systemTime();
140 printf("glFinish() time = %llu us\n", (t-now)/1000);
150 now = systemTime()
    [all...]
  /development/tools/idegen/src/
Stopwatch.java 25 long now = System.currentTimeMillis(); local
26 Log.info(label + ": " + (now - last) + "ms");
27 last = now;
  /external/srec/portable/src/
ptimestamp.c 36 struct _timeb now;
38 _ftime(&now);
39 timestamp->secs = now.time;
40 timestamp->msecs = now.millitm;
42 struct timespec now;
43 clock_gettime(CLOCK_REALTIME, &now);
44 timestamp->secs = now.tv_sec;
45 timestamp->msecs = now.tv_nsec / MSECOND2NSECOND;
  /frameworks/base/core/tests/coretests/src/android/os/
MessageQueueTest.java 65 long now = SystemClock.uptimeMillis() + 200;
68 mHandler.sendMessageAtTime(mHandler.obtainMessage(2), now + 1);
69 mHandler.sendMessageAtTime(mHandler.obtainMessage(3), now + 2);
70 mHandler.sendMessageAtTime(mHandler.obtainMessage(4), now + 2);
71 mHandler.sendMessageAtTime(mHandler.obtainMessage(0), now + 0);
72 mHandler.sendMessageAtTime(mHandler.obtainMessage(1), now + 0);
84 long now = SystemClock.uptimeMillis() + 200;
87 mHandler.sendMessageAtTime(mHandler.obtainMessage(3), now);
  /external/e2fsprogs/lib/uuid/
configure.in 2 dnl Not used now, for the future when uuid is separated out into its
  /external/libpcap/
acconfig.h 3 * have different implementation details so for now we
  /external/webkit/WebCore/manual-tests/
onunload-form-submit-crash.html 4 <p>Still with me? Now close the window and see if Safari crashes.</p>

Completed in 1051 milliseconds

1 2 3 4 5 6 7 8 91011>>