/external/iputils/doc/ |
Makefile | 40 @date "+%y%m%d" > snapshot.db
|
/external/jsilver/src/org/clearsilver/ |
HDF.java | 21 import java.util.Date; 97 * Export a date to a clearsilver tree using a specified timezone 99 void exportDate(String hdfName, TimeZone timeZone, Date date); 102 * Export a date to a clearsilver tree using a specified timezone
|
/external/sfntly/cpp/src/sfntly/table/core/ |
font_header_table.cc | 173 void FontHeaderTable::Builder::SetCreated(int64_t date) { 174 InternalWriteData()->WriteDateTime(Offset::kCreated, date); 181 void FontHeaderTable::Builder::SetModified(int64_t date) { 182 InternalWriteData()->WriteDateTime(Offset::kModified, date);
|
/external/shflags/src/ |
shflags_test.sh | 78 echo "$ date" 79 date
|
/external/skia/tools/copyright/ |
fileparser.py | 61 DEFAULT_YEAR = datetime.date.today().year
|
/external/v8/test/mjsunit/regress/ |
regress-396.js | 30 function DateYear(date) { 31 var string = date.getYear() + ''; 38 assertEquals('1995', DateYear(new Date('Dec 25, 1995'))); 39 assertEquals('2005', DateYear(new Date('Dec 25, 2005')));
|
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/ |
ObjectViewer.java | 39 import java.util.Date; 142 Date date = new Date(info.getDateCreated() * 1000); local 143 view.setText(date.toString()); 145 date = new Date(info.getDateModified() * 1000); 146 view.setText(date.toString());
|
/frameworks/base/tools/preload2/src/com/android/preload/ |
DumpTableModel.java | 65 return "Date"; 83 return d.date;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
MessageFormatTest.java | 37 import java.util.Date; 190 String pattern = "A {3, number, currency} B {2, time} C {0, number, percent} D {4} E {1,choice,0#off|1#on} F {0, date}"; 196 assertTrue("Object 0 is not date", result[0] instanceof Date); 198 assertTrue("Object 2 is not date", result[2] instanceof Date); 259 Date date = new Date(12345678); local 260 Object[] args = { date, iCurrency, iInteger } 335 Date date = new Date(); local 394 Date date = new Date(); local 547 SimpleDateFormat date = (SimpleDateFormat) DateFormat.getTimeInstance(); local 570 Date date = new Date(); local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
TimeZoneTest.java | 23 import java.util.Date; 209 Date date = new Date(07, 2, 24); local 210 assertEquals(300, date.getTimezoneOffset()); 211 date = new Date(99, 8, 1); 212 assertEquals(240, date.getTimezoneOffset());
|
/libcore/luni/src/main/java/javax/xml/datatype/ |
Duration.java | 25 import java.util.Date; 89 * @version $Revision: 759828 $, $Date: 2009-03-29 18:26:29 -0700 (Sun, 29 Mar 2009) $ 96 * <p>Return the name of the XML Schema date/time type that this instance 104 * Required fields for XML Schema 1.0 Date/Time Datatypes.<br/> 105 * <i>(timezone is optional for all date/time datatypes)</i> 154 * @throws IllegalStateException If the combination of set fields does not match one of the XML Schema date/time datatypes. 198 + " this Duration does not match one of the XML Schema date/time datatypes:" 344 * For example, for any <code>Date</code> value <code>x</code>,</p> 351 * Note that this method uses the {@link #addTo(Date)} method, 353 * very large values in its fields. See the {@link #addTo(Date)} [all...] |
/libcore/ojluni/src/main/java/java/security/cert/ |
X509Certificate.java | 31 import java.util.Date; 121 * the current date and time are within the validity period given in the 124 * The validity period consists of two date/time values: 148 * Checks that the given date is within the certificate's 150 * certificate would be valid at the given date/time. 152 * @param date the Date to check against to see if this certificate 153 * is valid at that date/time. 156 * with respect to the {@code date} supplied. 158 * yet valid with respect to the {@code date} supplied [all...] |
/ndk/sources/host-tools/make-3.81/ |
ar.c | 77 long int datapos, long int size, long int date, int uid, int gid, int mode, char *name)); 126 long int size UNUSED, long int date, 129 return ar_name_equal (name, mem, truncated) ? date : 0; 216 long int size UNUSED, long int date UNUSED, int uid UNUSED,
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
BluetoothMapConvoContactElement.java | 21 import java.util.Date; 161 Date date = new Date(mLastActivity); local 162 return format.format(date); // Format to YYYYMMDDTHHMMSS local time 171 Date date = format.parse(lastActivity); local 172 this.mLastActivity = date.getTime();
|
/packages/apps/Camera2/ |
version.mk | 90 date_string := $$(date +%m%d%y_%H%M%S)
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
CallLogGroupBuilder.java | 119 final long firstDate = cursor.getLong(CallLogQuery.DATE); 170 final long date = cursor.getLong(CallLogQuery.DATE); local 171 groupDayGroup = getDayGroup(date, currentTime); 199 * Group cursor entries by date, with only one entry per group. This is used for listing 220 getDayGroup(cursor.getLong(CallLogQuery.DATE), currentTime)); 268 * Given a call date and the current date, determine which date group the call belongs in. 270 * @param date The call date [all...] |
/packages/apps/Email/tests/src/com/android/emailcommon/utility/ |
UtilityTest.java | 36 private void testParseDateTimesHelper(String date, int year, int month, 38 GregorianCalendar cal = Utility.parseDateTimeToCalendar(date); 59 private void testParseEmailDateTimeHelper(String date, int year, int month, 64 long timeInMillis = Utility.parseEmailDateTimeToMillis(date);
|
/packages/apps/TV/ |
version.mk | 90 # - For eng build (t=0): M.mm.bbb eng.$(USER)-hh-date-ad 97 date_string := $(shell date +%m%d%y_%H%M%S)
|
/packages/services/Car/bluetooth/bt-map-client-lib/src/com/google/android/auto/mapservice/ |
BluetoothMapMessagesListing.java | 23 import java.util.Date; 38 private Date mDateTime; 131 public Date getDate() { 135 public void setDate(Date date) { 136 mDateTime = date; 175 private String dateToString(Date date) { 178 cal.setTime(date); 181 cal.get(Calendar.DATE), cal.get(Calendar.HOUR_OF_DAY) [all...] |
/system/core/init/ |
bootchart.cpp | 70 char date[32]; local 73 strftime(date, sizeof(date), "%F %T", &now); 93 fprintf(out, "title = Boot chart for Android (%s)\n", date);
|
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/ |
X509CRLSelectorTest.java | 36 import java.util.Date; 59 private Date thisUpdate = null; 60 private Date nextUpdate = null; 66 public TestCRL(Date thisUpdate, Date nextUpdate) { 74 public void setUpdateDates(Date thisUpdate, Date nextUpdate) { 140 public Date getThisUpdate() { 144 public Date getNextUpdate() { 392 * setDateAndTime(Date dateAndTime) method testing 531 Date date = new Date(200); local 560 Date date = new Date(200); local 587 Date date = new Date(200); local [all...] |
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/ |
CalendarTest.java | 10 import java.util.Date; 123 * Test method for 'com.ibm.icu.util.Calendar.setTime(Date)' 129 Date date = cal.getTime(); local 131 cal.setTime(date); 132 assertEquals(date, cal.getTime()); 151 Date date = cal.getTime(); local 156 assertEquals(date, cal.getTime()); 186 assertEquals(15, cal.get(Calendar.DATE)); 382 Date date = cal.getTime(); local [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
DeleteEventHelper.java | 414 Time date = new Time(); local 416 date.timezone = Time.TIMEZONE_UTC; 418 date.set(mStartMillis); 419 date.second--; 420 date.normalize(false); 424 date.switchTimezone(Time.TIMEZONE_UTC); 425 eventRecurrence.until = date.format2445();
|
/libcore/ojluni/src/main/java/java/util/ |
SimpleTimeZone.java | 397 * Sets the daylight saving time start rule to a fixed date within a month. 417 * Sets the daylight saving time start rule to a weekday before or after the given date within 478 * Sets the daylight saving time end rule to a fixed date within a month. 499 * Sets the daylight saving time end rule to a weekday before or after the given date within 533 * @param date the time at which the time zone offset is found 538 public int getOffset(long date) { 539 return getOffsets(date, null); 545 int getOffsets(long date, int[] offsets) { 552 if (date >= cacheStart && date < cacheEnd) [all...] |
/external/chromium-trace/catapult/third_party/Paste/paste/util/ |
datetimeutil.py | 6 Date, Time, and Timespan Parsing Utilities 10 to provide a multi-format date/time support not unlike that found in 20 ``date`` object, or an ISO 8601 formatted date value such 24 This module always treats '/' delimiters as using US date order 56 from datetime import timedelta, time, date namespace 174 # Date Processing 211 now = date(int(y), int(m), int(d)) 220 now = date.today() 222 now = date.today( [all...] |