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

1 2 3 45 6 7 8 91011>>

  /dalvik/vm/arch/sh/
CallSH4ABI.S 119 mov #1, r0 /* r6 is not available now. */
128 mov #2, r0 /* r7 is not available now. */
148 mov #3, r0 /* r6 and r7 are not available now. */
180 mov #3, r0 /* fr4-frX not available now. */
194 mov #15, r0 /* fr4-frX not available now. */
207 mov #63, r0 /* fr4-frX not available now. */
220 mov #0, r13 /* fr4-fr11 all not available now. */
232 mov #2, r0 /* frX not available now. */
242 mov #1, r0 /* frX not available now. */
252 mov #8, r0 /* frX not available now. *
    [all...]
  /dalvik/vm/jdwp/
JdwpMain.c 285 LOGE("JDWP thread no longer in VMWAIT (now %d); resetting\n",
324 /* if we had threads suspended, resume them now */
378 struct timespec now; local
379 clock_gettime(CLOCK_MONOTONIC, &now);
380 return now.tv_sec * 1000LL + now.tv_nsec / 1000000LL;
382 struct timeval now;
383 gettimeofday(&now, NULL);
384 return now.tv_sec * 1000LL + now.tv_usec / 1000LL
410 s8 now = dvmJdwpGetNowMsec(); local
    [all...]
  /external/jpeg/
change.log 10 jpegtran now copies comments by default; it has a -copy switch to enable
12 always suppressed comments and APPn blocks.) jpegtran now also preserves
19 There is an unused field "void * client_data" now in compress and decompress
22 JFIF version number information is now saved by the decoder and accepted by
48 The configure script now supports building libjpeg as a shared library
58 jmemmac.c now knows how to create temporary files following Mac System 7
61 djpeg's -map switch is now able to read raw-format PPM files reliably.
78 that is, GLOBAL, LOCAL, METHODDEF, EXTERN are now macros taking the
84 DCT coefficient quantization tables are now stored in normal array order
91 djpeg's trace capability now dumps DQT tables in natural order, not zigza
    [all...]
  /external/webkit/WebKitTools/android/flex-2.5.4a/
