Searched defs:date (Results 101 - 125 of 283) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/i18n/unicode/
H A Dsimpletz.h275 * the exact starting date. Their exact meaning depend on their respective signs,
319 * the exact starting date. Their exact meaning depend on their respective signs,
361 * Sets the DST start rule to a fixed date within a month.
364 * @param dayOfMonth The date in that month (1-based).
374 * Sets the DST start rule to a fixed date within a month.
377 * @param dayOfMonth The date in that month (1-based).
390 * Sets the DST start rule to a weekday before or after a give date within
394 * @param dayOfMonth A date within that month (1-based).
408 * Sets the DST start rule to a weekday before or after a give date within
412 * @param dayOfMonth A date withi
919 getOffset(UDate date, UBool local, int32_t& rawOffsetRef, int32_t& dstOffsetRef, UErrorCode& ec) const argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dvzone.cpp130 vzone_getOffset3(VZone* zone, UDate date, UBool local, int32_t& rawOffset, argument
132 return ((VTimeZone*)zone)->VTimeZone::getOffset(date, local, rawOffset, dstOffset, ec);
151 vzone_inDaylightTime(VZone* zone, UDate date, UErrorCode& status) { argument
152 return ((VTimeZone*)zone)->VTimeZone::inDaylightTime(date, status);
H A Dbasictz.cpp130 BasicTimeZone::getSimpleRulesNear(UDate date, InitialTimeZoneRule*& initial, argument
148 avail = getNextTransition(date, FALSE, tr);
155 // within roughly 1 year from the specified date
159 && (date + MILLIS_PER_YEAR > nextTransitionTime)) {
201 // Make sure this rule can be applied to the specified date
202 avail = ar2->getPreviousStart(date, tr.getFrom()->getRawOffset(), tr.getFrom()->getDSTSavings(), TRUE, d);
203 if (!avail || d > date
215 avail = getPreviousTransition(date, TRUE, tr);
234 // Check if this rule start after the first rule after the specified date
235 avail = ar2->getNextStart(date, t
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcdtdptst.c62 log_data_err("FAIL: Error in creating a date format using udat_openPattern %s - (Are you missing data?)\n",
121 /* this is supposed to open default date format, but later on it treats it like it is "en_US"
159 UDate date; local
170 date = udat_parse(format, str, u_strlen(str), &pos, &status);
171 if(U_FAILURE(status) || date == null) {
177 f=myDateFormat(format, date);
179 if (expected == null || date != expected)
205 log_data_err("FAIL: Error in date format construction with pattern: %s - (Are you missing data?)\n", myErrorName(status));
236 UChar *date; local
241 log_data_err("Error in constructing the date forma
[all...]
/external/icu/icu4c/source/test/intltest/
H A Ddadrfmt.cpp76 * Headers { "locale", "zone", "spec", "date", "str"}
80 // date: either an unsigned long (millis), or a calendar spec ERA=0,YEAR=1, etc.. applied to the calendar type specified by the locale
146 UnicodeString date = currentCase->getString("date", status); local
148 errln("case %d: No 'date' line.", n);
194 // parse 'date'
195 if(date.startsWith(kMILLIS)) {
196 UnicodeString millis = UnicodeString(date, kMILLIS.length());
199 } else if(date.startsWith(kRELATIVE_MILLIS)) {
200 UnicodeString millis = UnicodeString(date, kRELATIVE_MILLI
[all...]
H A Ddtifmtts.cpp281 dataerrln("ERROR: format non-date-interval object should set U_ILLEGAL_ARGUMENT_ERROR - exitting");
292 dataerrln("ERROR: format date interval failed - exitting");
304 dataerrln("ERROR: format date interval failed - exitting");
400 // first item is date pattern
413 // test skeleton with both date and time
1067 sprintf(mesg, "original date: %s - %s\n", datestr, datestr_2);
1070 UDate date = ref.parse(ctou(datestr), ec); local
1074 DateInterval dtitv(date, date_2);
1089 sprintf(mesg, "interval date: %s\n", result);
1108 // first item is date patter
1279 UDate date = ref.parse(ctou(datestr), ec); local
1441 UDate date = ref.parse(ctou(datestr), ec); local
[all...]
/external/icu/icu4c/source/test/perf/DateFmtPerf/
H A DDateFmtPerf.h166 UDate date; local
185 date = cal->getTime(status2);
190 // Format the date
192 fmt->format(date, str, status2);
195 // Display the formatted date string
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
H A DJHdf.java150 public void exportDate(String hdfName, TimeZone timeZone, Date date) { argument
/external/jsilver/src/org/clearsilver/
H A DDelegatedHdf.java123 String hdfname, TimeZone timeZone, Date date) {
124 getHdf().exportDate(hdfname, timeZone, date);
122 exportDate( String hdfname, TimeZone timeZone, Date date) argument
H A DHDF.java97 * Export a date to a clearsilver tree using a specified timezone
99 void exportDate(String hdfName, TimeZone timeZone, Date date); argument
102 * Export a date to a clearsilver tree using a specified timezone
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTime.java349 * Create an instance of this date formatting class
359 * Create an instance of this date formatting class
370 * Format the date according to the strftime-style string given in the constructor.
372 * @param date the date to format
373 * @return the formatted date
375 public String format(Date date) { argument
376 return simpleDateFormat.format(date);
467 * @param pattern The date/time pattern
/external/sfntly/cpp/src/sfntly/data/
H A Dwritable_font_data.cc152 int32_t WritableFontData::WriteDateTime(int32_t index, int64_t date) { argument
153 WriteULong(index, (date >> 32) & 0xffffffff);
154 WriteULong(index + 4, date & 0xffffffff);
/external/sfntly/cpp/src/sfntly/table/core/
H A Dfont_header_table.cc173 void FontHeaderTable::Builder::SetCreated(int64_t date) { argument
174 InternalWriteData()->WriteDateTime(Offset::kCreated, date);
181 void FontHeaderTable::Builder::SetModified(int64_t date) { argument
182 InternalWriteData()->WriteDateTime(Offset::kModified, date);
/external/smack/src/org/jivesoftware/smackx/packet/
H A DStreamInitiation.java172 * <li>date: The last modification time of the file. This is specified
213 private Date date; field in class:StreamInitiation.File
271 * Sets the date that the file was last modified.
273 * @param date The date that the file was last modified.
275 public void setDate(Date date) { argument
276 this.date = date;
280 * Returns the date that the file was last modified.
282 * @return Returns the date tha
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/
H A DBcKeyStoreSpi.java102 Date date = new Date(); field in class:BcKeyStoreSpi.StoreEntry
165 Date date,
170 this.date = date;
177 Date date,
183 this.date = date;
330 return date;
694 Date date = new Date(dIn.readLong());
713 table.put(alias, new StoreEntry(alias, date, CERTIFICAT
163 StoreEntry( String alias, Date date, int type, Object obj) argument
175 StoreEntry( String alias, Date date, int type, Object obj, Certificate[] certChain) argument
[all...]
/external/chromium_org/chrome/browser/web_resource/
H A Dnotification_promo.cc230 if (promo->GetList("date", &date_list)) {
231 const base::DictionaryValue* date; local
232 if (date_list->GetDictionary(0, &date)) {
235 if (date->GetString("start", &time_str) &&
241 if (date->GetString("end", &time_str) &&
/external/chromium_org/chrome/utility/media_galleries/
H A Dimage_metadata_extractor.cc350 const std::string& ImageMetadataExtractor::date() const { function in class:metadata::ImageMetadataExtractor
/external/chromium_org/content/browser/fileapi/
H A Dfile_system_dir_url_request_job_unittest.cc260 base::Time date; local
264 EXPECT_TRUE(base::Time::FromString(date_str.c_str(), &date));
265 EXPECT_FALSE(date.is_null());
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DResourceResponse.cpp285 DEFINE_STATIC_LOCAL(const AtomicString, dateHeader, ("date", AtomicString::ConstructFromLiteral));
367 // This handles all date formats required by RFC2616:
377 double ResourceResponse::date() const function in class:blink::ResourceResponse
380 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("date", AtomicString::ConstructFromLiteral));
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DPlatformLocale.cpp66 DateTimeStringBuilder::DateTimeStringBuilder(Locale& localizer, const DateComponents& date) argument
68 , m_date(date)
219 // Converts a string like "Week $2, $1" to an LDML date format pattern like
390 String Locale::formatDateTime(const DateComponents& date, FormatType formatType) argument
392 if (date.type() == DateComponents::Invalid)
395 DateTimeStringBuilder builder(*this, date);
396 switch (date.type()) {
/external/chromium_org/third_party/icu/source/i18n/
H A Dbasictz.cpp130 BasicTimeZone::getSimpleRulesNear(UDate date, InitialTimeZoneRule*& initial, argument
148 avail = getNextTransition(date, FALSE, tr);
155 // within roughly 1 year from the specified date
159 && (date + MILLIS_PER_YEAR > nextTransitionTime)) {
201 // Make sure this rule can be applied to the specified date
202 avail = ar2->getPreviousStart(date, tr.getFrom()->getRawOffset(), tr.getFrom()->getDSTSavings(), TRUE, d);
203 if (!avail || d > date
215 avail = getPreviousTransition(date, TRUE, tr);
234 // Check if this rule start after the first rule after the specified date
235 avail = ar2->getNextStart(date, t
[all...]
H A Dindiancal.cpp136 * Returns the Julian Day corresponding to gregorian date
140 * @param date The date in Gregorian day in month
142 static double gregorianToJD(int32_t year, int32_t month, int32_t date) { argument
152 date);
196 static double IndianToJD(int32_t year, int32_t month, int32_t date) { argument
213 jd = start + (date - 1);
229 jd += date - 1;
294 int32_t gregorianYear; // Stores gregorian date corresponding to Julian day;
297 gregorianYear = jdToGregorian(julianDay, gd)[0]; // Gregorian date fo
[all...]
H A Dtznames.cpp111 UnicodeString& getMetaZoneID(const UnicodeString& tzID, UDate date, UnicodeString& mzID) const;
257 TimeZoneNamesDelegate::getMetaZoneID(const UnicodeString& tzID, UDate date, UnicodeString& mzID) const { argument
258 return fTZnamesCacheEntry->names->getMetaZoneID(tzID, date, mzID);
303 TimeZoneNames::getDisplayName(const UnicodeString& tzID, UTimeZoneNameType type, UDate date, UnicodeString& name) const { argument
307 getMetaZoneID(tzID, date, mzID);
H A Dwindtfmt.cpp80 // Get proper date time format
170 UnicodeString *date = new UnicodeString(); local
175 formatDate(&st_local, *date);
179 timeDateArray[1].adoptString(date);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ddtfmtrtts.cpp98 UDate date[] = {-55018555891590.05, 0, 0}; local
101 fmt.format(date[0], result[0]);
102 date[1] = fmt.parse(result[0], status);
103 fmt.format(date[1], result[1]);
104 date[2] = fmt.parse(result[1], status);
106 /* This test case worked OK by accident before. date[1] != date[0],
108 * (date[0] is in year 1926, date[1] is in year 2026.) result[1] set
111 * America/Los_Angeles. When this is parsed, date[
[all...]

Completed in 401 milliseconds

1234567891011>>