HomeSort by relevance Sort by last modified time
    Searched full:time (Results 426 - 450 of 34351) sorted by null

<<11121314151617181920>>

  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
MockClock.java 20 /** Current time. Only updated with advance(). */
38 public void setCurrentTimeMillis(long time) {
39 mCurrentTimeMillis = time;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
msgbuf.h 18 __kernel_time_t msg_stime; /* last msgsnd time */
22 __kernel_time_t msg_rtime; /* last msgrcv time */
26 __kernel_time_t msg_ctime; /* last change time */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
msgbuf.h 18 __kernel_time_t msg_stime; /* last msgsnd time */
22 __kernel_time_t msg_rtime; /* last msgrcv time */
26 __kernel_time_t msg_ctime; /* last change time */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
msgbuf.h 18 __kernel_time_t msg_stime; /* last msgsnd time */
22 __kernel_time_t msg_rtime; /* last msgrcv time */
26 __kernel_time_t msg_ctime; /* last change time */
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
animator1-expected-completion59.txt 3 android:interpolator : Defines the interpolator used to smooth the animation movement in time. [reference]
4 android:duration : Amount of time (in milliseconds) for the animation to run. [integer]
5 android:startOffset : Delay in milliseconds before the animation runs, once start time is reached. [integer]
  /sdk/emulator/qtools/
parse_options-inl.h 54 uint64_t time)
56 symbol_type *sym = trace->LookupFunction(pid, addr, time);
104 first_ignored_event->time = 0;
112 if (first_ignored_event->time == 0)
119 if (first_ignored_event->time == 0)
127 sym = GetSymbol(trace, event->pid, event->bb_addr, event->time);
129 if (first_ignored_event->time == 0)
134 sym = GetSymbol(trace, event->pid, event->bb_addr, event->time);
137 sym = GetSymbol(trace, event->pid, event->bb_addr, event->time);
139 if (first_ignored_event->time == 0
    [all...]
stack_dump.cpp 23 void push(int stackLevel, uint64_t time, CallStackBase *base);
24 void pop(int stackLevel, uint64_t time, CallStackBase *base);
43 void MyFrame::push(int stackLevel, uint64_t time, CallStackBase *base)
51 printf("%llu en thr %d %s %3d", time, base->getId(), type, stackLevel);
57 void MyFrame::pop(int stackLevel, uint64_t time, CallStackBase *base)
65 printf("%llu x thr %d %s %3d", time, base->getId(), type, stackLevel);
135 if (debugTime != 0 && event.time >= debugTime)
136 printf("debug time: %lld\n", debugTime);
141 // If the user requested a stack dump at a certain time,
142 // and we are at that time, then dump the stack and exit
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
FsDirectoryEntry.java 60 * Gets the last modification time of this entry.
62 * @return the last modification time of the entry as milliseconds
64 * getting the last modification time
65 * @throws IOException if an error occurs retrieving the time stamp
70 * Returns the time when this entry was created as ms since 1970.
72 * @return the creation time, or 0 if this feature is not supported
73 * @throws IOException on error retrieving the time stamp
78 * Returns the time when this entry was last accessed as ms since 1970.
80 * @return the last access time, or 0 if this feature is not supported
81 * @throws IOException on error retrieving the last access time
    [all...]
  /frameworks/base/core/java/android/text/format/
DateUtils.java 38 * elapsed time and date ranges, strings for days of the week and months, and AM/PM text etc.
80 * and pass in {@link Time#TIMEZONE_UTC Time.TIMEZONE_UTC} for the timeZone instead.
95 // Date and time format strings that are constant and don't need to be
245 * Returns a string describing the elapsed time since startTime.
246 * @param startTime some time in the past.
247 * @return a String object containing the elapsed time.
255 * Returns a string describing 'time' as a time relative to 'now'.
257 * Time spans in the past are formatted like "42 minutes ago"
593 Time time = new Time(); local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
vtzone.h 29 * <code>VTimeZone</code> instance from a time zone ID supported by <code>TimeZone</code>.
32 * from RFC2445 VTIMEZONE data stream, which allows you to calculate time
84 * Create a <code>VTimeZone</code> instance by the time zone ID.
85 * @param ID The time zone ID, such as America/New_York
86 * @return A <code>VTimeZone</code> object initialized by the time zone ID,
93 * Create a <code>VTimeZone</code> instance using a basic time zone.
94 * @param basicTZ The basic time zone instance
96 * @return A <code>VTimeZone</code> object initialized by the basic time zone.
148 * Writes RFC2445 VTIMEZONE data for this time zone
156 * Writes RFC2445 VTIMEZONE data for this time zone applicalb
    [all...]
  /external/icu4c/i18n/unicode/
vtzone.h 29 * <code>VTimeZone</code> instance from a time zone ID supported by <code>TimeZone</code>.
32 * from RFC2445 VTIMEZONE data stream, which allows you to calculate time
84 * Create a <code>VTimeZone</code> instance by the time zone ID.
85 * @param ID The time zone ID, such as America/New_York
86 * @return A <code>VTimeZone</code> object initialized by the time zone ID,
93 * Create a <code>VTimeZone</code> instance using a basic time zone.
94 * @param basicTZ The basic time zone instance
96 * @return A <code>VTimeZone</code> object initialized by the basic time zone.
148 * Writes RFC2445 VTIMEZONE data for this time zone
156 * Writes RFC2445 VTIMEZONE data for this time zone applicalb
    [all...]
  /external/chromium/net/ftp/
ftp_util.h 14 class Time;
35 // Converts a "ls -l" date listing to time. The listing comes in three
37 // of month. The third one is either a time (and then we guess the year based
38 // on |current_time|), or is a year (and then we don't know the time).
42 const base::Time& current_time,
43 base::Time* result);
  /external/chromium_org/chrome/test/chromedriver/server/
server.py 9 import time namespace
34 max_time = time.time() + 10
36 if time.time() > max_time:
39 time.sleep(0.1)
  /external/chromium_org/cloud_print/gcp20/prototype/
x_privet_token.cc 23 using base::Time;
31 const base::Time& gen_time)
37 if (Time::Now() > last_gen_time_ + TimeDelta::FromSeconds(kTimeSecretRefresh))
40 return GenerateXTokenWithTime(static_cast<uint64>(Time::Now().ToTimeT()));
56 return Time::FromTimeT(issue_time) - last_gen_time_ <
72 last_gen_time_ = base::Time::Now();
  /external/chromium_org/content/public/common/
