/external/clang/utils/analyzer/ |
SumTimerInfo.py | 22 Time = 0.0 38 if (("Analyzer Total Time" in line) and (Mode == 1)) : 40 Time = Time + float(s[6]) 74 print "Time %f" % (Time)
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/ |
Utils.java | 24 import android.text.format.Time; 30 * Utility helper functions for time and date pickers. 34 public static final int MONDAY_BEFORE_JULIAN_EPOCH = Time.EPOCH_JULIAN_DAY - 3; 37 // Alpha level for time picker selection. 87 * This assumes that the week containing the {@link Time#EPOCH_JULIAN_DAY} 99 * Returns the week since {@link Time#EPOCH_JULIAN_DAY} (Jan 1, 1970) 103 * week since {@link Time#EPOCH_JULIAN_DAY} that day occurs in, starting 108 * see {@link Time#SUNDAY} 112 int diff = Time.THURSDAY - firstDayOfWeek; 116 int refDay = Time.EPOCH_JULIAN_DAY - diff [all...] |
/system/update_engine/common/ |
hardware_interface.h | 24 #include <base/time/time.h> 49 // the time-stamp of when OOBE happened is stored at |out_time_of_oobe|. 50 virtual bool IsOOBEComplete(base::Time* out_time_of_oobe) const = 0;
|
fake_hardware.h | 23 #include <base/time/time.h> 51 bool IsOOBEComplete(base::Time* out_time_of_oobe) const override { 95 void SetIsOOBEComplete(base::Time oobe_timestamp) { 125 base::Time oobe_timestamp_;
|
/system/update_engine/update_manager/ |
shill_provider.h | 20 #include <base/time/time.h> 59 // A variable returning the time when network connection last changed. 60 // Initialized to current time. 61 virtual Variable<base::Time>* var_conn_last_changed() = 0;
|
/external/webrtc/webrtc/base/ |
timeutils.h | 15 #include <time.h> 37 // Returns the current time in milliseconds. 38 uint32_t Time(); 39 // Returns the current time in microseconds. 41 // Returns the current time in nanoseconds. 44 // Stores current time in *tm and microseconds in *microseconds. 50 // Comparisons between time values, which can wrap around. 73 return TimeDiff(Time(), earlier); 78 return TimeDiff(later, Time());
|
macsocketserver_unittest.cc | 38 uint32_t start = Time(); 47 uint32_t start = Time(); 56 uint32_t start = Time(); 65 uint32_t start = Time(); 74 uint32_t start = Time(); 83 uint32_t start = Time();
|
nullsocketserver_unittest.cc | 40 uint32_t start = Time(); 42 // The actual wait time is dependent on the resolution of the timer used by
|
ratetracker.h | 46 // Reads the current time in order to determine the appropriate bucket for 52 virtual uint32_t Time() const;
|
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
TimeStatsAggregator.java | 19 import android.text.format.Time; 30 // import android.text.format.Time; 34 public static final String TIME_OF_WEEK = "Time of Week"; 36 public static final String TIME_OF_DAY = "Time of Day"; 85 Log.e(TAG, "There is no Time feature called " + featureName); 109 case Time.SATURDAY: 111 case Time.SUNDAY: 113 case Time.MONDAY: 115 case Time.TUESDAY: 117 case Time.WEDNESDAY 136 Time time = new Time(); local [all...] |
/system/connectivity/shill/net/ |
event_history.h | 35 // at any one time. 43 EventHistory() : max_events_specified_(false), time_(Time::GetInstance()) {} 47 time_(Time::GetInstance()) {} 49 // Records the current event by adding the current time to the list. 56 // more than |seconds_ago| prior to the current time. |clock_type| determines 57 // what time of clock we use for time-related calculations. 60 // Records the current event by adding the current time to the list, and uses 62 // |seconds_ago|. |clock_type| determines what time of clock we use for time [all...] |
mock_time.h | 27 class MockTime : public Time {
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
TBSCertificate.java | 41 Time startDate, endDate; 100 startDate = Time.getInstance(dates.getObjectAt(0)); 101 endDate = Time.getInstance(dates.getObjectAt(1)); 153 public Time getStartDate() 158 public Time getEndDate()
|
TBSCertificateStructure.java | 43 Time startDate, endDate; 102 startDate = Time.getInstance(dates.getObjectAt(0)); 103 endDate = Time.getInstance(dates.getObjectAt(1)); 155 public Time getStartDate() 160 public Time getEndDate()
|
TBSCertList.java | 26 * thisUpdate Time, 27 * nextUpdate Time OPTIONAL, 30 * revocationDate Time, 79 public Time getRevocationDate() 81 return Time.getInstance(seq.getObjectAt(1)); 143 Time thisUpdate; 144 Time nextUpdate; 191 thisUpdate = Time.getInstance(seq.getObjectAt(seqPos++)); 196 || seq.getObjectAt(seqPos) instanceof Time)) 198 nextUpdate = Time.getInstance(seq.getObjectAt(seqPos++)) [all...] |
/packages/apps/Calendar/src/com/android/calendar/month/ |
SimpleDayPickerFragment.java | 31 import android.text.format.Time; 51 * reduced number of days, or display an arbitrary number of weeks at a time. By 92 // highlighted time 93 protected Time mSelectedDay = new Time(); 99 // disposable variable used for time calculations 100 protected Time mTempTime = new Time(); 103 // When the week starts; numbered like Time.<WEEKDAY> (e.g. SUNDAY=0). 106 protected Time mFirstDayOfMonth = new Time() [all...] |
SimpleWeekView.java | 32 import android.text.format.Time; 67 * This sets one of the days in this view as selected {@link Time#SUNDAY} 68 * through {@link Time#SATURDAY}. 72 * Which day the week should start on. {@link Time#SUNDAY} through 73 * {@link Time#SATURDAY}. 77 * How many days to display at a time. Days will be displayed starting with 82 * Which month is currently in focus, as defined by {@link Time#month} 94 protected static final int DEFAULT_WEEK_START = Time.SUNDAY; 118 // Cache the number strings so we don't have to recompute them each time 159 protected String mTimeZone = Time.getCurrentTimezone() 247 Time time = new Time(tz); local 377 Time time = new Time(mTimeZone); local [all...] |
/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...] |
/external/libchrome/base/process/ |
internal_linux.cc | 20 #include "base/time/time.h" 157 Time GetBootTime() { 161 return Time(); 166 return Time(); 169 return Time(); 170 return Time::FromTimeT(btime); 185 Time::kMicrosecondsPerSecond * clock_ticks / kHertz);
|
/external/libweave/src/states/ |
state_change_queue_unittest.cc | 30 auto timestamp = base::Time::Now(); 41 auto timestamp1 = base::Time::Now(); 61 base::Time timestamp = base::Time::Now(); 90 base::Time start_time = base::Time::Now();
|
/packages/apps/Calendar/tests/src/com/android/calendar/ |
WeekNumberTest.java | 23 import android.text.format.Time; 28 * Unit tests for {@link android.text.format.Time#getWeekNumber}. 33 public Time date; 34 public Time allDayDate; 38 date = new Time(); 39 allDayDate = new Time(Time.TIMEZONE_UTC);
|
FormatDateRangeTest.java | 22 import android.text.format.Time; 33 public Time date1; 34 public Time date2; 42 date1 = new Time(Time.TIMEZONE_UTC); 43 date2 = new Time(Time.TIMEZONE_UTC); 45 date1 = new Time(); 46 date2 = new Time(); 65 // Single point in time. (not a range [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterKMeans.java | 20 import android.text.format.Time; 32 Time t = new Time();
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/ |
XInput2.h | 182 Time time; member in struct:__anon39807 205 Time time; member in struct:__anon39809 222 Time time; member in struct:__anon39810 237 Time time; member in struct:__anon39811 262 Time time; member in struct:__anon39812 278 Time time; member in struct:__anon39813 308 Time time; member in struct:__anon39814 321 Time time; member in struct:__anon39815 [all...] |
/frameworks/opt/telephony/src/java/android/telephony/ |
SmsCbEtwsInfo.java | 21 import android.text.format.Time; 169 Time time = new Time(Time.TIMEZONE_UTC); local 172 time.year = year + 2000; 173 time.month = month - 1; 174 time.monthDay = day; 175 time.hour = hour; 176 time.minute = minute [all...] |