NEWS 22 - The default main() in libfl.a now repeatedly calls yylex() until
30 - The --prefix configuration option now works.
39 now contain only the digits 0-7.
41 - You can now use "--" on the flex command line to mark the
44 - You can now specify the filename '-' as a synonym for stdin.
53 - "%option nounput" now correctly omits the unput() routine
56 - "make clean" now removes config.log, config.cache, and the
69 now does not have a default for the first argument, to disambiguate
85 - An OS/2 Makefile and config.h for flex 2.5 is now available in
270 - flex now supports POSIX character class expressions. Thes
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
IdleConnectionHandler.java 147 long now = System.currentTimeMillis(); local
149 log.debug("Checking for expired connections, now: " + now);
158 if(times.timeExpires <= now) {
177 * @param now The current time in milliseconds
181 TimeValues(long now, long validDuration, TimeUnit validUnit) {
182 this.timeAdded = now;
184 this.timeExpires = now + validUnit.toMillis(validDuration);
  /external/chromium/base/
time_mac.cc 49 Time Time::Now() {
50 CFAbsoluteTime now = local
52 return Time(static_cast<int64>(now * kMicrosecondsPerSecond) +
58 // Just use Now() because Now() returns the system time.
59 return Now();
104 TimeTicks TimeTicks::Now() {
136 return Now();
  /external/dropbear/libtommath/etc/
mont.c 21 /* now find the R value */
25 /* now run through a bunch tests */
  /external/e2fsprogs/tests/f_badjour_indblks/
expect.1 4 *** ext3 journal has been deleted - filesystem is now ext2 only ***
29 *** journal has been re-created - filesystem is now ext3 again ***
  /external/libffi/testsuite/libffi.call/
float2.c 35 /* This is ifdef'd out for now. long double support under SunOS/gcc
44 /* This is ifdef'd out for now. long double support under SunOS/gcc
  /external/oprofile/daemon/
opd_interface.h 28 /* Code 9 is now considered an unknown escape code */
40 /* Code 12 is now considered an unknown escape code */
  /external/skia/include/core/
SkThread.h 46 /** If the mutex has not been release, release it now.
53 /** If the mutex has not been release, release it now.
  /external/skia/src/gl/
SkGLDevice_FBO.cpp 29 // now reset back to "normal" drawing target
54 // now we're ready for the viewport and projection matrix
  /external/webkit/WebCore/manual-tests/inspector/
debugger-scopes-inspection.html 13 this.timestamp = Date.now();
17 this.timestamp = Date.now();
  /external/webkit/WebCore/manual-tests/
textarea-reset-default-value.html 17 <li>Now click the reset button for the form.
18 <li>The text in the &lt;textarea&gt; should now match '123', the default text for the &lt;textarea&gt;.</li>
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
LatencyTracker.java 51 long now = SystemClock.uptimeMillis(); local
52 return (int) (now - mStartTime);
  /packages/apps/Contacts/tests/src/com/android/contacts/
RecentCallsListActivityTests.java 64 static private final long NOW = -1L;
145 * item. Only NOW is supported.
148 if (NOW == date) {
254 insertPrivate(NOW, RAND_DURATION);
255 insertUnknown(NOW, RAND_DURATION);
263 * @param date In millisec since epoch. Use NOW to use the current time.
272 if (NOW == date) {
290 * @param date In millisec since epoch. Use NOW to use the current time.
299 * @param date In millisec since epoch. Use NOW to use the current time.
308 * @param date In millisec since epoch. Use NOW to use the current time
    [all...]
  /external/dnsmasq/src/
dnsmasq.c 61 static int set_dns_listeners(time_t now, fd_set *set, int *maxfdp);
62 static void check_dns_listeners(fd_set *set, time_t now);
64 static void async_event(int pipe, time_t now);
75 time_t now; local
160 now = dnsmasq_time();
168 lease_init(now);
583 if ((t.tv_sec = set_dns_listeners(now, &rset, &maxfd)) != 0)
623 while (helper_buf_empty() && do_script_run(now));
632 while (do_script_run(now));
646 now = dnsmasq_time()
1252 time_t start, now; local
    [all...]
  /dalvik/tests/046-reflect/
expected.txt 42 string1 value is now 'a new string'
55 superInt value is now 20202
56 superInt value (from short) is now 30303
57 superInt value is now 40404
86 cantTouchThis is now 77
  /external/ipsec-tools/src/racoon/
throttle.c 99 time_t now; local
104 now = time(NULL);
111 if (te->penalty < now) {
146 remaining = te->penalty - now;
152 te->penalty = now + new;
  /frameworks/base/cmds/input/src/com/android/commands/input/
Input.java 119 long now = SystemClock.uptimeMillis(); local
122 KeyEvent down = new KeyEvent(now, now, KeyEvent.ACTION_DOWN, eventCode, 0);
123 KeyEvent up = new KeyEvent(now, now, KeyEvent.ACTION_UP, eventCode, 0);
  /frameworks/base/core/java/android/os/
ConditionVariable.java 124 long now = System.currentTimeMillis(); local
125 long end = now + timeout;
126 while (!mCondition && now < end) {
128 this.wait(end-now);
132 now = System.currentTimeMillis();
  /libcore/luni/src/main/java/java/lang/ref/
ReferenceQueue.java 110 long now = System.currentTimeMillis(); local
111 long wakeupTime = now + timeout + 1L;
112 while (head == null && now < wakeupTime) {
113 wait(wakeupTime - now);
114 now = System.currentTimeMillis();
  /packages/apps/Launcher2/src/com/android/launcher2/
SymmetricalLinearTween.java 82 long now = SystemClock.uptimeMillis(); local
83 long diff = now - mBase;
84 mBase = now + diff - mDuration;
93 long now = SystemClock.uptimeMillis();
94 long diff = now-base;
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
ShouldQueryStrategyTest.java 66 // Now we don't query for queries starting with "query"
74 // Now we don't query for "query"
81 // Now we do query for "queen"
109 // Now we don't query for the original
117 // Now we don't query for an extension of the original
  /external/grub/
NEWS 43 * Finally, we have a Bug Tracking System! Now the preferable way to
59 * Support for booting Linux is rewritten, so GRUB now supports
101 configuration file failed. Now try to use the preset menu first. And,
124 is given. This command can now also be used to protect specific menu
142 * The configure script now accepts `--disable-auto-linux-mem-opt', which
160 * Now GRUB is compliant with the Linux/i386 boot protocol version 2.02.
172 fixed. So now the image `nbgrub' can work fine even with a card such
186 * New command, "savedefault". Now you can save current entry number to
191 behavior of this command changed slightly, that is, this command now
215 * Likewise, now the command "setup" and the script "grub-install" als
    [all...]

Completed in 506 milliseconds

1 2 3 45 6 7 8 91011>>