/system/extras/tests/workloads/ |
pwrtest.sh | 163 date 289 echo $(date) Test 2 : recents fling for $recentflingTime minutes 296 date 302 echo $(date) Test 2 : run Sun Temple $suntempleTime minutes 312 date 318 echo $(date) Test 3 : chrome fling for $chromeTime minutes 322 date 334 echo $(date) Test 4 : shadowgrid2 for $shadowgrid2Time minutes 339 date 345 echo $(date) Test 5 : youtube for $youtubeTime minute [all...] |
/external/chromium-trace/catapult/third_party/WebOb/webob/ |
etag.py | 142 # Must be a date 170 def __init__(self, date): 171 self.date = date 177 return last_modified and (last_modified <= self.date) 182 self.date 183 #serialize_date(self.date) 187 return serialize_date(self.date)
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
PersianCalendar.java | 11 import java.util.Date; 194 * Constructs a <code>PersianCalendar</code> with the given date set 197 * @param date The date to which the new calendar is set. 204 public PersianCalendar(Date date) { 206 this.setTime(date); 210 * Constructs a <code>PersianCalendar</code> with the given date set 216 * @param date the value used to set the {@link #DATE DATE} time field in the calendar [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
PersianCalendar.java | 10 import java.util.Date; 192 * Constructs a <code>PersianCalendar</code> with the given date set 195 * @param date The date to which the new calendar is set. 202 public PersianCalendar(Date date) { 204 this.setTime(date); 208 * Constructs a <code>PersianCalendar</code> with the given date set 214 * @param date the value used to set the {@link #DATE DATE} time field in the calendar [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
Support_MessageFormat.java | 24 import java.util.Date; 50 String pattern = "On {4,date} at {3,time}, he ate {2,number, integer} hamburger{2,choice,1#|1<s} and drank {1, number} liters of coke. That was {0,choice,1#just enough|1<more than enough} food!"; 53 Date date = new GregorianCalendar(2005, 1, 28, 14, 20, 16).getTime(); local 56 hamburgers, date, date }; 79 String pattern = "On {4,date} at {3,time}, he ate {2,number, integer} hamburger{2,choice,1#|1<s} and drank {1, number} liters of coke. That was {0,choice,1#just enough|1<more than enough} food!"; 82 Date date = new GregorianCalendar(2005, 1, 28, 14, 20, 16).getTime(); local 84 Object[] objects = new Object[] { hamburgers, new Double(3.5), hamburgers, date, date } [all...] |
/libcore/ojluni/src/main/java/sun/util/calendar/ |
JulianCalendar.java | 47 private static class Date extends BaseCalendar.Date { 48 protected Date() { 53 protected Date(TimeZone zone) { 58 public Date setEra(Era era) { 121 public Date getCalendarDate() { 125 public Date getCalendarDate(long millis) { 129 public Date getCalendarDate(long millis, CalendarDate date) { 130 return (Date) super.getCalendarDate(millis, date) [all...] |
/libcore/support/src/test/java/tests/support/ |
Support_MessageFormat.java | 24 import java.util.Date; 47 String pattern = "On {4,date} at {3,time}, he ate {2,number, integer} hamburger{2,choice,1#|1<s} and drank {1, number} litres of coke. That was {0,choice,1#just enough|1<more than enough} food!"; 50 Date date = new GregorianCalendar(2005, 1, 28, 14, 20, 16).getTime(); local 53 hamburgers, date, date }; 74 String pattern = "On {4,date} at {3,time}, he ate {2,number, integer} hamburger{2,choice,1#|1<s} and drank {1, number} litres of coke. That was {0,choice,1#just enough|1<more than enough} food!"; 77 Date date = new GregorianCalendar(2005, 1, 28, 14, 20, 16).getTime(); local 80 hamburgers, date, date } [all...] |
/packages/apps/Contacts/src/com/android/contacts/interactions/ |
SmsInteraction.java | 56 Long date = getDate(); local 57 return date == null ? -1 : date; 76 Long date = getDate(); local 77 return date == null ? null : ContactInteractionUtil.formatDateStringFromTimestamp( 78 date, context); 107 return mValues.getAsLong(Sms.DATE);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/s3/ |
test_lifecycle.py | 52 <Date>2012-12-31T00:00:000Z</Date> 69 self.assertIsNone(rule.expiration.date) 73 self.assertEqual(response[1].transition.date, '2012-12-31T00:00:000Z') 91 t = Transition(date='2012-11-30T00:00:000Z', storage_class='GLACIER') 96 '<Date>2012-11-30T00:00:000Z</Date>', xml)
|
/external/f2fs-tools/scripts/ |
spo_test.sh | 22 date >> $USER_DIR/por_result 55 date 57 RANDOM=`date '+%s'`
|
/external/jetty/src/java/org/eclipse/jetty/util/ajax/ |
JSONDateConvertor.java | 23 import java.util.Date; 35 * Convert a {@link Date} to JSON. 37 * be of the form {class="java.util.Date",value="1/1/1970 12:00 GMT"} 38 * If fromJSON is false, then only the string value of the date is generated. 96 String date = _dateCache.format((Date)obj); local 100 out.add("value",date); 104 out.add(date);
|
/dalvik/dx/tests/131-perf/ |
run | 74 start=`date +'%s%N'` 76 end=`date +'%s%N'`
|
/external/compiler-rt/make/ |
config.mk | 21 DATE := date
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
IntlTestDateFormat.java | 15 @summary test International Date Format 22 import java.util.Date; 33 // Values in milliseconds (== Date) 43 //private static final byte DATE = TIME + 1; //The variable is never used 44 //private static final byte DATE_TIME = DATE + 1; //The variable is never used 90 fTestName = new String("Date test " + dateStyle + " (" + localeName + ")"); 95 errln("FAIL: localeTest date getTimeInstance exception"); 108 errln("FAIL: localeTest date/time getDateTimeInstance exception"); 122 Date now = new Date(); 149 Date[] date = new Date[DEPTH]; local [all...] |
/external/icu/icu4c/source/samples/uresb/ |
resources.mak | 15 @echo All targets are up to date
|
/external/icu/icu4c/source/test/intltest/ |
tsdate.cpp | 91 fTestName = (UnicodeString) "Date test " + (int32_t) dateStyle + " (" + localeName + ")"; 150 UDate date[DEPTH]; local 161 date[0] = theDate; 167 date[i] = fFormat->parse(string[i-1], status); 175 fFormat->format(date[i], string[i]); 176 if (dateMatch == 0 && date[i] == date[i-1]) 178 else if (dateMatch > 0 && date[i] != date[i-1]) 181 errln("**** FAIL: Date mismatch after match for " + string[i]) [all...] |
tsdate.h | 40 * perform tests using date and fFormat, called in many variations 42 void tryDate(UDate date); 62 // Values in milliseconds (== Date) 73 DATE,
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
IntlTestDateFormat.java | 14 @summary test International Date Format 21 import java.util.Date; 29 // Values in milliseconds (== Date) 39 //private static final byte DATE = TIME + 1; //The variable is never used 40 //private static final byte DATE_TIME = DATE + 1; //The variable is never used 86 fTestName = new String("Date test " + dateStyle + " (" + localeName + ")"); 91 errln("FAIL: localeTest date getTimeInstance exception"); 104 errln("FAIL: localeTest date/time getDateTimeInstance exception"); 118 Date now = new Date(); 145 Date[] date = new Date[DEPTH]; local [all...] |
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
DateFormatPerformanceTest.java | 10 import java.util.Date; 21 private Date date; field in class:DateFormatPerformanceTest 51 date = icuDateFormat[0].parse(dateString); 103 icuDateFormat[id].format(date); 111 jdkDateFormat[id].format(date);
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue49/ |
CalendarTest.java | 19 import java.util.Date; 35 cal.setTime(new Date(1000000000000L)); 49 * Daylight Saving Time is in effect on this date/time in 51 * Saving Time is not in effect on this date/time in GMT 59 * Daylight Saving Time is not in effect on this date/time in 61 * Saving Time is not in effect on this date/time in GMT 85 cal.setTime(new Date(time)); 109 Date date = (Date) yaml.load("2001-12-14t21:59:43.10-05:00") local 120 Date date = (Date) yaml.load("2001-12-14t21:59:43.10-05:00"); local [all...] |
/libcore/ojluni/src/main/java/java/security/cert/ |
PKIXParameters.java | 33 import java.util.Date; 68 * <code>date</code> parameter is <code>null</code>, which indicates 89 private Date date; field in class:PKIXParameters 478 * Note that the <code>Date</code> returned is copied to protect against 481 * @return the <code>Date</code>, or <code>null</code> if not set 484 public Date getDate() { 485 if (date == null) 488 return (Date) this.date.clone() [all...] |
/libcore/ojluni/src/main/java/java/sql/ |
Date.java | 31 * JDBC to identify this as an SQL <code>DATE</code> value. A 35 * To conform with the definition of SQL <code>DATE</code>, the 36 * millisecond values wrapped by a <code>java.sql.Date</code> instance 41 public class Date extends java.util.Date { 44 * Constructs a <code>Date</code> object initialized with the given 53 * @deprecated instead use the constructor <code>Date(long date)</code> 56 public Date(int year, int month, int day) { 61 * Constructs a <code>Date</code> object using the given millisecond [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/backward/ |
backward_warning.h | 34 may be removed without further notice at a future date. Please use a \
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/backward/ |
backward_warning.h | 34 may be removed without further notice at a future date. Please use a \
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/backward/ |
backward_warning.h | 34 may be removed without further notice at a future date. Please use a \
|