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

1 2 3 4 56 7 8 91011>>

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Chapter2_5Test.java 18 import java.util.Date;
37 Date date = (Date) data0.get("Time"); local
38 assertEquals("Date: " + date, 1006545702000L, date.getTime());
43 Date date1 = (Date) data1.get("Time");
44 assertTrue("Date: " + date1, date1.after(date))
    [all...]
  /frameworks/base/core/java/android/widget/
CalendarViewMaterialDelegate.java 93 public void setDate(long date) {
94 mDayPickerView.setDate(date, true);
98 public void setDate(long date, boolean animate, boolean center) {
99 mDayPickerView.setDate(date, animate);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleDayPickerView.java 17 package com.android.datetimepicker.date;
  /toolchain/binutils/binutils-2.25/include/nlm/
ppc-ext.h 36 /* File creation date in standard Unix time format (seconds since
38 unsigned char date[4]; member in struct:nlm32_powerpc_external_prefix_header
  /build/core/
version_defaults.mk 140 BUILD_DATETIME := $(shell date +%s)
144 DATE := date -r $(BUILD_DATETIME)
146 DATE := date -d @$(BUILD_DATETIME)
157 # from this date/time" value. Make it start with a non-digit so that
159 BUILD_NUMBER := eng.$(shell echo $${USER:0:6}).$(shell $(DATE) +%Y%m%d.%H%M%S)
  /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;
99 if (!cookie.isExpired(new Date())) {
135 * that have expired by the specified {@link java.util.Date date}.
139 * @see Cookie#isExpired(Date)
141 public synchronized boolean clearExpired(final Date date) {
142 if (date == null) {
147 if (it.next().isExpired(date)) {
    [all...]
  /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]);
  /external/netperf/doc/examples/
runemomniaggdemo.sh 16 NOW=`date +%s.%N`
38 NOW=`date +%s.%N`
42 NOW=`date +%s.%N`
47 NOW=`date +%s.%N`
57 NOW=`date +%s.%N`
61 NOW=`date +%s.%N`
73 NOW=`date +%s.%N`
93 NOW=`date +%s.%N`
100 NOW=`date +%s.%N`
106 NOW=`date +%s.%N
    [all...]
snapshot_script 87 echo Netperf snapshot script started at `date` >&2
122 echo Starting 56x4 TCP_STREAM tests at `date` >&2
138 echo Starting 32x4 TCP_STREAM tests at `date` >&2
152 echo Starting 1,1 TCP_RR tests at `date` >&2
165 echo Starting 1,1 UDP_RR tests at `date` >&2
180 echo Starting 512,4 UDP_RR tests at `date` >&2
191 echo Starting 32x4 UDP_STREAM tests at `date` >&2
205 echo Starting 32x1 UDP_STREAM tests at `date` >&2
220 echo Tests completed at `date` >&2
  /packages/apps/Camera2/src/com/android/camera/app/
MediaSaver.java 74 * @param date The date when the image is created.
86 void addImage(byte[] data, String title, long date, Location loc, int width, int height,
95 * @param date The date when the image is created.
108 void addImage(byte[] data, String title, long date, Location loc, int width, int height,
118 * @param date The date when the image is created.
126 void addImage(byte[] data, String title, long date, Location loc, int orientation,
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
TestBean1.java 19 import java.util.Date;
41 private Date date; field in class:TestBean1
197 public Date getDate() {
198 return date;
201 public void setDate(Date date) {
202 this.date = date;
  /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) {
  /external/icu/android_icu4j/src/main/java/android/icu/util/
IndianCalendar.java 11 import java.util.Date;
29 * Month Length Start date (Gregorian)
209 * Constructs a <code>IndianCalendar</code> with the given date set
212 * @param date The date to which the new calendar is set.
215 public IndianCalendar(Date date) {
217 this.setTime(date);
221 * Constructs a <code>IndianCalendar</code> with the given date set
229 * @param date The value used to set the calendar's {@link #DATE DATE} time field
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
IndianCalendar.java 10 import java.util.Date;
28 * Month Length Start date (Gregorian)
229 * Constructs a <code>IndianCalendar</code> with the given date set
232 * @param date The date to which the new calendar is set.
236 public IndianCalendar(Date date) {
238 this.setTime(date);
242 * Constructs a <code>IndianCalendar</code> with the given date set
250 * @param date The value used to set the calendar's {@link #DATE DATE} time field
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
MediaSaverImpl.java 69 public void addImage(final byte[] data, String title, long date, Location loc, int width,
71 addImage(data, title, date, loc, width, height, orientation, exif, l,
76 public void addImage(final byte[] data, String title, long date, Location loc, int width,
83 ImageSaveTask t = new ImageSaveTask(data, title, date,
95 public void addImage(final byte[] data, String title, long date, Location loc, int orientation,
99 addImage(data, title, date, loc, 0, 0, orientation, exif, l,
140 private final long date; field in class:MediaSaverImpl.ImageSaveTask
149 public ImageSaveTask(byte[] data, String title, long date, Location loc,
155 this.date = date;
    [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/libvncserver/utils/
git2cl.pl 78 my @date;
80 push(@date,$6,$5,$4,$3,$month{$2},($7 - 1900),-1,-1,-1);
82 die ("Cannot parse date '$str'\n'");
84 return @date;
281 my @date;
307 #print STDERR "debug ($state, " . (@date ? (strftime "%Y-%m-%d", @date) : "") . "): `$_'\n";
312 if ($_l =~ m,^Date: (.*),) {
313 @date = strptime($1);
315 $state = 1 if ($_l =~ m,^$, and $author and (@date+0>0))
    [all...]

Completed in 8958 milliseconds

1 2 3 4 56 7 8 91011>>