HomeSort by relevance Sort by last modified time
    Searched refs:date (Results 251 - 275 of 579) sorted by null

<<11121314151617181920>>

  /external/chromium/base/win/
scoped_variant.h 118 // Special setter for DATE since DATE is a double and we already have
120 void SetDate(DATE date);
scoped_variant_unittest.cc 117 DATE date; local
118 ::SystemTimeToVariantTime(&sys_time, &date);
120 var.SetDate(date);
122 EXPECT_EQ(date, V_DATE(&var));
  /external/jsilver/src/org/clearsilver/jni/
JniHdf.java 24 import java.util.Date;
213 /** Export a date to a clearsilver tree using a specified timezone */
214 public void exportDate(String hdfname, TimeZone timeZone, Date date) {
220 cal.setTime(date);
262 /** Export a date to a clearsilver tree using a specified timezone */
274 Date date = new Date((long)tt * 1000);
276 exportDate(hdfname, timeZone, date);
    [all...]
  /external/v8/test/mjsunit/
function-without-prototype.js 48 var date = new Date();
49 testPrototype(date.toString);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastListItem.java 64 mDateView = (TextView) findViewById(R.id.date);
101 // Speak the date first, then channel name, then message body
  /packages/apps/Settings/src/com/android/settings/
ZonePicker.java 211 final long date = Calendar.getInstance().getTimeInMillis(); local
227 addItem(myData, id, displayName, date);
245 List<HashMap<String, Object>> myData, String id, String displayName, long date) {
250 final int offset = tz.getOffset(date);
  /sdk/eclipse/scripts/
build_server.sh 6 # $2: Optional build number. If present, will be appended to the date qualifier.
75 # Qualifier is "v" followed by date/time in YYYYMMDDHHSS format and the optional
77 DATE=`date +v%Y%m%d%H%M`
78 QUALIFIER="$DATE"
89 # exclude date from build-zip name so it can be auto-calculated by continuous
90 # test process unless there's no build number, in which case the date is
92 ZIP_NAME="${BUILD_PREFIX}-${BUILD_NUMBER:-$DATE}.zip"
  /system/core/init/
bootchart.c 130 char date[32]; local
133 strftime(date, sizeof(date), "%x %X", &now);
152 fprintf(out, "title = Boot chart for Android ( %s )\n", date);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKKeyStore.java 27 import java.util.Date;
102 Date date = new Date(); field in class:JDKKeyStore.StoreEntry
165 Date date,
170 this.date = date;
177 Date date,
701 Date date = new Date(dIn.readLong()); local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
X509V2AttributeCertificate.java 18 import java.util.Date;
42 private Date notBefore;
43 private Date notAfter;
113 public Date getNotBefore()
118 public Date getNotAfter()
146 this.checkValidity(new Date());
150 Date date)
153 if (date.after(this.getNotAfter()))
158 if (date.before(this.getNotBefore())
    [all...]
  /external/chromium/base/third_party/nspr/
prtime.cc 42 * NSPR date and time functions
171 // Date was possibly too far in the future and would overflow. Return
172 // the most future date possible (year 2038).
175 // Date was possibly too far in the past and would underflow. Return
176 // the most past date possible (year 1901).
485 * This parses a time/date string into a PRTime
488 * if the time/date string can't be parsed.
528 int date = -1; local
    [all...]
  /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...]
  /external/icu4c/i18n/unicode/
datefmt.h 11 * Date Name Description
49 * date formatting and parsing actions.
55 * To format a date for the current Locale, use one of the static factory
79 * To get specific fields of a date, you can use UFieldPosition to
91 * To format a date for a different Locale, specify it in the call to
106 * Use createDateInstance() to produce the normal date format for that country.
109 * to produce a DateFormat that formats both date and time. You can pass in
143 * the DateTimePatterns resource. There are 4 time patterns, 4 date patterns,
144 * the default date-time pattern, and 4 date-time patterns. Each block of 4 value
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
DateConstructor.cpp 79 if (numArgs == 0) // new Date() ECMA 15.9.3.3
146 DateConversionBuffer date; local
148 formatDate(ts, date);
150 return JSValue::encode(jsMakeNontrivialString(exec, date, " ", time));
  /external/webkit/Tools/Scripts/
commit-log-editor 157 my $date = "";
180 # Grab the author and the date line
182 $date = $1;
196 $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;
333 * Returns -1 if the date time information if not available.
342 Date datetime = sFormatter.parse(dateTimeString, pos);
352 * Returns -1 if the date time information if not available.
356 String date = mAttributes.get(TAG_GPS_DATESTAMP); local
358 if (date == null || time == null) return -1;
360 String dateTimeString = date + ' ' + time;
365 Date datetime = sFormatter.parse(dateTimeString, pos);
  /packages/apps/Browser/src/com/android/browser/
BrowserBackupAgent.java 114 mark.date = in.readLong();
171 values.put(Bookmarks.DATE_MODIFIED, mark.date);
178 public long date; field in class:BrowserBackupAgent.Bookmark
  /packages/apps/Calendar/src/com/android/calendar/
CalendarUtils.java 154 * Formats a date or a time range according to the local conventions.
156 * This formats a date/time range using Calendar's time zone and the
167 * @return a string containing the formatted date/time range.
171 String date; local
180 date = DateUtils.formatDateRange(context, mF, startMillis, endMillis, flags,
183 return date;
  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetProvider.java 137 final String date = Utils.formatDateRange(context, millis, millis, local
141 views.setTextViewText(R.id.date, date);
  /packages/apps/Mms/src/com/android/mms/transaction/
SendTransaction.java 97 // Update the 'date' field of the PDU right before sending it.
98 long date = System.currentTimeMillis() / 1000L; local
99 sendReq.setDate(date);
101 // Persist the new date value into database.
103 values.put(Mms.DATE, date);
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationListItem.java 85 mDateView = (TextView) findViewById(R.id.date);
191 // When there is not an error icon, the attachment icon is left of the date text.
196 attachmentLayout.addRule(RelativeLayout.LEFT_OF, R.id.date);
202 // Date
220 (hasError ? R.id.error : R.id.date));
  /frameworks/base/core/java/android/provider/
Browser.java 82 BookmarkColumns.DATE, // 3
111 BookmarkColumns.DATE,
129 * {@link SearchColumns#SEARCH}, and {@link SearchColumns#DATE}.
135 SearchColumns.DATE, // 2
401 // Select non-bookmark history, ordered by date
493 * @param begin First date to remove. If -1, all dates before end.
495 * @param end Last date to remove. If -1, all dates after begin.
501 String date = BookmarkColumns.DATE; local
507 whereClause = date + " < " + Long.toString(end)
    [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;
  /libcore/luni/src/main/java/java/text/
SimpleDateFormat.java 26 import java.util.Date;
37 * manner. Formatting turns a {@link Date} into a {@link String}, and parsing turns a
38 * {@code String} into a {@code Date}.
52 * to the ISO 8601 international standard date format.
84 * <tr> <td>{@code '}</td> <td>escape for text</td> <td>(Delimiter)</td> <td>'Date='</td> </tr>
137 * System.err.println(df.format(new Date(0)));
160 * System.err.format("%30s %s\n", format, sdf.format(new Date(0)));
162 * System.err.format("%30s %s\n", format, sdf.format(new Date(0)));
181 * This is because it's called upon to format instances of {@code Date}, which represents an
182 * absolute time in UTC. That is, {@code Date} does not carry time zone information
    [all...]

Completed in 2408 milliseconds

<<11121314151617181920>>