HomeSort by relevance Sort by last modified time
    Searched refs:date (Results 51 - 75 of 1211) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/i18n/
datefmt.cpp 11 * Date Name Description
117 // if the type of the Formattable is double or long, treat it as if it were a Date
118 UDate date = 0;
122 date = obj.getDate();
125 date = (UDate)obj.getDouble();
128 date = (UDate)obj.getLong();
139 return format(date, appendTo, fieldPosition);
152 // if the type of the Formattable is double or long, treat it as if it were a Date
153 UDate date = 0;
157 date = obj.getDate()
    [all...]
windtfmt.h 55 UnicodeString& format(UDate date, UnicodeString& appendTo) const;
60 * Set the calendar to be used by this date format. Initially, the default
70 * Set the calendar to be used by this date format. Initially, the default
139 inline UnicodeString &Win32DateFormat::format(UDate date, UnicodeString& appendTo) const {
140 return DateFormat::format(date, appendTo);
  /external/chromium_org/third_party/openssl/openssl/apps/
version.c 143 int cflags=0,version=0,date=0,options=0,platform=0,dir=0; local
157 date=1;
167 date=version=cflags=options=platform=dir=1;
189 if (date) printf("%s\n",SSLeay_version(SSLEAY_BUILT_ON));
  /external/openssl/apps/
version.c 143 int cflags=0,version=0,date=0,options=0,platform=0,dir=0; local
157 date=1;
167 date=version=cflags=options=platform=dir=1;
189 if (date) printf("%s\n",SSLeay_version(SSLEAY_BUILT_ON));
  /external/smack/src/org/xbill/DNS/
FormattedTime.java 31 * Converts a Date into a formatted string.
32 * @param date The Date to convert.
36 format(Date date) {
40 c.setTime(date);
51 * Parses a formatted time string into a Date.
53 * @return The Date object.
56 public static Date
67 int date = Integer.parseInt(s.substring(6, 8)) local
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleDayPickerView.java 17 package com.android.datetimepicker.date;
  /hardware/intel/img/libdrm/tests/
getversion.c 41 assert(strlen(v->date) != 0);
  /external/apache-http/src/org/apache/http/impl/client/
BasicCookieStore.java 4 * $Date: 2008-05-03 03:39:28 -0700 (Sat, 03 May 2008) $
36 import java.util.Date;
94 if (!cookie.isExpired(new Date())) {
130 * that have expired by the specified {@link java.util.Date date}.
134 * @see Cookie#isExpired(Date)
136 public synchronized boolean clearExpired(final Date date) {
137 if (date == null) {
142 if (it.next().isExpired(date)) {
    [all...]
  /external/icu/icu4c/source/i18n/
windtfmt.h 55 UnicodeString& format(UDate date, UnicodeString& appendTo) const;
60 * Set the calendar to be used by this date format. Initially, the default
69 * Set the calendar to be used by this date format. Initially, the default
130 inline UnicodeString &Win32DateFormat::format(UDate date, UnicodeString& appendTo) const {
131 return DateFormat::format(date, appendTo);
  /external/icu/icu4c/source/samples/datefmt/answers/
main_2.cpp 42 UDate date; local
44 // The languages in which we will display the date
66 date = cal->getTime(status);
72 // Create a formatter for DATE
75 // Format the date
77 fmt->format(date, str, status);
79 // Display the formatted date string
80 printf("Date (%s): ", LANGUAGE[i]);
main_3.cpp 42 UDate date; local
44 // The languages in which we will display the date
66 date = cal->getTime(status);
72 // Create a formatter for DATE and TIME
81 // Format the date
83 fmt->format(date, str, status);
85 // Display the formatted date string
86 printf("Date (%s, %s): ", LANGUAGE[i], TIMEZONE[j]);
  /external/icu/icu4c/source/samples/datefmt/
main.cpp 42 UDate date; local
44 // The languages in which we will display the date
66 date = cal->getTime(status);
72 // Create a formatter for DATE and TIME
81 // Format the date
83 fmt->format(date, str, status);
85 // Display the formatted date string
86 printf("Date (%s, %s): ", LANGUAGE[i], TIMEZONE[j]);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 35 Date = datetime.date
42 return Date(*time.localtime(ticks)[:3])
63 return datetime.date(*map(int, val.split("-")))
79 register_adapter(datetime.date, adapt_date)
81 register_converter("date", convert_date)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 35 Date = datetime.date
42 return Date(*time.localtime(ticks)[:3])
63 return datetime.date(*map(int, val.split("-")))
79 register_adapter(datetime.date, adapt_date)
81 register_converter("date", convert_date)
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
MonthPicker.java 32 // initialize to current date
38 * Creates a date object from the |value| which is months since epoch.
56 Calendar date = Calendar.getInstance(TimeZone.getTimeZone("UTC")); local
57 date.set(year, month, 1);
58 if (date.before(getMinDate())) {
60 } else if (date.after(getMaxDate())) {
63 setCurrentDate(date);
  /external/chromium_org/media/tools/layout_tests/
test_expectations_history.py 61 A list of tuples (old_rev, new_rev, author, date, message, lines). The
75 pysvn.opt_revision_kind.date, start),
77 pysvn.opt_revision_kind.date, end))
87 pysvn.opt_revision_kind.date, goback_start),
89 pysvn.opt_revision_kind.date, start)))
122 # Needs to convert to normal date string for presentation.
126 logs[i + 1].date).strftime('%Y-%m-%d %H:%M:%S'),
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
DateInputType.cpp 68 return InputTypeNames::date;
85 bool DateInputType::setMillisecondToDateComponents(double value, DateComponents* date) const
87 ASSERT(date);
88 return date->setMillisecondsSinceEpochForDate(value);
105 void DateInputType::setupLayoutParameters(DateTimeEditElement::LayoutParameters& layoutParameters, const DateComponents& date) const
  /external/pdfium/fpdfsdk/src/javascript/
