/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/ |
armtime | 3 debug=false;args=;time=true 26 # do not use time 27 time=false 50 proctime_total = 0; # total time the test was running 51 proctime_work = 0; # total CPU time that the test was using 52 cpu_time = 0; # total time the CPU stats were measured on 55 delete MHZtime; # total time spent in various power states 56 kernel = 0; # don't print separate kernel time statistics 71 # the first time an uptime line is encountered factor should be -1, the 72 # second time it should be 1. We set it to 0 at the beginning, so we us [all...] |
/ndk/sources/android/support/src/musl-locale/ |
strftime_l.c | 2 #include <time.h>
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
EventLogTags.logtags | 5 4000 calendar_upgrade_receiver (time|2|3)
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
EventLogTags.logtags | 5 4100 contacts_upgrade_receiver (time|2|3)
|
/prebuilts/sdk/renderscript/include/ |
rs_time.rsh | 18 * \brief RenderScript time routines 20 * This file contains RenderScript functions relating to time and date 28 * Calendar time interpreted as seconds elapsed since the Epoch (00:00:00 on 29 * January 1, 1970, Coordinated Universal Time (UTC)). 34 * Data structure for broken-down time components. 45 * tm_isdst - Flag to indicate whether daylight saving time is in effect. The 58 int tm_isdst; ///< daylight savings time 66 * @param timer Location to also store the returned calendar time. 74 * Converts the time specified by @p timer into broken-down time and stores i [all...] |
/sdk/emulator/qtools/ |
exc_dump.cpp | 17 uint64_t time, recnum, bb_num, bb_start_time; local 21 if (trace->ReadExc(&time, &pc, &recnum, &target_pc, &bb_num, 24 printf("time: %lld rec: %llu pc: %08x target: %08x bb: %llu bb_start: %llu insns: %d\n", 25 time, recnum, pc, target_pc, bb_num, bb_start_time, num_insns);
|
read_pid.cpp | 22 printf("t%lld fork tgid %d pid %d\n", event.time, event.tgid, event.pid); 25 printf("t%lld clone tgid %d pid %d\n", event.time, event.tgid, event.pid); 28 printf("t%lld switch %d\n", event.time, event.pid); 31 printf("t%lld exit %d\n", event.time, event.pid); 35 event.time, event.vstart, event.vend, event.offset, event.path); 40 event.time, event.vstart, event.vend); 44 event.time, event.vstart, event.path); 48 printf("t%lld remove %08x\n", event.time, event.vstart); 51 printf("t%lld argc: %d\n", event.time, event.argc); 60 event.time, event.tgid, event.pid, event.path) [all...] |
/external/chromium_org/chrome/browser/ui/tab_contents/ |
core_tab_helper.h | 8 #include "base/time/time.h" 34 // Set the time during close when unload is started. Normally, this is set 39 // Set the time during close when the tab is no longer visible. 47 void set_new_tab_start_time(const base::TimeTicks& time) { 48 new_tab_start_time_ = time; 70 // The time when we started to create the new tab page. This time is from 74 // The time that we started to close this WebContents. 77 // The time when onbeforeunload ended [all...] |
/external/chromium/base/ |
time.h | 5 // Time represents an absolute point in time, internally represented as 10 // TimeDelta represents a duration of time, internally represented in 13 // TimeTicks represents an abstract time that is always incrementing for use 14 // in measuring time durations. It is internally represented in microseconds. 15 // It can not be converted to a human-readable time, but is guaranteed not to 16 // decrease (if the user changes the computer clock, Time::Now() may actually 26 #include <time.h> 33 #include <sys/time.h> 44 class Time; [all...] |
/frameworks/base/core/java/android/text/format/ |
Time.java | 28 * {@link java.util.GregorianCalendar} classes. An instance of the Time class represents 29 * a moment in time, specified with second precision. It is modelled after 33 public class Time { 54 * all zero, and the date is displayed the same in all time zones. 99 * This time is in daylight savings time. One of: 114 * The timezone for this Time. Should not be null. 160 * Construct a Time object in the timezone named by the string 161 * argument "timezone". The time is initialized to Jan 1, 1970. 165 public Time(String timezone) [all...] |
/libcore/luni/src/main/java/java/util/ |
SimpleTimeZone.java | 27 * that represents a time zone for use with a Gregorian calendar. This class 32 * backwards. For example, Daylight Savings Time ends at the last 33 * (dayOfWeekInMonth = -1) Sunday in October, at 2 AM in standard time. 55 * The constant for representing a start or end time in GMT time mode. 60 * The constant for representing a start or end time in standard local time mode, 67 * The constant for representing a start or end time in local wall clock time 78 * Constructs a {@code SimpleTimeZone} with the given base time zone offset from GM [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
vzone.h | 39 * Creates a vzone from the given time zone ID. 40 * @param ID The time zone ID, such as America/New_York 42 * @return A vzone object initialized by the time zone ID, 136 * Writes RFC2445 VTIMEZONE data for this time zone 147 * Writes RFC2445 VTIMEZONE data for this time zone applicalbe 148 * for dates after the specified start time. 161 * Some common iCalendar implementations can only handle a single time 162 * zone property or a pair of standard and daylight time properties using 165 * produced by this method can be used only for calculating time zone offset 168 * @param time The date used for rule extraction [all...] |
/external/icu4c/i18n/unicode/ |
timezone.h | 50 * <code>TimeZone</code> represents a time zone offset, and also figures out daylight 55 * which creates a <code>TimeZone</code> based on the time zone where the program 57 * creates a <code>TimeZone</code> object based on Japanese Standard Time. 61 * with a time zone ID. For instance, the time zone ID for the US Pacific 62 * Time zone is "America/Los_Angeles". So, you can get a Pacific Time <code>TimeZone</code> object 70 * all the supported time zone IDs, or getCanonicalID method to check 71 * if a time zone ID is supported or not. You can then choose a 73 * If the time zone you want is not represented by one of th [all...] |
/external/icu4c/i18n/ |
vzone.h | 38 * Creates a vzone from the given time zone ID. 39 * @param ID The time zone ID, such as America/New_York 41 * @return A vzone object initialized by the time zone ID, 126 * Writes RFC2445 VTIMEZONE data for this time zone 136 * Writes RFC2445 VTIMEZONE data for this time zone applicalbe 137 * for dates after the specified start time. 149 * Some common iCalendar implementations can only handle a single time 150 * zone property or a pair of standard and daylight time properties using 153 * produced by this method can be used only for calculating time zone offset 156 * @param time The date used for rule extraction [all...] |
/external/chromium/base/synchronization/ |
condition_variable_posix.cc | 8 #include <sys/time.h> 12 #include "base/time.h" 45 // The timeout argument to pthread_cond_timedwait is in absolute time. 50 abstime.tv_sec = now.tv_sec + (usecs / Time::kMicrosecondsPerSecond); 51 abstime.tv_nsec = (now.tv_usec + (usecs % Time::kMicrosecondsPerSecond)) * 52 Time::kNanosecondsPerMicrosecond; 53 abstime.tv_sec += abstime.tv_nsec / Time::kNanosecondsPerSecond; 54 abstime.tv_nsec %= Time::kNanosecondsPerSecond;
|
/external/chromium/chrome/browser/first_run/ |
upgrade_util_linux.h | 11 // Saves the last modified time of the chrome executable file. 14 // Returns the last modified time of the chrome executable file.
|
/external/chromium/chrome/browser/ui/cocoa/ |
external_protocol_dialog.h | 7 #include "base/time.h" 14 base::Time creation_time_;
|
/external/chromium_org/chrome/browser/first_run/ |
upgrade_util_linux.h | 10 // Saves the last modified time of the chrome executable file. 13 // Returns the last modified time of the chrome executable file.
|
/external/chromium_org/chrome/browser/resources/sync_file_system_internals/ |
sync_service.html | 21 <td class="log-time">Time</td>
|
/external/chromium_org/chrome/browser/resources/translate_internals/ |
error_logs.html | 11 <th class="error-logs-time">Time</th>
|
event_logs.html | 11 <th class="event-logs-time">Time</th>
|
/external/chromium_org/chrome/browser/translate/ |
translate_event_details.cc | 13 time = base::Time::Now();
|
/external/chromium_org/content/public/android/java/resource_map/ |
OWNERS | 3 # review gives us time to prepare a matching change ahead of time so that our
|
/external/chromium_org/crypto/ |
mock_apple_keychain_ios.cc | 6 #include "base/time/time.h"
|
/external/chromium_org/gpu/command_buffer/common/ |
time.h | 10 #include "base/time/time.h"
|