/external/chromium/base/i18n/ |
time_formatting.cc | 10 #include "base/time.h" 15 using base::Time; 20 const Time& time) { 24 formatter->format(static_cast<UDate>(time.ToDoubleT() * 1000), date_string); 33 string16 TimeFormatTimeOfDay(const Time& time) { 38 return TimeFormat(formatter.get(), time); 41 string16 TimeFormatTimeOfDayWithHourClockType(const Time& time, [all...] |
/external/chromium/third_party/libevent/sample/ |
Makefile.am | 6 noinst_PROGRAMS = event-test time-test signal-test 9 time_test_sources = time-test.c
|
/external/javasqlite/src/main/java/SQLite/ |
Profile.java | 11 * with its estimated execution time. 14 * @param est estimated execution time in milliseconds.
|
/frameworks/base/core/java/android/util/ |
TrustedTime.java | 20 * Interface that provides trusted time information, possibly coming from an NTP 27 * Force update with an external trusted time source, returning {@code true} 33 * Check if this instance has cached a response from a trusted time source. 38 * Return time since last trusted time source contact, or 44 * Return certainty of cached trusted time in milliseconds, or 51 * Return current time similar to {@link System#currentTimeMillis()}, 52 * possibly using a cached authoritative time source.
|
/frameworks/media/libvideoeditor/osal/inc/ |
M4OSA_Time.h | 20 * @brief Time macros 21 * @note This file defines time type and associated macros which must 22 * be used to manipulate time. 38 /** This macro sets the unknown time value */ 42 /** This macro converts a time with a time scale to millisecond. 44 #define M4OSA_TIME_TO_MS(result, time, timescale)\ 45 { result = (1000*(M4OSA_Double)time)/((M4OSA_Double)timescale); }
|
/packages/apps/Mms/src/com/android/mms/dom/smil/ |
TimeListImpl.java | 22 import org.w3c.dom.smil.Time; 26 private final ArrayList<Time> mTimes; 31 TimeListImpl(ArrayList<Time> times) { 43 public Time item(int index) { 44 Time time = null; local 46 time = mTimes.get(index); 50 return time;
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
TimeUtil.java | 28 * Return a prettified version of the given elapsed time 35 StringBuilder time = new StringBuilder(); local 37 time.append(hours); 38 time.append("h "); 41 time.append(minutes); 42 time.append("m "); 44 time.append(seconds); 45 time.append("s"); 47 return time.toString(); 60 * Return the given time as a {@link String} suitable for displaying [all...] |
/external/quake/quake/src/WinQuake/ |
main.cpp | 49 // Note: Timer acually has less than microsecond resolution, so track time in microseconds: 51 nsecs_t time = systemTime(SYSTEM_TIME_THREAD) / 1000; local 54 baseTime = time; 56 time -= baseTime; 63 startTimes[startTimeStackPointer] = time; 66 LOGI("< %lld [%d] %s\n", time, startTimeStackPointer, buf); 68 fprintf(stderr, "Quake < %lld %d %s\n", time, startTimeStackPointer, buf); 81 elapsed = time - startTimes[startTimeStackPointer]; 85 LOGI("> %lld [%d] %lld %s\n", time, startTimeStackPointer, elapsed, buf); 87 fprintf(stderr, "Quake > %lld [%d] %lld %s\n", time, startTimeStackPointer, elapsed, buf) [all...] |
/external/chromium/net/ftp/ |
ftp_directory_listing_parser.h | 14 #include "base/time.h" 32 // Last modified time, in local time zone. 33 base::Time last_modified; 39 const base::Time& current_time,
|
ftp_response_info.h | 9 #include "base/time.h" 23 // The time at which the request was made that resulted in this response. 24 // For cached responses, this time could be "far" in the past. 25 base::Time request_time; 27 // The time at which the response headers were received. For cached 28 // responses, this time could be "far" in the past. 29 base::Time response_time;
|
/external/tcpdump/ |
atime.awk | 4 # <ack time> <seq no> 5 # where <ack time> is the time packet was acked (in seconds with 6 # zero at time of first packet) and <seq no> is the tcp sequence 9 # convert time to seconds
|
stime.awk | 4 # <send time> <seq no> 5 # where <send time> is the time packet was sent (in seconds with 6 # zero at time of first packet) and <seq no> is the tcp sequence 9 # convert time to seconds
|
/external/webkit/Source/WebKit/chromium/tests/ |
WebInputEventFactoryTestGtk.cpp | 51 firstClick.time = 0; 60 secondClick.time = firstClick.time + 100; 65 firstClick.time += 10000; 71 secondClick.time = firstClick.time + 1000; 76 firstClick.time += 10000; 82 secondClick.time = firstClick.time + 1; 88 firstClick.time += 10000 [all...] |
/external/chromium/base/ |
time_posix.cc | 5 #include "base/time.h" 7 #include <sys/time.h> 8 #include <time.h> 20 if (microseconds >= Time::kMicrosecondsPerSecond) { 22 microseconds -= seconds * Time::kMicrosecondsPerSecond; 26 microseconds * Time::kNanosecondsPerMicrosecond}; 31 // The Time routines in this file use standard POSIX routines, or almost- 35 // Time ----------------------------------------------------------------------- 38 // so that our time representations match across all platforms. See bug 14734. 39 // irb(main):010:0> Time.at(0).getutc( [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) 100 # time: cpu time millis (not wall time), including lock acquisition 103 52000 db_sample (db|3),(sql|3),(time|1|3),(blocking_package|3),(sample_percent|1|6 [all...] |
/libcore/luni/src/main/java/java/sql/ |
Time.java | 23 * Java representation of an SQL {@code TIME} value. Provides utilities to 24 * format and parse the time's representation as a String in JDBC escape format. 26 public class Time extends Date { 31 * Constructs a {@code Time} object using the supplied values for <i>Hour</i>, 33 * <i>Day</i> elements of the {@code Time} object are set to the date 37 * elements of a {@code Time} object will result in an {@code 42 * @deprecated Use the constructor {@link #Time(long)}. 52 public Time(int theHour, int theMinute, int theSecond) { 57 * Constructs a {@code Time} object using a supplied time specified i [all...] |
/sdk/emulator/qtools/ |
check_trace.cpp | 46 //printf("t%llu bb %lld %d\n", event.time, event.bb_num, event.num_insns); 47 uint64_t insn_time = trace->ReadInsnTime(event.time); 48 if (insn_time != event.time) { 49 printf("time: %llu insn time: %llu bb: %llu addr: 0x%x num_insns: %d, pid: %d\n", 50 event.time, insn_time, event.bb_num, event.bb_addr, 55 trace->ReadInsnTime(event.time);
|
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/icu4c/i18n/unicode/ |
timezone.h | 49 * <code>TimeZone</code> represents a time zone offset, and also figures out daylight 54 * which creates a <code>TimeZone</code> based on the time zone where the program 56 * creates a <code>TimeZone</code> object based on Japanese Standard Time. 60 * with a time zone ID. For instance, the time zone ID for the US Pacific 61 * Time zone is "America/Los_Angeles". So, you can get a Pacific Time <code>TimeZone</code> object 69 * all the supported time zone IDs. You can then choose a 71 * If the time zone you want is not represented by one of the 72 * supported IDs, then you can create a custom time zone ID wit [all...] |
/external/chromium/chrome/common/ |
time_format.h | 9 // This file defines methods to format time values as strings. 16 class Time; 23 // These functions return a localized string of approximate time duration. The 36 // For displaying a relative time in the past. This method returns either 45 // computations: Time::Now().LocalMidnight() 48 // time once at the beginning and pass it for each computation. 49 static string16 RelativeDate(const base::Time& time, 50 const base::Time* optional_midnight_today);
|
/external/chromium/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/clang/test/Sema/ |
static-init.c | 6 static int b = f; // expected-error {{initializer element is not a compile-time constant}} 8 float r = (float) (intptr_t) &r; // expected-error {{initializer element is not a compile-time constant}} 23 struct foo y = {(char) u}; // expected-error {{initializer element is not a compile-time constant}}
|
/external/icu4c/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/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/base/tests/RenderScriptTests/tests/src/com/android/rs/test/ |
shared.rsh | 9 int64_t time; 21 //g_results[idx].time = t; 22 //rsDebug("test time", (int)t);
|