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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/base/process/
process_info.h 13 class Time;
18 // Returns the time at which the process was launched. May be empty if an
20 static const Time CreationTime();
  /external/chromium_org/chrome/browser/
chrome_browser_field_trials_mobile.h 9 #include "base/time/time.h"
21 const base::Time& install_time,
  /external/chromium_org/chrome/browser/net/
network_time_tracker_unittest.cc 29 // A custom tick clock that will return an arbitrary time.
50 now_(base::Time::NowFromSystemTime()),
61 base::Time Now() const {
84 // Updates the notifier's time with the specified parameters and waits until
86 void UpdateNetworkTime(const base::Time& network_time,
101 // Ensures the network time tracker has a network time and that the
102 // disparity between the network time version of |ticks_now_| and the actual
104 // because the network time notifier uses |ticks_now_| for the tick clock).
106 base::Time network_time
    [all...]
  /external/chromium_org/chrome/common/importer/
imported_bookmark_entry.h 11 #include "base/time/time.h"
25 base::Time creation_time;
  /external/chromium_org/chrome/common/metrics/variations/
uniformity_field_trials.h 9 class Time;
14 // A collection of one-time-randomized and session-randomized field trials
17 void SetupUniformityFieldTrials(const base::Time install_date);
  /external/chromium_org/media/base/
clock.h 9 #include "base/time/time.h"
18 // A clock represents a single source of time to allow audio and video streams
19 // to synchronize with each other. Clock essentially tracks the media time with
20 // respect to some other source of time, whether that may be the monotonic
22 // calculate the current media time since the last time SetTime() was called.
24 // Clocks start off paused with a playback rate of 1.0f and a media time of 0.
29 // given a media time. This will be used primarily by video renderers. For now
42 // Starts the clock and returns the current media time, which will increas
    [all...]
  /external/chromium_org/net/base/
network_time_notifier.cc 19 const int64 kTicksResolutionMs = base::Time::kMinLowResolutionThresholdMs;
24 // Number of time measurements performed in a given network time calculation.
38 void NetworkTimeNotifier::UpdateNetworkTime(const base::Time& network_time,
43 DVLOG(1) << "Network time updating to "
45 // Update network time on every request to limit dependency on ticks lag.
48 // Maybe only update when the the new time either improves in accuracy or
52 // Calculate the delay since the network time was received.
55 // Estimate that the time was set midway through the latency time
    [all...]
  /external/chromium_org/net/quic/
quic_clock.cc 7 #include "base/time/time.h"
26 return QuicWallTime::FromUNIXSeconds(base::Time::Now().ToTimeT());
  /external/chromium_org/third_party/icu/source/i18n/
zrule.h 12 * \brief C API: Time zone rule classes
72 * Fills in "name" with the name of this time zone.
74 * @param name Receives the name of this time zone.
82 * Gets the standard time offset.
84 * @return The standard time offset from UTC in milliseconds.
91 * Gets the amount of daylight saving delta time from the standard time.
118 * standard time and the amount of daylight saving offset adjustment.
119 * @param name The time zone name.
120 * @param nameLength The length of the time zone name
    [all...]
  /external/chromium_org/third_party/libevent/test/
test-init.c 3 * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent
16 #include <sys/time.h>
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prtime.h 40 * NSPR date and time functions
65 * NSPR represents basic time as 64-bit signed integers relative
66 * to midnight (00:00:00), January 1, 1970 Greenwich Mean Time (GMT).
67 * (GMT is also known as Coordinated Universal Time, UTC.)
68 * The units of time are in microseconds. Negative times are allowed
80 * Time zone and daylight saving time corrections applied to GMT to
81 * obtain the local time of some geographic location
92 * Time broken down into human-readable components such as year, month,
93 * day, hour, minute, second, and microsecond. Time zone and dayligh
    [all...]
  /external/icu4c/i18n/
zrule.h 12 * \brief C API: Time zone rule classes
67 * Fills in "name" with the name of this time zone.
69 * @param name Receives the name of this time zone.
76 * Gets the standard time offset.
78 * @return The standard time offset from UTC in milliseconds.
84 * Gets the amount of daylight saving delta time from the standard time.
109 * standard time and the amount of daylight saving offset adjustment.
110 * @param name The time zone name.
111 * @param nameLength The length of the time zone name
    [all...]
  /external/iproute2/tc/
tc_core.h 16 int tc_core_time2big(unsigned time);
17 unsigned tc_core_time2tick(unsigned time);
19 unsigned tc_core_time2ktime(unsigned time);
  /frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
shared.rsh 9 int64_t time;
21 //g_results[idx].time = t;
22 //rsDebug("test time", (int)t);
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
shared.rsh 9 int64_t time;
21 //g_results[idx].time = t;
22 //rsDebug("test time", (int)t);
  /packages/apps/Calendar/tests/src/com/android/calendar/widget/
CalendarAppWidgetServiceTest.java 30 import android.text.format.Time;
80 // Set the "current time" to 2am tomorrow.
81 Time time = new Time(); local
82 time.setToNow();
83 time.monthDay += 1;
84 time.hour = 2;
85 time.minute = 0;
86 time.second = 0
149 Time time = new Time(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/
FormattedDateBuilder.java 22 import android.text.format.Time;
80 final Time time = new Time(); local
81 time.set(when);
83 final int thenYear = time.year;
84 final int thenMonth = time.month;
85 final int thenMonthDay = time.monthDay;
87 time.set(System.currentTimeMillis());
88 return (thenYear == time.year
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
reperf.py 2 import time namespace
12 t0 = time.clock()
18 t1 = time.clock()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
reperf.py 2 import time namespace
12 t0 = time.clock()
18 t1 = time.clock()
  /sdk/emulator/qtools/
read_addr.cpp 17 uint64_t time; local
21 if (trace->ReadAddr(&time, &addr, &flags))
26 printf("%lld 0x%08x %s\n", time, addr, op);
  /external/chromium_org/chrome/test/functional/
wifi_downloads.py 9 import time namespace
46 """Write or append a time into a csv file.
48 This method will create or append the amount of time a download took for a
52 <router name A>,<file size A>,time,time,time,time,time,time,time,tim
    [all...]
  /external/chromium_org/cc/animation/
keyframed_animation_curve.h 18 double Time() const;
24 Keyframe(double time, scoped_ptr<TimingFunction> timing_function);
37 double time,
47 FloatKeyframe(double time,
57 double time,
68 double time,
78 double time,
89 double time,
98 // It is required that the keyframes be sorted by time.
115 // Always sorted in order of increasing time. No two keyframes have th
    [all...]
  /external/chromium_org/chrome/browser/history/
visitsegment_database.h 31 // The segment tables use the time as a key for visit count and duration. This
32 // returns the appropriate time.
33 static base::Time SegmentTime(base::Time time);
55 bool IncreaseSegmentVisitCount(SegmentID segment_id, base::Time ts,
61 void QuerySegmentUsage(base::Time from_time,
65 // Delete all the segment usage data which is older than the provided time
67 bool DeleteSegmentData(base::Time older_than);
76 // Creates a new SegmentDurationID for the SegmentID and Time pair. Th
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Choice.java 47 * Time ::= CHOICE {
53 * notBefore Time,
54 * notAfter Time
58 * No application class to represent ASN.1 Time notation
60 * The Time notation is a choice of different time formats: UTC and Generalized.
65 * So a custom ASN.1 Time choice type should map its notation to Date object.
67 * class Time {
69 * // custom ASN.1 choice class: maps Time to is notation
80 * // pass it to custom time clas
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
rbtz.h 14 * \brief C++ API: Rule based customizable time zone
41 * @param id The time zone ID.
42 * @param initialRule The initial time zone rule.
88 * Adds the <code>TimeZoneRule</code> which represents time transitions.
96 * make this <code>RuleBasedTimeZone</code> ready to handle common time
106 * calcuation APIs. This method collects time zone rules specified
109 * time zone APIs such as getOffset(), getNextTransition() and others.
126 * to GMT to get local time in this time zone, taking daylight savings time int
    [all...]

Completed in 590 milliseconds

1 2 3 4 5 6 78 91011>>