/external/chromium/net/base/ |
transport_security_state.h | 16 #include "base/time.h" 62 base::Time created; // when this host entry was first created 63 base::Time expiry; // the absolute time (UTC) when this record expires 85 // Deletes all records created since a given time. 86 void DeleteSince(const base::Time& time);
|
transport_security_state_unittest.cc | 146 const base::Time current_time(base::Time::Now()); 147 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); 159 const base::Time current_time(base::Time::Now()); 160 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); 172 const base::Time current_time(base::Time::Now()); 173 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000); 185 const base::Time current_time(base::Time::Now()) [all...] |
x509_cert_types.h | 22 class Time; 135 // A list of ASN.1 date/time formats that ParseCertificateDate() supports, 145 // Attempts to parse |raw_date|, an ASN.1 date/time string encoded as 146 // |format|, and writes the result into |*time|. If an invalid date is 147 // specified, or if parsing fails, returns false, and |*time| will not be 151 base::Time* time);
|
/external/clang/www/ |
performance-2009-03-02.html | 22 <p>This page shows the compile time performance of Clang on two 64 for Sketch this also includes the time to build/copy various 69 <li><tt>+ cpp</tt>: Add preprocessing of source files (this time is 71 <li><tt>+ parse</tt>: Add parsing of source files (this time is 78 <li><tt>+ assembler</tt>: Add assembler time to generate .o files.</li> 79 <li><tt>+ linker</tt>: Add linker time.</li> 89 a fairly accurate measure of only the time to perform semantic
|
/external/collada/include/1.4/dom/ |
domAnimation_clip.h | 43 * The start attribute is the time in seconds of the beginning of the clip. 44 * This time is the same as that used in the key-frame data and is used to 46 * time does not specify when the clip will be played. If the time falls 52 * The end attribute is the time in seconds of the end of the clip. This 53 * is used in the same way as the start time. If end is not specified, the 54 * value is taken to be the end time of the longest animation. Optional
|
/external/e2fsprogs/lib/uuid/ |
uuid_time.c | 2 * uuid_time.c --- Interpret the time field from a uuid. This program 50 #include <sys/time.h> 52 #include <time.h> 148 printf(" (time based)\n"); 163 printf("Warning: not a time-based UUID, so UUID time " 166 printf("UUID time is: (%ld, %ld): %s\n", tv.tv_sec, tv.tv_usec,
|
/external/guava/src/com/google/common/util/concurrent/ |
SimpleTimeLimiter.java | 39 * {@link ExecutorService}. If the time limit expires for a given method call, 54 * may be counterproductive! If the thread pool fills up, any time callers 55 * spend waiting for a thread may count toward their time limit, and in 56 * this case the call may even time out before the target method is ever 74 * the thread pool fills up, any time callers spend waiting for a thread may 75 * count toward their time limit, and in this case the call may even time out
|
/external/libgsm/man/ |
gsm_option.3 | 47 The verbosity level can be changed at any time during encoding or decoding. 72 This option can be set any time during encoding or decoding. 95 This option can be set any time during encoding 127 compile-time switch, WAV49. 128 Both option and compile time switch are new to the library 150 This option can be queried and set at any time. 170 The frame index can be queried and set at any time.
|
/external/libpng/ |
mkinstalldirs | 73 # mkdir -p a/c at the same time, both will detect that a is missing, 157 # eval: (add-hook 'write-file-hooks 'time-stamp) 158 # time-stamp-start: "scriptversion=" 159 # time-stamp-format: "%:y-%02m-%02d.%02H" 160 # time-stamp-time-zone: "UTC" 161 # time-stamp-end: "; # UTC"
|
/external/srtp/crypto/rng/ |
prng.c | 98 /* find out the time */ 99 t = (uint32_t)time(NULL); 104 /* exor time into state */ 131 /* exor time into buffer */ 146 /* exor time into state */ 160 /* now update the state one more time */ 162 /* exor time into buffer */
|
/external/webkit/Source/WebCore/manual-tests/ |
bugzilla-48077.html | 45 // Do a time consuming job so we can make HTML parser run over time limit. 48 // time consuming job; 63 <!-- Time consuming job to make HTML parser run over chunk time limit --> 71 <!-- Time consuming job to make HTML parser run over chunk time limit -->
|
/external/webkit/Source/WebKit/android/plugins/ |
PluginDebugAndroid.cpp | 73 anp_logPlugin("%p EVENT::KEY[%d] time=%d action=%s code=%d vcode=%d unichar=%d repeat=%d mods=%x", 85 anp_logPlugin("%p EVENT::MOUSE[%d] time=%d action=%s [%d %d]", npp, 96 anp_logPlugin("%p EVENT::TOUCH[%d] time=%d action=%s [%d %d]", 107 anp_logPlugin("%p EVENT::DRAW bitmap time=%d format=%d clip=[%d,%d,%d,%d]", 112 anp_logPlugin("%p EVENT::DRAW openGL time=%d dimensions=[%d,%d]", 122 anp_logPlugin("%p EVENT::LIFECYCLE time=%d action=%s", npp, elapsedTime, 130 anp_logPlugin("%p EVENT::CUSTOM time=%d", npp, elapsedTime);
|
/libcore/luni/src/main/java/java/net/ |
AddressCache.java | 32 // Default time-to-live for positive cache entries. 600 seconds (10 minutes). 34 // Default time-to-live for negative cache entries. 10 seconds. 47 * The absolute expiry time in nanoseconds. Nanoseconds from System.nanoTime is ideal 85 * certain length of time. 93 * certain length of time. 101 * certain length of time. 104 // Calculate the expiry time.
|
/libcore/luni/src/test/java/libcore/java/util/ |
OldTimeZoneTest.java | 89 assertEquals("Pacific Standard Time", tz.getDisplayName()); 94 assertEquals("Pacific Standard Time", tz.getDisplayName(new Locale("US"))); 104 assertEquals("Pacific Daylight Time", tz.getDisplayName(true, 1)); 105 assertEquals("Pacific Standard Time", tz.getDisplayName(false, 1)); 112 assertEquals("Pacific Daylight Time", tz.getDisplayName(true, 1, Locale.US)); 114 assertEquals("Pacific Standard Time", tz.getDisplayName(false, 1, Locale.UK)); 117 //RI fails on following line. RI always returns short time zone name as "PST"
|
/libcore/luni/src/test/java/tests/api/org/apache/harmony/kernel/dalvik/ |
ThreadsTest.java | 123 * the indicated value, noting the duration of time actually parked. 137 /** recorded start time */ 140 /** recorded end time */ 146 * @param absolute whether to use an absolute time or not; in 181 * @param maxWaitMillis the maximum amount of time to 204 * given expected time. 231 * specified amount of time and then unparks an indicated thread.
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
DialogDetailsView.java | 160 double time = Double.valueOf(value); local 161 if (time < 1.0f) { 162 value = String.format("1/%d", (int) (0.5f + 1 / time)); 164 int integer = (int) time; 165 time -= integer; 167 if (time > 0.0001) { 168 value += String.format(" 1/%d", (int) (0.5f + 1 / time));
|
/packages/apps/Mms/src/com/android/mms/dom/smil/ |
ElementParallelTimeContainerImpl.java | 28 import org.w3c.dom.smil.Time; 93 Time endTime = endTimeList.item(j); 94 if (endTime.getTimeType() == Time.SMIL_TIME_INDEFINITE) { 111 * Find the closest Time of ElementTime before instant. 112 * Add ElementTime to list of active elements if the Time belongs to the begin-list, 126 Time begin = beginList.item(j); 139 Time end = endList.item(j);
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
CalendarAlarmManager.java | 41 import android.text.format.Time; 84 * We search backward in time for event reminders that we may have missed 97 * because the device time was incorrectly in the future. This threshold 234 Time time = new Time(); local 235 time.set(triggerTime); 236 String timeStr = time.format(" %a, %b %d, %Y %I:%M%P"); 268 Time time = new Time() local [all...] |
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
CalendarProvider2Test.java | 50 import android.text.format.Time; 178 * start and end time, whether it is an all-day event, and so on) are 300 Time time = new Time(DEFAULT_TIMEZONE); local 301 time.parse3339(startDate); 302 begin = time.toMillis(false /* use isDst */); 303 time.parse3339(endDate); 304 end = time.toMillis(false /* use isDst */); 324 Time time = new Time(DEFAULT_TIMEZONE) local 352 Time time = new Time(DEFAULT_TIMEZONE); local 447 Time time = new Time(DEFAULT_TIMEZONE); local 520 Time time = new Time(); local 552 Time time = new Time(); local 590 Time time = new Time(timezone); local 606 Time time = new Time(mEvent.mTimezone); local 1582 Time time = new Time(DEFAULT_TIMEZONE); local 1930 Time time = new Time(DEFAULT_TIMEZONE); local 2247 Time time = new Time(Time.TIMEZONE_UTC); local 2298 Time time = new Time(DEFAULT_TIMEZONE); local [all...] |
/external/chromium/base/metrics/ |
field_trial.cc | 54 base::Time::Exploded exploded; 64 base::Time expiration_time = Time::FromLocalExploded(exploded); 121 Time FieldTrial::GetBuildTime() { 122 Time integral_build_time; 124 bool result = Time::FromString(ASCIIToWide(kDateTime).c_str(), 222 Time::Exploded exploded; 223 Time two_years_from_now = 224 Time::NowFromSystemTime() + TimeDelta::FromDays(730);
|
/external/chromium/base/ |
time_win_unittest.cc | 10 #include "base/time.h" 13 using base::Time; 54 // measurements, so the time might be 0 millis. 180 // Cheating a bit here: assumes sizeof(TimeTicks) == sizeof(Time) 182 COMPILE_ASSERT(sizeof(TimeTicks) == sizeof(Time), 185 { reinterpret_cast<TestFunc>(Time::Now), "Time::Now" }, 228 // Sanity check. We expect some time drift to occur, especially across 233 printf("average time drift in microseconds: %lld\n",
|
/external/chromium/chrome/browser/bookmarks/ |
bookmark_html_writer_unittest.cc | 12 #include "base/time.h" 74 result.append(ASCIIToUTF16(" time=")); 83 base::Time creation_time, 110 base::Time creation_time, 187 base::Time t1(base::Time::Now()); 188 base::Time t2(t1 + base::TimeDelta::FromHours(1)); 189 base::Time t3(t1 + base::TimeDelta::FromHours(1)); 190 base::Time t4(t1 + base::TimeDelta::FromHours(1));
|
/external/chromium/chrome/browser/ui/cocoa/content_settings/ |
cookie_details_unittest.mm | 62 base::Time last_modified = base::Time::Now(); 91 base::Time last_modified = base::Time::Now(); 116 info.creation_time = base::Time::Now(); 117 info.last_update_time = base::Time::Now(); 118 info.last_access_time = base::Time::Now(); 150 base::Time last_modified = base::Time::Now();
|
/external/chromium/net/ftp/ |
ftp_directory_listing_parser_vms.cc | 12 #include "base/time.h" 139 base::Time* time) { 142 base::Time::Exploded time_exploded = { 0 }; 157 // Time can be in format HH:MM, HH:MM:SS, or HH:MM:SS.mm. Try to recognize the 175 // We don't know the time zone of the server, so just use local time. 176 *time = base::Time::FromLocalExploded(time_exploded);
|
/frameworks/base/core/java/android/widget/ |
Chronometer.java | 37 * You can give it a start time in the {@link SystemClock#elapsedRealtime} timebase, 38 * and it counts up from that, or if you don't give it a base time, it will use the 39 * time at which you call {@link #start}. By default it will display the current 78 * Sets the base to the current time. 86 * Sets the base to the current time. 94 * Sets the base to the current time. 114 * Set the time that the count-up timer is in reference to. 116 * @param base Use the {@link SystemClock#elapsedRealtime} time base. 126 * Return the base time as set through {@link #setBase}.
|