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

1 2 3 4 5 6 7 891011>>

  /external/kernel-headers/original/asm-x86/
highmem.h 13 * we now support up to 64 Gigabytes physical RAM.
37 * Right now we initialize only a single pte table. It can be extended
  /external/netcat/scripts/
webrelay 26 # no args: fire off new relayer process NOW. Will hang around for 10 minutes
33 # Fall here for setup; this can now be slower.
  /external/webkit/WebCore/css/
CSSBorderImageValue.cpp 43 // Now the rect, but it isn't really a rect, so we dump manually
52 // Now the keywords.
  /external/webkit/WebCore/page/
Navigator.idl 44 // ANDROID-only for now, upstreaming in progress.
49 // ANDROID-only for now.
  /packages/apps/Music/res/values-pl-keyshidden/
strings.xml 23 <string name="rename_playlist_same_prompt" msgid="7777541452078260899">"Otwórz klawiatur?, aby nada? now? nazw? playli?cie ?<xliff:g id="PLAYLIST">%s</xliff:g>?."</string>
24 <string name="rename_playlist_diff_prompt" msgid="900422624897120958">"Otwórz klawiatur?, aby nada? now? nazw? li?cie odtwarzania ?<xliff:g id="PLAYLIST">%1$s</xliff:g>?, lub wybierz przycisk Zapisz, aby nada? jej nazw? ?<xliff:g id="NAME">%2$s</xliff:g>?."</string>
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/resources/manager/
QualifierListTest.java 55 // now get the number of qualifier in the FolderConfiguration
63 // now compare
  /system/extras/tests/bionic/libc/common/
test_tm_zone.c 40 time_t now = time(NULL);
49 tm = localtime_r( &now, &tm0 );
  /external/chromium/net/base/
load_log.h 116 log->Add(Entry(base::TimeTicks::Now(), Event(event_type, PHASE_NONE)));
123 log->Add(Entry(base::TimeTicks::Now(), Event(event_type, PHASE_BEGIN)));
131 log->Add(Entry(base::TimeTicks::Now(), Event(event_type, PHASE_END)));
137 log->Add(Entry(base::TimeTicks::Now(), literal));
142 log->Add(Entry(base::TimeTicks::Now(), string));
147 log->Add(Entry(base::TimeTicks::Now(), error));
  /external/chromium/net/socket/
tcp_client_socket_pool.cc 71 start_time_ = base::TimeTicks::Now();
127 connect_start_time_ = base::TimeTicks::Now();
135 base::TimeTicks now = base::TimeTicks::Now(); local
136 base::TimeDelta total_duration = now - start_time_;
144 base::TimeDelta connect_duration = now - connect_start_time_;
  /external/dnsmasq/src/
dnsmasq.h 695 struct all_addr *addr, time_t now,
698 char *name, time_t now, unsigned short prot);
702 time_t now, unsigned long ttl, unsigned short flags);
706 void dump_cache(time_t now);
716 int extract_addresses(HEADER *header, size_t qlen, char *namebuff, time_t now);
718 struct in_addr local_addr, struct in_addr local_netmask, time_t now);
720 struct bogus_addr *addr, time_t now);
723 int check_for_local_domain(char *name, time_t now);
769 void reply_query(int fd, int family, time_t now);
770 void receive_query(struct listener *listen, time_t now);
    [all...]
  /external/elfutils/libelf/
