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

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/backward/
backward_warning.h 34 may be removed without further notice at a future date. Please use a \
  /frameworks/base/core/java/android/widget/
CalendarView.java 40 import java.util.Date;
49 * can select a date by tapping on it and can scroll or fling the calendar to a
50 * desired date.
76 * The callback used to indicate the user changes the date.
183 * @param color The focused month date color.
196 * @return The focused month date color.
210 * @param color A not focused month date color.
223 * @return A not focused month date color.
290 * the end of the selected date.
304 * the end of the selected date
    [all...]
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RecurrenceProcessorTest.java 40 for (long date : dates) {
41 time.set(date);
167 throw new RuntimeException("expected last occurrence date does not match."
578 // BUG 1658567: UNTIL=date
2501 Time date = new Time(tz); local
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/tools/
print_log.py 26 fw, date, glogs = pickle.load(open(filename))
29 print prefix_spaces + 'date: ', date
  /external/bison/build-aux/
do-release-commit-and-tag 4 # the date, release-type and version string in the NEWS file. That commit
37 update in which the date, release-type and version string are
161 # Update NEWS to have today's date, plus desired version number and $type.
168 printf "version $ver\n\n* NEWS: Record release date.\n" \
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
PKIXExtendedParameters.java 10 import java.util.Date;
30 * with the {@link PKIXParameters#setDate(Date)} method, so this
31 * methods sets the Date when <em>all</em> certificates must have been
43 * {@link PKIXParameters#setDate(Date)} method sets the time, when
55 private final Date date; field in class:PKIXExtendedParameters.Builder
75 Date checkDate = baseParameters.getDate();
76 this.date = (checkDate == null) ? new Date() : checkDate;
84 this.date = baseParameters.date
199 private final Date date; field in class:PKIXExtendedParameters
    [all...]
  /external/clang/docs/
conf.py 15 from datetime import date namespace
45 copyright = u'2007-%d, The Clang Team' % date.today().year
  /external/elfutils/config/
Makefile.am 40 date +'* %a %b %e %Y' | tr '[\n]' '[ ]' > $$tmpname; \
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TimeZoneAdapter.java 14 import java.util.Date;
21 * Without this class, we would need to 'port' java.util.Date to
22 * android.icu.util as well, so that Date could interoperate properly
24 * class, we can use java.util.Date together with android.icu.util
113 public boolean inDaylightTime(Date date) {
114 return zone.inDaylightTime(date);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
DangiCalendar.java 10 import java.util.Date;
46 * the lunar date calculation. Therefore, the following simpler rule works:
95 * Construct a <code>DangiCalendar</code> with the give date set in the default time zone
97 * @param date The date to which the new calendar is set.
103 public DangiCalendar(Date date) {
105 setTime(date);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DataDrivenFormatTest.java 12 import java.util.Date;
90 String date = currentCase.getString("date"); local
93 Date fromDate = null;
103 // parse 'spec' - either 'PATTERN=yy mm dd' or 'DATE=x,TIME=y'
122 // parse 'date' - either 'MILLIS=12345' or a CalendarFieldsSet
123 if(date.startsWith(kMILLIS)) {
125 fromDate = new Date(Long.parseLong(date.substring(kMILLIS.length())));
126 } else if(date.startsWith(kRELATIVE_MILLIS))
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
basictz.h 122 * represented by <code>AnnualTimeZoneRule</code> with <code>DateTimeRule::DOW</code> for its date
129 * @param date The date used for extracting time zone rules.
133 * specified date, NULL is set.
136 * around the specified date, NULL is set.
140 virtual void getSimpleRulesNear(UDate date, InitialTimeZoneRule*& initial,
161 virtual void getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt,
199 * @param start The start date used for extracting time zone rules
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TimeZoneAdapter.java 13 import java.util.Date;
20 * Without this class, we would need to 'port' java.util.Date to
21 * com.ibm.icu.util as well, so that Date could interoperate properly
23 * class, we can use java.util.Date together with com.ibm.icu.util
112 public boolean inDaylightTime(Date date) {
113 return zone.inDaylightTime(date);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DangiCalendar.java 9 import java.util.Date;
44 * the lunar date calculation. Therefore, the following simpler rule works:
93 * Construct a <code>DangiCalendar</code> with the give date set in the default time zone
95 * @param date The date to which the new calendar is set.
101 public DangiCalendar(Date date) {
103 setTime(date);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DataDrivenFormatTest.java 11 import java.util.Date;
86 String date = currentCase.getString("date"); local
89 Date fromDate = null;
99 // parse 'spec' - either 'PATTERN=yy mm dd' or 'DATE=x,TIME=y'
118 // parse 'date' - either 'MILLIS=12345' or a CalendarFieldsSet
119 if(date.startsWith(kMILLIS)) {
121 fromDate = new Date(Long.parseLong(date.substring(kMILLIS.length())));
122 } else if(date.startsWith(kRELATIVE_MILLIS))
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/args/
Args1Setter.java 25 import java.util.Date;
87 @Parameter(names = "-date", description = "An ISO 8601 formatted date.")
88 public void setDate(Date d) {
89 date = d;
92 public Date date; field in class:Args1Setter
  /external/jetty/src/java/org/eclipse/jetty/server/
ServletResponseHttpWrapper.java 81 public void setDateHeader(String name, long date)
85 public void addDateHeader(String name, long date)
  /external/llvm/docs/
conf.py 14 from datetime import date namespace
44 copyright = u'2003-%d, LLVM Project' % date.today().year
  /external/testng/src/main/java/org/testng/internal/
InvokedMethod.java 20 long date,
25 m_date = date;
  /libcore/ojluni/src/main/java/sun/util/calendar/
CalendarDate.java 34 * in time by calendar date and time fields that are multiple cycles
102 * Sets the era of the date to the specified era. The default
189 public CalendarDate setDayOfMonth(int date) {
190 if (dayOfMonth != date) {
191 dayOfMonth = date;
373 * Returns whether the specified date is the same date of this
377 public boolean isSameDate(CalendarDate date) {
378 return getDayOfWeek() == date.getDayOfWeek()
379 && getMonth() == date.getMonth(
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
PanoUtil.java 20 import java.util.Date;
24 Date date = new Date(dateTaken); local
26 return dateFormat.format(date);
  /packages/apps/Camera2/src/com/android/camera/data/
NewestFirstComparator.java 22 import java.util.Date;
29 private final Date mNow;
35 * creation dates using the supplied current date as a baseline.
37 * @param now present date to be used in comparisons to rule out dates in
40 public NewestFirstComparator(Date now) {
44 mNow = new Date(now.getTime() + MILLIS_IN_DAY);
52 // If creation date is in future, fall back to modified, b/19565464.
53 Date d1PrimaryDate = isFuture(d1Data.getCreationDate()) ?
55 Date d2PrimaryDate = isFuture(d2Data.getCreationDate()) ?
70 * Normal date comparison will sort these oldest first
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
PanoUtil.java 20 import java.util.Date;
24 Date date = new Date(dateTaken); local
26 return dateFormat.format(date);
  /packages/apps/TV/tests/unit/src/com/android/tv/util/
UtilsTest_GetDurationString.java 54 private static long getJanOfThisYearInMillis(int date, int hour, int minutes) {
55 return new GregorianCalendar(getThisYear(), Calendar.JANUARY, date, hour, minutes)
59 private static long getJanOfThisYearInMillis(int date, int hour) {
60 return getJanOfThisYearInMillis(date, hour, 0);
66 private static long getFebOfThisYearInMillis(int date, int hour, int minutes) {
67 return new GregorianCalendar(getThisYear(), Calendar.FEBRUARY, date, hour, minutes)
71 private static long getFebOfThisYearInMillis(int date, int hour) {
72 return getFebOfThisYearInMillis(date, hour, 0);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/cert/
X509CertificateTest.java 48 import java.util.Date;
269 Date date = new Date(); local
270 Date nb_date = tbt_cert.getNotBefore();
271 Date na_date = tbt_cert.getNotAfter();
274 assertFalse("CertificateExpiredException expected", date
276 assertFalse("CertificateNotYetValidException expected", date
280 date.compareTo(na_date) > 0);
283 date.compareTo(nb_date) < 0)
311 Date[] date = new Date[8]; local
    [all...]

Completed in 1273 milliseconds

1 2 3 4 5 6 78 91011>>