HomeSort by relevance Sort by last modified time
    Searched refs:date (Results 76 - 100 of 1610) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/cookie/
Cookie.java 4 * $Date: 2007-09-22 03:56:04 -0700 (Sat, 22 Sep 2007) $
34 import java.util.Date;
81 * Returns the expiration {@link Date} of the cookie, or <tt>null</tt>
86 * @return Expiration {@link Date}, or <tt>null</tt>.
88 Date getExpiryDate();
137 * @param date Current time
141 boolean isExpired(final Date date);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
YMDDateFormatter.java 12 import java.util.Date;
19 * A DateFormatter that formats the requested date fields.
60 * Returns a string representing the formatted date.
61 * @param date the date in milliseconds
63 public String format(long date) {
64 return format(new Date(date));
68 * Returns a string representing the formatted date.
69 * @param date the dat
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
DateRule.java 11 import java.util.Date;
17 * DateRule is an interface for calculating the date of an event.
30 * that is on or after the given start date.
32 * @param start Only occurrances on or after this date are returned.
34 * @return The date on which this event occurs, or null if it
35 * does not occur on or after the start date.
40 abstract public Date firstAfter(Date start);
44 * that is on or after the given start date and before the given
45 * end date
    [all...]
CECalendar.java 10 import java.util.Date;
118 * Constructs a <code>CECalendar</code> with the given date set
126 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
128 protected CECalendar(int year, int month, int date) {
130 this.set(year, month, date);
134 * Constructs a <code>CECalendar</code> with the given date set
137 * @param date The date to which the new calendar is set
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
YMDDateFormatter.java 11 import java.util.Date;
18 * A DateFormatter that formats the requested date fields.
58 * Returns a string representing the formatted date.
59 * @param date the date in milliseconds
61 public String format(long date) {
62 return format(new Date(date));
66 * Returns a string representing the formatted date.
67 * @param date the dat
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DateRule.java 10 import java.util.Date;
16 * DateRule is an interface for calculating the date of an event.
29 * that is on or after the given start date.
31 * @param start Only occurrances on or after this date are returned.
33 * @return The date on which this event occurs, or null if it
34 * does not occur on or after the start date.
40 abstract public Date firstAfter(Date start);
44 * that is on or after the given start date and before the given
45 * end date
    [all...]
CECalendar.java 9 import java.util.Date;
117 * Constructs a <code>CECalendar</code> with the given date set
125 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
127 protected CECalendar(int year, int month, int date) {
129 this.set(year, month, date);
133 * Constructs a <code>CECalendar</code> with the given date set
136 * @param date The date to which the new calendar is set
    [all...]
  /external/selinux/scripts/
release 3 DEST=../selinux-$(date '+%Y%m%d')
6 git tag -a $(date '+%Y%m%d') -m "Release $(date '+%Y%m%d')"
26 echo "## Release $(date '+%Y-%m-%d')"
30 echo -n "[$i](https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/$(date '+%Y%m%d')/$i) "
  /external/shflags/bin/
continuous_build.sh 55 # Function to give the current date in ISO format
62 date -u '+%Y%m%dT%H%M%SZ'
96 date=`isodate`
97 echo "building ${VERSIONS_OS_NAME}-${VERSIONS_OS_RELEASE} @ ${date}"
98 outputFileDated="${FLAGS_output}-${date}"
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Invoice.java 22 public String date; // date field in class:Invoice
  /external/tlsdate/tests/
common.sh 51 date +%s > "$(mydir)"/"$1"
  /external/vboot_reference/utility/
tpm-dad-lock 26 before=$(date +%s)
41 after=$(date +%s)
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthAdapter.java 17 package com.android.datetimepicker.date;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/ui/
DateTileView.java 32 * Displays a date in a square tile.
87 public void setDate(SimpleDate date) {
88 setDate(date.getDay(), date.getMonth(), date.getYear());
91 public void setDate(int date, int month, int year) {
92 if (date != mDate) {
93 mDate = date;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
TimestampTagTest.java 19 import java.util.Date;
48 getText("date (00:00:00Z): 2002-12-14", "date (00:00:00Z)"));
62 assertTrue(getMapValue("canonical: !!timestamp 2001-12-15T02:59:43.1Z", "canonical") instanceof Date);
67 "canonical") instanceof Date);
74 Date date = cal.getTime(); local
75 String output = dump(date);
83 Date date = cal.getTime() local
91 Date date = (Date) getMapValue(yaml, key); local
109 Date date = (Date) getMapValue("Time: 2001-11-23 15:01:42 -5", "Time"); local
117 java.sql.Date date = new java.sql.Date(1000000000000L); local
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
GuidedDatePickerAction.java 24 * Subclass of GuidedAction that can choose a date. The Action is editable by default; to make it
51 * Sets format of date Picker or null for default. The format is a case insensitive String
54 * @param format Format of showing Date, e.g. "YMD".
63 * Sets a Date for date picker in milliseconds since January 1, 1970 00:00:00 in
67 public B date(long date) { method in class:GuidedDatePickerAction.BuilderBase
68 mDate = date;
73 * Sets minimal Date for date picker in milliseconds since January 1, 1970 00:00:00 i
    [all...]
  /external/libchrome/base/time/
time_mac.cc 170 CFGregorianDate date; local
171 date.second = exploded.second +
173 date.minute = exploded.minute;
174 date.hour = exploded.hour;
175 date.day = exploded.day_of_month;
176 date.month = exploded.month;
177 date.year = exploded.year;
181 CFAbsoluteTime seconds = CFGregorianDateGetAbsoluteTime(date, time_zone) +
199 CFGregorianDate date = CFAbsoluteTimeGetGregorianDate(seconds, time_zone); local
203 exploded->year = date.year
    [all...]
  /external/v8/test/intl/date-format/
parse-MMMdy.js 28 // Testing v8Parse method for date and time pattern.
41 var date = dtf.v8Parse('Feb 4, 1974'); variable
42 assertEquals(1974, date.getUTCFullYear());
43 assertEquals(1, date.getUTCMonth());
44 assertEquals(4, date.getUTCDate());
47 date = dtf.v8Parse('Feb 4 1974');
48 assertEquals(1974, date.getUTCFullYear());
49 assertEquals(1, date.getUTCMonth());
50 assertEquals(4, date.getUTCDate());
56 date = dtf.v8Parse('2/4/1974')
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/javax/security/cert/
X509CertificateTest.java 29 import java.util.Date;
165 Date date = new Date(); local
166 Date nb_date = tbt_cert.getNotBefore();
167 Date na_date = tbt_cert.getNotAfter();
171 date.compareTo(na_date) > 0);
173 date.compareTo(nb_date) < 0);
176 date.compareTo(na_date) > 0);
179 date.compareTo(nb_date) < 0)
192 Date[] date = new Date[4]; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
lifecycle.py 100 :ivar date: The date when the object will expire. Must be
103 def __init__(self, days=None, date=None):
105 self.date = date
113 elif name == 'Date':
114 self.date = value
118 how_long = "on: %s" % self.date
127 elif self.date is not None:
128 s += '<Date>%s</Date>' % self.dat
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CurrencyMetaInfo.java 12 import java.util.Date;
22 * inclusive. The date information used by CurrencyInfo and CurrencyFilter
88 * The from date to filter on (as milliseconds). Accepts any currency on or after this date.
93 * The to date to filter on (as milliseconds). Accepts any currency on or before this date.
126 * Returns a filter that accepts all currencies in use as of the current date.
128 * @see #withDate(Date)
131 return ALL.withDate(new Date());
155 * Returns a filter that accepts all currencies in use on the given date
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CurrencyMetaInfo.java 11 import java.util.Date;
21 * inclusive. The date information used by CurrencyInfo and CurrencyFilter
92 * The from date to filter on (as milliseconds). Accepts any currency on or after this date.
98 * The to date to filter on (as milliseconds). Accepts any currency on or before this date.
133 * Returns a filter that accepts all currencies in use as of the current date.
135 * @see #withDate(Date)
139 return ALL.withDate(new Date());
165 * Returns a filter that accepts all currencies in use on the given date
    [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...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
PersianTest.java 9 import java.util.Date;
91 Date date = grego.getTime(); local
92 cal.setTime(date);
100 buf.append(date + " -> ");
112 Date dexp = grego.getTime();
120 Date date = cal.getTime(); local
123 buf.append(" -> " + date);
124 if (date.equals(dexp))
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
PersianTest.java 8 import java.util.Date;
87 Date date = grego.getTime(); local
88 cal.setTime(date);
96 buf.append(date + " -> ");
108 Date dexp = grego.getTime();
116 Date date = cal.getTime(); local
119 buf.append(" -> " + date);
120 if (date.equals(dexp))
    [all...]

Completed in 1157 milliseconds

1 2 34 5 6 7 8 91011>>