/external/chromium_org/third_party/icu/source/i18n/unicode/ |
dtrule.h | 14 * \brief C++ API: Rule for specifying date and time in an year 23 * <code>DateTimeRule</code> is a class representing a time in a year by 25 * time in the day. 48 * Time rule type constants. 52 WALL_TIME = 0, /**< The local wall clock time */ 53 STANDARD_TIME, /**< The local standard time */ 54 UTC_TIME /**< The UTC time */ 59 * the time rule. The date rule type for an instance created by 65 * @param timeType The time type, <code>WALL_TIME</code> or <code>STANDARD_TIME</code> 74 * number and the time rule. The date rule type for an instance create [all...] |
/external/chromium_org/v8/src/ |
date.h | 22 // The largest time that can be passed to OS date-time library functions. 27 // The largest time that can be stored in JSDate. 31 // Conservative upper bound on time that can be stored in JSDate 117 // Computes a time equivalent to the given time according 122 // We solve this by mapping the time to a year with same leap-year-ness 156 // We increment the stamp each time when the timezone information changes. 175 // The implementation relies on the fact that no time zones have 182 // Size of the Daylight Savings Time cache [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
dtrule.h | 14 * \brief C++ API: Rule for specifying date and time in an year 23 * <code>DateTimeRule</code> is a class representing a time in a year by 25 * time in the day. 48 * Time rule type constants. 52 WALL_TIME = 0, /**< The local wall clock time */ 53 STANDARD_TIME, /**< The local standard time */ 54 UTC_TIME /**< The UTC time */ 59 * the time rule. The date rule type for an instance created by 65 * @param timeType The time type, <code>WALL_TIME</code> or <code>STANDARD_TIME</code> 74 * number and the time rule. The date rule type for an instance create [all...] |
gregocal.h | 75 * // get the supported ids for GMT-08:00 (Pacific Standard Time) 84 * cout << "Current Time" << endl; 86 * // create a Pacific Standard Time time zone 89 * // set up rules for daylight savings time 93 * // create a GregorianCalendar with the Pacific Daylight time zone 94 * // and the current date and time 117 * cout << "Current Time, with hour reset to 3" << endl; 162 * Constructs a default GregorianCalendar using the current time in the default time [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
EditListBox.java | 37 * This box contains an explicit timeline map. Each entry defines part of the track time-line: by mapping part of 38 * the media time-line, or by indicating 'empty' time, or by defining a 'dwell', where a single time-point in the 50 * <li>Media-Time = -1</li> 53 * <li>Media-Time = 0 seconds</li> 121 * @param mediaTime starting time 167 * The media time is an integer containing the starting time 168 * within the media of a specific edit segment(in media time [all...] |
/external/srec/portable/src/ |
ptimer.c | 77 * Starts the timer. This sets the reference time from which all new elapsed 78 * time are computed. This does not reset the elapsed time to 0. This is 106 * Returns the timer elapsed time. If the Timer is in the stopped state, 109 * elapsed time since the last time PTimerStart() was called. 131 * Resets the elapsed time to 0 and resets the reference time of the Timer. 190 * Starts the timer. This sets the reference time from which all new elapsed 191 * time are computed. This does not reset the elapsed time to 0. This i [all...] |
/external/timezonepicker-support/ |
zone.tab | 110 CA +4734-05243 America/St_Johns Newfoundland Time, including SE Labrador 111 CA +4439-06336 America/Halifax Atlantic Time - Nova Scotia (most places), PEI 112 CA +4612-05957 America/Glace_Bay Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971 113 CA +4606-06447 America/Moncton Atlantic Time - New Brunswick 114 CA +5320-06025 America/Goose_Bay Atlantic Time - Labrador - most locations 115 CA +5125-05707 America/Blanc-Sablon Atlantic Standard Time - Quebec - Lower North Shore 116 CA +4531-07334 America/Montreal Eastern Time - Quebec - most locations 117 CA +4339-07923 America/Toronto Eastern Time - Ontario - most locations 118 CA +4901-08816 America/Nipigon Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973 119 CA +4823-08915 America/Thunder_Bay Eastern Time - Thunder Bay, Ontari [all...] |
/docs/source.android.com/src/devices/ |
audio_warmup.jd | 27 <p>Audio warmup is the time for the audio amplifier circuit in your device to 29 to audio warmup time are power management and any "de-pop" logic to stabilize 33 <p>This document describes how to measure audio warmup time and possible ways to decrease 34 warmup time.</p> 42 repeatedly until the time between two <code>write()</code>s is the amount expected. 75 until the execution time of <code>write()</code> matches what is expected. 83 you will see a lower warmup time than the mean value. 92 However, input warmup time can be estimated by observing 93 the time required for <a href="http://developer.android.com/reference/android/media/AudioRecord.html#startRecording()">startRecording()</a> 98 <h2 id="reducing">Reducing Warmup Time</h2 [all...] |
/external/chromium_org/base/ |
sys_info_unittest.cc | 9 #include "base/time/time.h" 77 base::SysInfo::SetChromeOSVersionInfoForTest(kLsbRelease, base::Time()); 93 base::SysInfo::SetChromeOSVersionInfoForTest(kLsbRelease, base::Time()); 107 base::SysInfo::SetChromeOSVersionInfoForTest(kLsbRelease, base::Time()); 118 // Use a fake time that can be safely displayed as a string. 119 const base::Time lsb_release_time(base::Time::FromDoubleT(12345.6)); 121 base::Time parsed_lsb_release_time = base::SysInfo::GetLsbReleaseTime(); 127 base::SysInfo::SetChromeOSVersionInfoForTest("", base::Time()); [all...] |
/external/chromium_org/chrome/browser/extensions/activity_log/ |
activity_log_policy.cc | 13 #include "base/time/clock.h" 14 #include "base/time/time.h" 42 base::Time ActivityLogPolicy::Now() const { 46 return base::Time::Now(); 139 base::Time ActivityLogPolicy::Util::AddDays(const base::Time& base_date, 141 // To allow for time zone changes, add an additional partial day then round 148 void ActivityLogPolicy::Util::ComputeDatabaseTimeBounds(const base::Time& now, 152 base::Time morning_midnight = now.LocalMidnight() [all...] |
/external/chromium_org/chrome/browser/history/ |
history_types_unittest.cc | 41 URLResult result1(url1, base::Time::Now()); 42 URLResult result2(url1, base::Time::Now()); 43 URLResult result3(url2, base::Time::Now()); 119 const base::Time& threshold(AutocompleteAgeThreshold()); 124 EXPECT_FALSE(RowQualifiesAsSignificant(url_row, base::Time())); 127 EXPECT_TRUE(RowQualifiesAsSignificant(url_row, base::Time())); 130 EXPECT_FALSE(RowQualifiesAsSignificant(url_row, base::Time())); 133 EXPECT_TRUE(RowQualifiesAsSignificant(url_row, base::Time())); 136 EXPECT_FALSE(RowQualifiesAsSignificant(url_row, base::Time())); 137 url_row.set_last_visit(base::Time::Now() - base::TimeDelta::FromDays(1)) [all...] |
/external/chromium_org/chrome/browser/net/ |
evicted_domain_cookie_counter.h | 15 #include "base/time/time.h" 47 EvictedCookie(base::Time eviction_time_in, 48 base::Time expiry_time_in, 54 bool is_expired(const base::Time& current_time) const { 58 base::Time eviction_time; 59 base::Time expiry_time; 69 const base::Time& reinstatement_time) = 0; 71 // Getter of time is placed here to enable mocks. 72 virtual base::Time CurrentTime() const = 0 [all...] |
/external/chromium_org/chrome/browser/password_manager/ |
password_store_x.h | 11 #include "base/time/time.h" 51 // and before |delete_end|. You may use a null Time value to do an unbounded 54 base::Time delete_begin, 55 base::Time delete_end, 58 base::Time delete_begin, 59 base::Time delete_end, 88 RemoveLoginsCreatedBetweenImpl(base::Time delete_begin, 89 base::Time delete_end) OVERRIDE; 91 RemoveLoginsSyncedBetweenImpl(base::Time delete_begin [all...] |
/external/chromium_org/media/cast/ |
cast_defines.h | 16 #include "base/time/time.h" 95 // Network Time Protocol (NTP), which is in seconds relative to 0h UTC on 99 // Magic fractional unit. Used to convert time (in microseconds) to/from 151 DCHECK_GE(ntp_time_us, 0) << "Time must NOT be negative"; 153 ntp_time_us / base::Time::kMicrosecondsPerSecond; 154 // NTP time will overflow in the year 2036. Also, make sure unit tests don't 162 (ntp_time_us % base::Time::kMicrosecondsPerSecond) * 166 inline void ConvertTimeTicksToNtp(const base::TimeTicks& time, 170 time - base::TimeTicks::UnixEpoch() [all...] |
/external/chromium_org/net/quic/ |
quic_time_wait_list_manager.h | 5 // Handles packets for connection_ids in time wait state by discarding the 38 // or nothing to the client which sent a packet with the connection_id in time 39 // wait state. After the connection_id expires its time wait period, a new 53 // Adds the given connection_id to time wait state for kTimeWaitPeriod. 63 // Returns true if the connection_id is in time wait state, false otherwise. 68 // Called when a packet is received for a connection_id that is in time wait 71 // exponential back off. DCHECKs for the connection_id to be in time wait 84 // Used to delete connection_id entries that have outlived their time wait 88 // Given a ConnectionId that exists in the time wait list, returns the 122 // Register the alarm to wake up at appropriate time [all...] |
/external/chromium_org/ui/events/test/ |
mock_motion_event.cc | 25 TimeTicks time, 30 time(time), 39 TimeTicks time, 46 time(time), 57 TimeTicks time, 66 time(time), 81 time(other.time) [all...] |
/external/guava/guava/src/com/google/common/util/concurrent/ |
TimeLimiter.java | 25 * Produces proxies that impose a time limit on method 49 * calls to the {@code target} object, enforcing the specified time limit on 50 * each call. This time-limited delegation is also performed for calls to 56 * other hand, the time limit is reached, the proxy will attempt to abort the 70 * @param timeoutDuration with timeoutUnit, the maximum length of time that 72 * @param timeoutUnit with timeoutDuration, the maximum length of time that 74 * @return a time-limiting proxy 82 * Invokes a specified Callable, timing out after the specified time limit. 85 * other hand, the time limit is reached, we attempt to abort the call to the 92 * @param timeoutDuration with timeoutUnit, the maximum length of time to wai [all...] |
/frameworks/base/core/java/android/view/ |
Choreographer.java | 42 * <li>To post an animation to be processed on a regular time basis synchronized with 53 * {@link View#onDraw} will be called at the appropriate time.</li> 76 // The default amount of time in ms between animation frames. 106 // Enable/disable using the frame time instead of returning now. 196 * The amount of time, in milliseconds, between each frame of the animation. 198 * This is a requested time that the animation will attempt to honor, but the actual delay 207 * @return the requested time between frames, in milliseconds 215 * The amount of time, in milliseconds, between each frame of the animation. 217 * This is a requested time that the animation will attempt to honor, but the actual delay 226 * @param frameDelay the requested time between frames, in millisecond [all...] |
/frameworks/native/services/surfaceflinger/ |
FrameTracker.h | 36 // Some of the time values tracked may be set either as a specific timestamp 37 // or a fence. When a non-NULL fence is set for a given time value, the 38 // signal time of that fence is used instead of the timestamp. 43 // frame time history. 50 // setDesiredPresentTime sets the time at which the current frame 55 // setFrameReadyTime sets the time at which the current frame became ready 58 // the time at which those writes completed. 61 // setFrameReadyFence sets the fence that is used to get the time at which 69 // setActualPresentFence sets the fence that is used to get the time 91 // dumpStats dump appends the current frame display time history to the result string [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_strptime.py | 4 import time namespace 27 """Create time tuple based on current time.""" 28 self.time_tuple = time.localtime() 37 strftime_output = time.strftime(directive, self.time_tuple).lower() 63 strftime_output = time.strftime("%p", self.time_tuple).lower() 73 timezone = time.strftime("%Z", self.time_tuple).lower() 88 strftime_output = time.strftime("%c", magic_date) 89 self.assertEqual(time.strftime(self.LT_ins.LC_date_time, magic_date), 91 strftime_output = time.strftime("%x", magic_date [all...] |
test_zipfile64.py | 11 'test requires loads of disk-space bytes and a long time to run' 21 import time namespace 30 # How much time in seconds can pass before we print a 'Still working' message. 54 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL 58 if next_time <= time.time(): 59 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL 71 if next_time <= time.time() [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_strptime.py | 4 import time namespace 27 """Create time tuple based on current time.""" 28 self.time_tuple = time.localtime() 37 strftime_output = time.strftime(directive, self.time_tuple).lower() 63 strftime_output = time.strftime("%p", self.time_tuple).lower() 73 timezone = time.strftime("%Z", self.time_tuple).lower() 88 strftime_output = time.strftime("%c", magic_date) 89 self.assertEqual(time.strftime(self.LT_ins.LC_date_time, magic_date), 91 strftime_output = time.strftime("%x", magic_date [all...] |
test_zipfile64.py | 11 'test requires loads of disk-space bytes and a long time to run' 21 import time namespace 30 # How much time in seconds can pass before we print a 'Still working' message. 54 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL 58 if next_time <= time.time(): 59 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL 71 if next_time <= time.time() [all...] |
/system/core/logcat/ |
event.logtags | 52 # contacts aggregation: time and number of contacts. 54 2747 contacts_aggregation (aggregation time|2|3), (count|1|1) 60 3000 boot_progress_start (time|2|3) 62 3020 boot_progress_preload_start (time|2|3) 64 3030 boot_progress_preload_end (time|2|3) 67 20003 dvm_lock_sample (process|3),(main|1|5),(thread|3),(time|1|3),(file|3),(line|1|5),(ownerfile|3),(ownerline|1|5),(sample_percent|1|6) 96 # time: cpu time millis (not wall time), including lock acquisition 99 52000 db_sample (db|3),(sql|3),(time|1|3),(blocking_package|3),(sample_percent|1|6 [all...] |
/external/chromium_org/components/autofill/core/browser/webdata/ |
autofill_table_unittest.cc | 14 #include "base/time/time.h" 28 using base::Time; 86 Time::FromTimeT(date_created), 87 Time::FromTimeT(date_last_used)); 144 Time t1 = Time::Now(); 152 base::Time now = base::Time::Now(); 222 EXPECT_TRUE(table_->RemoveFormElementsAddedBetween(t1, Time(), &changes)) [all...] |