gelf_xlate.c 59 /* Now define the conversion functions for the basic types. We use here
102 /* Now the tricky part: define the transformation functions for the
129 /* Now generate the 64-bit conversion functions. */
139 /* Now the externally visible table with the function pointers. */
177 /* For now we only handle the case where the memory representation is the
179 separate functions. For now reuse them. */
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.23-16.js 49 var now = "now";
50 addTestCase( now, String( TIME_1900 ) );
52 addTestCase( now, String( TZ_DIFF* msPerHour ) );
53 addTestCase( now, String( TIME_2000 ) );
58 if ( startTime == "now" ) {
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Date/
15.9.5.3.js 60 status = "typeof (now.toDateString())";
61 actual = typeof (now.toDateString());
72 status = "(Date.parse(now.toDateString()) - (midnight(now)).valueOf()) == 0";
73 actual = (Date.parse(now.toDateString()) - (midnight(now)).valueOf()) == 0;
15.9.5.6.js 60 status = "typeof (now.toLocaleDateString())";
61 actual = typeof (now.toLocaleDateString());
72 status = "(Date.parse(now.toLocaleDateString()) - (midnight(now)).valueOf()) == 0";
73 actual = (Date.parse(now.toLocaleDateString()) - (midnight(now)).valueOf()) == 0;
  /frameworks/base/core/java/android/util/
TimingLogger.java 120 long now = SystemClock.elapsedRealtime(); local
121 mSplits.add(now);
134 long now = first; local
136 now = mSplits.get(i);
140 Log.d(mTag, mLabel + ": " + (now - prev) + " ms, " + splitLabel);
142 Log.d(mTag, mLabel + ": end, " + (now - first) + " ms");
  /frameworks/base/docs/html/guide/tutorials/views/
hello-webview.jd 28 <li>Now open the HelloWebView.java file.
48 <li>Now run it.</li>
50 <p> You now have the world's simplest web page viewer.
56 handles the Intent, instead of our own WebView handling the action. So now we'll
70 <li>Now, in the <code>onCreate()</code> method, set an instance of the <code>HelloWebViewClient</code>
80 <p>If you try it again, new pages will now load in the HelloWebView Activity. However, you'll notice that
  /frameworks/base/services/java/com/android/server/
AlarmManagerService.java 137 // now that we have initied the driver schedule the alarm
461 final long now = System.currentTimeMillis(); local
464 pw.print(" Realtime wakeup (now=");
465 pw.print(sdf.format(new Date(now))); pw.println("):");
467 dumpAlarmList(pw, mRtcWakeupAlarms, " ", "RTC_WAKEUP", now);
470 dumpAlarmList(pw, mRtcAlarms, " ", "RTC", now);
474 final long now = SystemClock.elapsedRealtime(); local
476 pw.print(" Elapsed realtime wakeup (now=");
477 TimeUtils.formatDuration(now, pw); pw.println("):");
479 dumpAlarmList(pw, mElapsedRealtimeWakeupAlarms, " ", "ELAPSED_WAKEUP", now);
    [all...]
  /frameworks/base/services/sensorservice/
RotationVectorSensor.cpp 59 const double now = event.timestamp * NS2S; local
65 double dT = now - mMagTime;
71 mMagTime = now;
74 const double now = event.timestamp * NS2S; local
81 double dT = now - mAccTime;
87 mAccTime = now;
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
android.provider.Settings.System.html 197 <b>Now deprecated</b>.<br>
206 <b>Now deprecated</b>.<br>
215 <b>Now deprecated</b>.<br>
224 <b>Now deprecated</b>.<br>
233 <b>Now deprecated</b>.<br>
242 <b>Now deprecated</b>.<br>
251 <b>Now deprecated</b>.<br>
260 <b>Now deprecated</b>.<br>
269 <b>Now deprecated</b>.<br>
278 <b>Now deprecated</b>.<br
    [all...]
  /external/webkit/WebCore/loader/
FTPDirectoryDocument.cpp 221 struct tm now; local
223 getLocalTime(&now_t, &now);
226 now.tm_year += 1900;
228 if (fileTime.tm_year == now.tm_year) {
229 if (fileTime.tm_mon == now.tm_mon) {
230 if (fileTime.tm_mday == now.tm_mday)
232 if (fileTime.tm_mday == now.tm_mday - 1)
236 if (now.tm_mday == 1 && (now.tm_mon == fileTime.tm_mon + 1 || (now.tm_mon == 0 && fileTime.tm_mon == 11)) &
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/4/changes/
android.telephony.gsm.SmsManager.html 76 <p><b>Now deprecated</b>.<br>
91 Change from non-final to final.<br> <b>Now deprecated</b>.<br>
101 Change from non-final to final.<br> <b>Now deprecated</b>.<br>
111 Change from non-final to final.<br> <b>Now deprecated</b>.<br>
121 Change from non-final to final.<br> <b>Now deprecated</b>.<br>
131 Change from non-final to final.<br> <b>Now deprecated</b>.<br>
149 <b>Now deprecated</b>.<br>
158 <b>Now deprecated</b>.<br>
167 <b>Now deprecated</b>.<br>
176 <b>Now deprecated</b>.<br
    [all...]
  /external/qemu/
CHANGES.TXT 72 The minor number will now be stuck to 0 since each official emulator
79 8 MB. Now, the minimum supported size is 9 MB, and the emulator will complain
128 command "event codes EV_KEY" will now return KEY_XXX code names (in addition
169 - Skins can now provide a button for the "SEARCH" scan-code, simply using
218 - The emulator now requires that you specify a virtual device name when
242 the '-system' option has changed, and '-image <file>' should now be
245 * you should now use '-sysdir <dir>' instead of '-system <dir>' to specify
249 * you should now use '-system <file>' to indicate which system.img partition
263 - Hardware emulation is now limited to the corresponding Android Virtual
264 Device's configuration. This means it is now possible to not emulat
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
android.provider.Contacts.OrganizationColumns.html 76 <p><b>Now deprecated</b>.<br>
91 <b>Now deprecated</b>.<br>
100 <b>Now deprecated</b>.<br>
109 <b>Now deprecated</b>.<br>
118 <b>Now deprecated</b>.<br>
127 <b>Now deprecated</b>.<br>
136 <b>Now deprecated</b>.<br>
145 <b>Now deprecated</b>.<br>
154 <b>Now deprecated</b>.<br>
163 <b>Now deprecated</b>.<br
    [all...]
  /external/chromium/net/third_party/nss/ssl/
sslsnce.c 308 LockSidCacheLock(sidCacheLock *lock, PRUint32 now)
313 if (!now)
314 now = ssl_Time();
315 lock->timeStamp = now;
317 return now;
332 LockSet(cacheDesc *cache, PRUint32 set, PRUint32 now)
337 return LockSidCacheLock(lock, now);
357 PRUint32 now; local
374 now = LockSidCacheLock(cache->certCacheLock, 0);
375 if (now) {
686 PRUint32 now; local
751 PRUint32 now = 0; local
834 PRUint32 now; local
1482 PRUint32 now; local
1587 PRUint32 now = 0; local
1759 PRUint32 now = 0; local
1791 PRUint32 now = 0; local
1842 PRUint32 now = 0; local
    [all...]
  /external/qemu/hw/
dma.c 39 int now[2]; member in struct:dma_regs
138 r->now[ADDR] = r->base[ADDR] << d->dshift;
139 r->now[COUNT] = 0;
165 val = (r->base[COUNT] << d->dshift) - r->now[COUNT];
167 val = r->now[ADDR] + r->now[COUNT] * dir;
349 r->now[COUNT], (r->base[COUNT] + 1) << ncont);
350 r->now[COUNT] = n;
404 target_phys_addr_t addr = ((r->pageh & 0x7f) << 24) | (r->page << 16) | r->now[ADDR];
426 target_phys_addr_t addr = ((r->pageh & 0x7f) << 24) | (r->page << 16) | r->now[ADDR]
    [all...]

Completed in 445 milliseconds

1 2 3 4 5 6 7 891011>>