geoposition.h 14 #include "base/time/time.h"
53 // Time of position measurement in milisecons since Epoch in UTC time. This is
54 // taken from the host computer's system clock (i.e. from Time::Now(), not the
56 base::Time timestamp;
  /external/chromium_org/content/test/plugin/
plugin_schedule_timer_test.h 9 #include "base/time/time.h"
33 int time; member in struct:NPAPIClient::ScheduleTimerTest::Event
55 // Time of initial event.
56 base::Time start_time_;
59 int FindUnreceivedEvent(int time, uint32 timer_id);
  /external/chromium_org/net/dns/
record_parsed.h 11 #include "base/time/time.h"
27 base::Time time_created);
34 base::Time time_created() const { return time_created_; }
50 base::Time time_created);
59 const base::Time time_created_;
  /external/chromium_org/net/quic/
quic_bandwidth.cc 8 #include "base/time/time.h"
48 (8 * base::Time::kMicrosecondsPerSecond)));
49 int64 bytes_per_second = (bytes * base::Time::kMicrosecondsPerSecond) /
78 base::Time::kMicrosecondsPerSecond;
83 base::Time::kMicrosecondsPerSecond;
  /external/chromium_org/remoting/host/
resizing_host_observer.h 13 #include "base/time/time.h"
37 // Provide a replacement for base::Time::Now so that this class can be
41 const base::Callback<base::Time(void)>& now_function);
49 base::Time previous_resize_time_;
50 base::Callback<base::Time(void)> now_function_;
  /external/chromium_org/rlz/lib/
financial_ping.h 33 // Returns whether the time is right to send a ping.
36 // If no_delay is false, this should ping if current time < last_ping time
37 // (case of time reset) or if one day has passed since last_ping and there
42 // Set the last ping time to be now. Writes to RlzValueStore.
45 // Clear the last ping time - should be called on uninstall.
  /external/chromium_org/third_party/WebKit/Source/wtf/
RandomNumberSeed.h 31 #include <time.h>
34 #include <sys/time.h>
52 timeval time;
53 gettimeofday(&time, 0);
54 srandom(static_cast<unsigned>(time.tv_usec * getpid()));
56 srand(static_cast<unsigned>(time(0)));
  /external/chromium_org/third_party/icu/source/common/
wintz.c 47 static const char STANDARD_TIME_REGKEY[] = " Standard Time";
54 * NT, but on XP has become "GMT Standard Time". We need to
59 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Time Zones",
62 "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\GMT"
68 * The time zone root subkeys (under HKLM) for different flavors of
73 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Time Zones\\",
76 "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\"
81 * but rather the flavor of the layout of the time zone information in
102 Standard Time". */
135 /* Remove " Standard Time" */
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
ratelimiter.cc 32 bool RateLimiter::CanUse(size_t desired, double time) {
33 return ((time > period_end_ && desired <= max_per_period_) ||
37 void RateLimiter::Use(size_t used, double time) {
38 if (time > period_end_) {
39 period_start_ = time;
40 period_end_ = time + period_length_;
  /external/tcpdump/
packetdat.awk 11 # <1st send time>
12 # <last send time>
13 # <1st ack time>
14 # <last ack time>
47 # for packets that were implicitly acked, make the ack time
48 # be the ack time of next explicitly acked packet.
  /frameworks/base/core/java/android/net/
NetworkPolicyManager.java 21 import static android.text.format.Time.MONTH_DAY;
30 import android.text.format.Time;
161 final Time now = new Time(policy.cycleTimezone);
165 final Time cycle = new Time(now);
169 if (Time.compare(cycle, now) >= 0) {
172 final Time lastMonth = new Time(now);
191 final Time now = new Time(policy.cycleTimezone)
    [all...]

Completed in 1568 milliseconds

<<11121314151617181920>>