HomeSort by relevance Sort by last modified time
    Searched defs:date (Results 176 - 200 of 910) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/UnifiedEmail/src/com/android/mail/print/
PrintUtils.java 162 final String date = dateBuilder.formatDateTimeForPrinting(when); local
165 fromAddress == null ? "" : fromAddress.getAddress(), date,
  /prebuilts/gdb/darwin-x86/lib/python2.7/
nntplib.py 28 # xover, xgtitle, xpath, date methods by Kevan Heydon
266 def newgroups(self, date, time, file=None):
268 - date: string 'yymmdd' indicating the date
274 return self.longcmd('NEWGROUPS ' + date + ' ' + time, file)
276 def newnews(self, group, date, time, file=None):
279 - date: string 'yymmdd' indicating the date
285 cmd = 'NEWNEWS ' + group + ' ' + date + ' ' + time
475 - list: list of (art-nr, subject, poster, date,
528 def date (self): member in class:NNTP
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
nntplib.py 28 # xover, xgtitle, xpath, date methods by Kevan Heydon
266 def newgroups(self, date, time, file=None):
268 - date: string 'yymmdd' indicating the date
274 return self.longcmd('NEWGROUPS ' + date + ' ' + time, file)
276 def newnews(self, group, date, time, file=None):
279 - date: string 'yymmdd' indicating the date
285 cmd = 'NEWNEWS ' + group + ' ' + date + ' ' + time
475 - list: list of (art-nr, subject, poster, date,
528 def date (self): member in class:NNTP
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
nntplib.py 28 # xover, xgtitle, xpath, date methods by Kevan Heydon
266 def newgroups(self, date, time, file=None):
268 - date: string 'yymmdd' indicating the date
274 return self.longcmd('NEWGROUPS ' + date + ' ' + time, file)
276 def newnews(self, group, date, time, file=None):
279 - date: string 'yymmdd' indicating the date
285 cmd = 'NEWNEWS ' + group + ' ' + date + ' ' + time
475 - list: list of (art-nr, subject, poster, date,
528 def date (self): member in class:NNTP
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
nntplib.py 28 # xover, xgtitle, xpath, date methods by Kevan Heydon
266 def newgroups(self, date, time, file=None):
268 - date: string 'yymmdd' indicating the date
274 return self.longcmd('NEWGROUPS ' + date + ' ' + time, file)
276 def newnews(self, group, date, time, file=None):
279 - date: string 'yymmdd' indicating the date
285 cmd = 'NEWNEWS ' + group + ' ' + date + ' ' + time
475 - list: list of (art-nr, subject, poster, date,
528 def date (self): member in class:NNTP
    [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);
  /libcore/ojluni/src/main/java/java/util/
Date.java 42 * The class <code>Date</code> represents a specific instant
45 * Prior to JDK&nbsp;1.1, the class <code>Date</code> had two additional
48 * of date strings. Unfortunately, the API for these functions was not
52 * parse date strings.
53 * The corresponding methods in <code>Date</code> are deprecated.
55 * Although the <code>Date</code> class is intended to reflect
79 * corrections applied. There are other time and date systems as
94 * In all methods of class <code>Date</code> that accept or return
95 * year, month, date, hours, minutes, and seconds values, the
102 * <li>A date (day of month) is represented by an integer from 1 to 3
1045 BaseCalendar.Date date = normalize(); local
1137 BaseCalendar.Date date = local
    [all...]
  /bionic/libc/bionic/
time64.c 196 Time64_T timegm64(const struct TM *date) {
200 Year orig_year = (Year)date->tm_year;
231 days += julian_days_by_month[IS_LEAP(orig_year)][date->tm_mon];
232 days += date->tm_mday - 1;
236 seconds += date->tm_hour * 60 * 60;
237 seconds += date->tm_min * 60;
238 seconds += date->tm_sec;
488 struct TM date; local
497 /* Have to make the year safe in date else it won't fit in safe_date */
498 date = *input_date
780 struct TM date; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
iso_fs.h 172 char date[ISODCL(19, 25)]; member in struct:iso_directory_record
  /cts/tests/tests/calllog/src/android/calllog/cts/
CallLogBackupTest.java 71 CallLog.Calls.DATE,
93 long date; field in class:CallLogBackupTest.Call
197 assertEquals(CALL_START_TIME, call.date);
275 values.put(Calls.DATE, Long.valueOf(CALL_START_TIME));
308 call.date = cursor.getLong(cursor.getColumnIndex(Calls.DATE));
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyGenParameterSpecTest.java 29 import java.util.Date;
37 private static final Date DEFAULT_CERT_NOT_BEFORE = new Date(0L); // Jan 1 1970
38 private static final Date DEFAULT_CERT_NOT_AFTER = new Date(2461449600000L); // Jan 1 2048
74 Date certNotBeforeDate = new Date(System.currentTimeMillis());
75 Date certNotAfterDate = new Date(System.currentTimeMillis() + 12345678);
76 Date keyValidityStartDate = new Date(System.currentTimeMillis() - 2222222)
144 Date date = new Date(System.currentTimeMillis() + 555555); local
    [all...]
KeyProtectionTest.java 26 import java.util.Date;
55 Date keyValidityStartDate = new Date(System.currentTimeMillis() - 2222222);
56 Date keyValidityEndDateForOrigination = new Date(System.currentTimeMillis() + 11111111);
57 Date keyValidityEndDateForConsumption = new Date(System.currentTimeMillis() + 33333333);
95 Date date = new Date(System.currentTimeMillis() + 555555) local
    [all...]
  /development/ndk/platforms/android-21/include/linux/
iso_fs.h 172 char date [ISODCL (19, 25)]; member in struct:iso_directory_record
  /external/ImageMagick/coders/
ps3.c 818 date[MagickPathExtent],
812 date[MagickPathExtent], local
    [all...]
  /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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/manager/
sdbmanager.py 29 from datetime import datetime, date, time namespace
68 date: (self.encode_date, self.decode_date),
289 return date(int(value[0]), int(value[1]), int(value[2]))
301 return date(int(value[0]), int(value[1]), int(value[2]))
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
BuildResults.java 33 String date; field in class:BuildResults
95 * Compare build results using the date of the build.
151 * Returns the date of the build which is a part of its name.
153 * @return The date of the build as yyyyMMddHHmm
156 if (this.date == null) {
159 this.date = this.name.substring(length-12, length);
164 this.date = this.name.substring(1, 9)+this.name.substring(10, 14);
166 this.date = this.name.substring(1);
169 int length = this.name.length() - 12 /* length of date */;
174 this.date = substring; // if no exception is raised then the substring has a correct date format => store i
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CalendarAstronomer.java 11 import java.util.Date;
24 * object has a <code>time</code> property that determines the date
164 // cal.set(cal.DATE, 1);
171 // cal.set(cal.DATE, 1);
172 // cal.add(cal.DATE, -1);
199 * the current date and time.
208 * the specified date and time.
211 public CalendarAstronomer(Date d) {
220 * @see java.util.Date#getTime()
230 * date and time
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
RuleBasedTimeZone.java 11 import java.util.Date;
117 public void getOffsetFromLocal(long date,
119 getOffset(date, true, nonExistingTimeOpt, duplicatedTimeOpt, offsets);
139 public boolean inDaylightTime(Date date) {
141 getOffset(date.getTime(), false, offsets);
342 Date start0 = finalRules[0].getNextStart(base,
344 Date start1 = finalRules[1].getNextStart(base,
415 Date start0 = finalRules[0].getPreviousStart(base,
417 Date start1 = finalRules[1].getPreviousStart(base
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatRegressionTestJ.java 17 import java.util.Date;
63 Date d = new Date(1002705212906L);
80 Date someDate = new Date();
132 Date d = cal.getTime();
144 Date d = new Date(1002705212231L);
172 Date d = fmt.parse("01/22/92 04:52:00 GMT", p0);
182 Date today = cal.getTime()
263 Date date = sdf.parse(TIME_STRING); local
    [all...]
  /external/icu/icu4c/source/test/perf/DateFmtPerf/
DateFmtPerf.h 167 UDate date; local
186 date = cal->getTime(status2);
191 // Format the date
193 fmt->format(date, str, status2);
196 // Display the formatted date string
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
CalendarPanel.java 16 import java.util.Date;
53 public void setDate(Date date) {
54 fStartOfMonth = date;
76 Date date = (fCalendar[index] == null) ? new Date() local
80 fCalendar[index].setTime(date);
95 public Date firstOfMonth() {
99 private Date startOfMonth(Date dateInMonth
308 int date = fCalendar[i].get(Calendar.DATE); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CalendarAstronomer.java 10 import java.util.Date;
23 * object has a <code>time</code> property that determines the date
162 // cal.set(cal.DATE, 1);
169 // cal.set(cal.DATE, 1);
170 // cal.add(cal.DATE, -1);
197 * the current date and time.
206 * the specified date and time.
209 public CalendarAstronomer(Date d) {
218 * @see java.util.Date#getTime()
228 * date and time
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
RuleBasedTimeZone.java 10 import java.util.Date;
124 public void getOffsetFromLocal(long date,
126 getOffset(date, true, nonExistingTimeOpt, duplicatedTimeOpt, offsets);
150 public boolean inDaylightTime(Date date) {
152 getOffset(date.getTime(), false, offsets);
364 Date start0 = finalRules[0].getNextStart(base,
366 Date start1 = finalRules[1].getNextStart(base,
439 Date start0 = finalRules[0].getPreviousStart(base,
441 Date start1 = finalRules[1].getPreviousStart(base
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatRegressionTestJ.java 16 import java.util.Date;
59 Date d = new Date(1002705212906L);
76 Date someDate = new Date();
128 Date d = cal.getTime();
140 Date d = new Date(1002705212231L);
168 Date d = fmt.parse("01/22/92 04:52:00 GMT", p0);
178 Date today = cal.getTime()
259 Date date = sdf.parse(TIME_STRING); local
    [all...]

Completed in 681 milliseconds

1 2 3 4 5 6 78 91011>>