HomeSort by relevance Sort by last modified time
    Searched refs:date (Results 201 - 225 of 414) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/icu4c/i18n/
gregocal.cpp 11 * Date Name Description
17 * week-based date determination. Removed quetionable
30 * 10/15/99 aliu Fixed j32, cannot set date to Feb 29 2000 AD.
55 * Note that the Julian date used here is not a true Julian date, since
220 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date,
230 set(UCAL_DATE, date);
235 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date,
245 set(UCAL_DATE, date);
252 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date,
658 int32_t date = internalGet(UCAL_DATE); local
    [all...]
zstrfmt.cpp 1027 UDate date = cal.getTime(status); local
1044 UDate date = cal.getTime(status); local
1069 UDate date = cal.getTime(status); local
    [all...]
ucal.cpp 239 ucal_setGregorianChange(UCalendar *cal, UDate date, UErrorCode *pErrorCode) {
248 ((GregorianCalendar *)cpp_cal)->setGregorianChange(date, *pErrorCode);
345 int32_t date,
351 ((Calendar*)cal)->set(year, month, date);
359 int32_t date,
367 ((Calendar*)cal)->set(year, month, date, hour, minute, second);
windtfmt.cpp 80 // Get proper date time format
169 UnicodeString *date = new UnicodeString(); local
174 formatDate(&st_local, *date);
178 timeDateArray[1].adoptString(date);
  /external/icu4c/i18n/unicode/
ucal.h 39 * with the current date and time. We need to specify the type of
56 * needed to implement the date-time formatting for a particular language
122 * The date or time format strings are not part of the definition of a
130 * month up in the date <code>December 12, <b>1996</b></code> results in
134 * <code>Calendar</code> also provides a date arithmetic function for
136 * For example, subtracting 5 days from the date <code>September 12, 1996</code>
397 * the date-related fields.
601 * Get the current date and time.
603 * @return The current date and time.
726 * Sets the GregorianCalendar change date. This is the point when the switch fro
    [all...]
calendar.h 11 * Date Name Description
75 * time fields have been initialized with the current date and time:
84 * needed to implement the date-time formatting for a particular language
98 * start of the epoch: i.e., YEAR = 1970, MONTH = JANUARY, DATE = 1, etc.
146 * The date or time format strings are not part of the definition of a
154 * month up in the date <code>December 12, <b>1996</b></code> results in
158 * <code>Calendar</code> also provides a date arithmetic function for
160 * For example, subtracting 5 days from the date <code>September 12, 1996</code>
169 * Field IDs for date and time. Used to specify date/time fields. ERA is calenda
    [all...]
  /external/webkit/JavaScriptCore/runtime/
DateConstructor.cpp 80 if (numArgs == 0) // new Date() ECMA 15.9.3.3
137 DateConversionBuffer date; local
139 formatDate(ts, date);
141 return jsMakeNontrivialString(exec, date, " ", time);
DatePrototype.cpp 258 return jsNontrivialString(exec, "Invalid Date");
264 // Converts a list of arguments sent to a Date member function into milliseconds, updating
265 // ms (representing milliseconds) and t (representing the rest of the date structure) appropriately.
312 // Converts a list of arguments sent to a Date member function into years, months, and milliseconds, updating
313 // ms (representing milliseconds) and t (representing the rest of the date structure) appropriately.
343 const ClassInfo DatePrototype::info = {"Date", &DateInstance::info, 0, ExecState::dateTable};
426 return jsNontrivialString(exec, "Invalid Date");
427 DateConversionBuffer date;
429 formatDate(*gregorianDateTime, date);
431 return jsMakeNontrivialString(exec, date, " ", time)
    [all...]
  /external/webkit/WebKitTools/Scripts/
commit-log-editor 137 my $date = "";
160 # Grab the author and the date line
162 $date = $1;
176 $contents .= "Patch by $author <$email> on $date\n";
validate-committer-lists 38 from datetime import date, datetime, timedelta namespace
214 committer_cuttof = date.today() - timedelta(days=365)
220 last_commit_date = date.fromtimestamp(last_commit)
  /frameworks/base/media/java/android/media/
ExifInterface.java 22 import java.util.Date;
293 * Returns -1 if the date time information if not available.
302 Date datetime = sFormatter.parse(dateTimeString, pos);
312 * Returns -1 if the date time information if not available.
316 String date = mAttributes.get(TAG_GPS_DATESTAMP); local
318 if (date == null || time == null) return -1;
320 String dateTimeString = date + ' ' + time;
325 Date datetime = sFormatter.parse(dateTimeString, pos);
  /packages/apps/Mms/src/com/android/mms/transaction/
SendTransaction.java 100 // Update the 'date' field of the PDU right before sending it.
101 long date = System.currentTimeMillis() / 1000L; local
102 sendReq.setDate(date);
104 // Persist the new date value into database.
106 values.put(Mms.DATE, date);
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationListItem.java 92 mDateView = (TextView) findViewById(R.id.date);
206 // When there is not an error icon, the attachment icon is left of the date text.
211 attachmentLayout.addRule(RelativeLayout.LEFT_OF, R.id.date);
217 // Date
235 (hasError ? R.id.error : R.id.date));
ManageSimMessages.java 235 Long date = cursor.getLong(cursor.getColumnIndexOrThrow("date")); local
239 Sms.Inbox.addMessage(mContentResolver, address, body, null, date, true /* read */);
241 Sms.Sent.addMessage(mContentResolver, address, body, null, date);
  /packages/apps/Email/src/com/android/exchange/utility/