JS_Value.cpp 222 void CJS_Value::operator = (CJS_Date & date)
224 m_pValue = JS_NewDate(m_isolate, (double)date);
275 FX_BOOL CJS_Value::ConvertToDate(CJS_Date &date) const
279 // date = (double)(*this);
285 date.Attach(m_pValue);
433 void CJS_PropValue::operator>>(CJS_Date &date) const
436 ConvertToDate(date);
439 void CJS_PropValue::operator<<(CJS_Date &date)
442 CJS_Value::operator=(date);
548 double date = MakeDate(iYear,GetMonth(),GetDay(),GetHours(),GetMinutes(),GetSeconds(),0); local
563 double date = MakeDate(GetYear(),iMonth,GetDay(),GetHours(),GetMinutes(),GetSeconds(),0); local
579 double date = MakeDate(GetYear(),GetMonth(),iDay,GetHours(),GetMinutes(),GetSeconds(),0); local
594 double date = MakeDate(GetYear(),GetMonth(),GetDay(),iHours,GetMinutes(),GetSeconds(),0); local
608 double date = MakeDate(GetYear(),GetMonth(),GetDay(),GetHours(),minutes,GetSeconds(),0); local
622 double date = MakeDate(GetYear(),GetMonth(),GetDay(),GetHours(),GetMinutes(),seconds,0); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarViewAdapter.java 49 // Day view: show day of the week + full date underneath
52 // Agenda view: show day of the week + full date underneath
66 // The current selected event's time, used to calculate the date and day of the week
76 private final boolean mShowDate; // Spinner mode indicator (view name or view name with date)
119 // Sets a thread to run 1 second after midnight and update the current date
120 // This is used to display correctly the date of yesterday/today/tomorrow
180 TextView date = (TextView) v.findViewById(R.id.top_button_date); local
186 date.setText(buildFullDate());
195 date.setText(buildMonthYearDate());
199 date.setText(buildMonthYearDate())
263 TextView date = (TextView)v.findViewById(R.id.button_date); local
347 String date = DateUtils.formatDateRange(mContext, mFormatter, mMilliTime, mMilliTime, local
354 String date = DateUtils.formatDateRange( local
366 String date = DateUtils.formatDateRange(mContext, mFormatter, mMilliTime, mMilliTime, local
373 String date = DateUtils.formatDateRange( local
414 String date = DateUtils.formatDateRange(mContext, mFormatter, weekStartTime, local
    [all...]
EventGeometry.java 48 public boolean computeEventRect(int date, int left, int top, int cellWidth, Event event) {
57 if (startDay > date || endDay < date) {
66 if (startDay < date) {
72 if (endDay > date) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
SimpleDateFormatTest.java 26 import java.util.Date;
59 assertTrue("Doesn't work", f2.format(new Date()).getClass() == String.class);
69 assertTrue("Doesn't work", f2.format(new Date()).getClass() == String.class);
73 new SimpleDateFormat("this is an invalid simple date format");
97 assertTrue("Doesn't work", f2.format(new Date()).getClass() == String.class);
120 assertTrue("Doesn't work", f2.format(new Date()).getClass() == String.class);
202 // Date date = clone.get2DigitYearStart();
203 // date.setTime(0);
204 // assertTrue("Equal after date change: "
510 Date date = f1.get2DigitYearStart(); local
638 Date date = df.parse(output); local
    [all...]
  /external/icu/icu4c/source/samples/dtptngsample/
dtptngsample.cpp 20 u_printf(" Use DateTimePatternGenerator to create customized date/time pattern:\n");
46 UDate date = cal->getTime(status); local
58 // Get the format of the given date
59 sdf->format(date,dateReturned,status);
86 UDate date = cal->getTime(status); local
94 dateReturned = sdf->format(date, dateReturned, status);
98 u_printf("%s\n", "Date Time in new Pattern: ");
108 Date Time in new Pattern: 13. von octobre 23:58
127 UDate date = cal->getTime(status); local
136 dateReturned = sdf->format(date, dateReturned, status)
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/
WeekNumberTest.java 33 public Time date; field in class:WeekNumberTest.DateAndWeekNumber
38 date = new Time();
41 date.set(0, 0, 0, day, month, year);
42 date.normalize(true /* ignore isDst */);
209 int weekNumber = test.date.getWeekNumber();
211 long millis = test.date.toMillis(false /* use isDst */);
215 + " date: " + output
223 long millis = test.date.toMillis(false /* use isDst */);
227 + " date: " + output
  /external/chromium_org/third_party/libxslt/libexslt/
date.c 2 * date.c: Implementation of the EXSLT -- Dates and Times module
5 * http://www.exslt.org/date/date.html
15 * date-format
17 * format-date
18 * parse-date
66 * types of date and/or time (from schema datatypes)
83 /* Date value */
111 exsltDateValDate date; member in union:_exsltDateVal::__anon17017
193 * @dt: pointer to a date structur
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
StreamInitiation.java 4 * $Date$
22 import java.util.Date;
172 * <li>date: The last modification time of the file. This is specified
173 * using the DateTime profile as described in Jabber Date and Time Profiles.</li>
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) {
    [all...]

Completed in 656 milliseconds

1 23 4 5 6 7 8 91011>>