CalendarUtilities.java 58 import java.util.Date;
178 // Internal structure for storing a time zone date from a SYSTEMTIME structure
179 // This date represents either the start or the end time for DST
267 * @return a GregorianCalendar with the given time zone and date
293 Date date = null; local
298 date = new Date(checkTime);
299 boolean inDaylightTime = tz.inDaylightTime(date);
350 int date; field in class:CalendarUtilities.RRule
401 int date = calendar.get(Calendar.DAY_OF_MONTH); local
502 Date date = new Date(startTime); local
1301 Date date = new Date(entityValues.getAsLong(Events.DTSTART)); local
1551 Date date = new Date(entityValues.getAsLong(Events.ORIGINAL_INSTANCE_TIME)); local
    [all...]
  /frameworks/base/core/java/android/provider/
Browser.java 30 import java.util.Date;
72 BookmarkColumns.DATE, BookmarkColumns.BOOKMARK, BookmarkColumns.TITLE,
95 BookmarkColumns._ID, BookmarkColumns.DATE, };
107 SearchColumns._ID, SearchColumns.SEARCH, SearchColumns.DATE };
269 long now = new Date().getTime();
282 map.put(BookmarkColumns.DATE, now);
300 map.put(BookmarkColumns.DATE, now);
358 // Select non-bookmark history, ordered by date
364 BookmarkColumns.DATE);
468 map.put(BookmarkColumns.DATE, 0)
499 String date = BookmarkColumns.DATE; local
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
FileListingService.java 134 String date; field in class:FileListingService.FileEntry
188 * Returns the date string of the entry, as returned by <code>ls</code>.
191 return date;
461 String date = m.group(5); local
532 entry.date = date;
  /dalvik/libcore/security/src/test/java/tests/security/cert/
X509CRLSelector2Test.java 35 import java.util.Date;
342 * setDateAndTime(Date dateAndTime) method testing. Tests if CRLs with any
350 args = {java.util.Date.class}
354 TestCRL crl = new TestCRL(new Date(200), new Date(300));
358 selector.setDateAndTime(new Date(200));
361 selector.setDateAndTime(new Date(250));
364 selector.setDateAndTime(new Date(300));
367 selector.setDateAndTime(new Date(150));
370 selector.setDateAndTime(new Date(350))
523 Date date = new Date(200); local
591 Date date = new Date(200); local
623 Date date = new Date(200); local
    [all...]
  /external/icu4c/test/intltest/
calregts.cpp 202 int32_t date = cal->get(UCAL_DATE, status) + 1 ; local
204 log(UnicodeString("/") + date) ;
297 //This will print out todays date for MONTH and DAY_OF_MONTH
298 //instead of the date it was set to.
353 logln("DATE: " + Calendar::get(Calendar::DATE));
380 logln("DATE: " + Calendar::get(Calendar::DATE));
445 UDate date = fmt->parse("29MAY97", status); local
447 cal->setTime(date, status)
699 SimpleDateFormat *date; local
1267 UDate date = DATA[i]; local
1566 UDate date = makeDate(1996, UCAL_JANUARY, 3); \/\/ Arbitrary date local
2124 UDate date = cutover + local
    [all...]
dtptngts.cpp 298 UDate sampleDate=LocaleTest::date(99, 9, 13, 23, 58, 59);
354 errln("ERROR: Simple test uses full date format.");
432 UDate testDate1= LocaleTest::date(99, 0, 13, 23, 58, 59);
445 logln(UnicodeString(" Formatted date:") + rDate);
457 UDate testDate1= LocaleTest::date(99, 0, 13, 23, 58, 59);
470 logln(UnicodeString(" Formatted date:") + rDate);
508 UDate testDate= LocaleTest::date(99, 0, 13, 23, 58, 59);
546 testDate= LocaleTest::date(99, 9, 13, 23, 58, 59);
694 testDate= LocaleTest::date(99, 0, 13, 23, 58, 59);
  /build/tools/droiddoc/templates/assets/
android-developer-docs.js 124 var date = new Date();
125 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week
126 expiration = date.toGMTString();
404 var date = new Date();
405 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // keep this for 10 years
406 writeCookie("nav", nav_pref, "reference", date.toGMTString())
    [all...]
  /external/v8/src/
apinatives.js 34 var date = new $Date();
35 date.setTime(time);
36 return date;
  /packages/apps/Calendar/src/com/android/calendar/
AgendaByDayAdapter.java 131 holder.dateView = (TextView) agendaDayView.findViewById(R.id.date);
136 Time date = mTmpTime; local
137 long millis = date.setJulianDay(row.mData);
311 * @param time the date to search for
312 * @return the cursor position of the first event for that date, or zero
  /external/bluetooth/glib/
Makefile.am 139 $(MAKE) dist distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
142 $(MAKE) distcheck distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
  /external/icu4c/samples/
Makefile 22 SUBDIRS = date cal

Completed in 612 milliseconds

1 2 3 4 5 6 7 891011>>