/build/core/ |
cleanbuild.mk | 71 # The major clean version is out-of-date. Do a full clean, and 78 # that we need to execute to get up-to-date.
|
/build/tools/releasetools/ |
edify_generator.py | 128 ('(!less_than_int(%s, getprop("ro.build.date.utc"))) || ' 130 'build (" + getprop("ro.build.date") + ").");') % (timestamp,
|
/external/autotest/client/cros/graphics/ |
drm.py | 33 ("date", c_char_p), 47 self.date,
|
/external/bison/build-aux/ |
gendocs.sh | 31 # An up-to-date copy is also maintained in Gnulib (gnu.org/software/gnulib). 400 curdate=`$SETLANG date '+%B %d, %Y'` 405 -e "s!%%DATE%%!$curdate!g" \
|
/external/robolectric/v3/ |
robolectric-utils-3.1-SNAPSHOT.jar | |
/external/testng/src/test/java/org/testng/internal/ |
MethodInstanceTest.java | 437 public void setDate(long date) {
|
/external/v8/src/runtime/ |
runtime-i18n.cc | 345 // Set date time formatter as internal field of the resulting JS object. 373 CONVERT_ARG_HANDLE_CHECKED(JSDate, date, 1); 376 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, value, Object::ToNumber(date)); 407 UDate date = date_format->parse(u_date, status); local 412 static_cast<double>(date))); [all...] |
/libcore/ojluni/src/main/java/sun/security/x509/ |
X509CertImpl.java | 620 Date date = new Date(); local 621 checkValidity(date); 625 * Checks that the specified date is within the certificate's 627 * valid at the specified date/time. 629 * @param date the Date to check against to see if this certificate 630 * is valid at that date/time. 633 * with respect to the <code>date</code> supplied [all...] |
/ndk/build/tools/ |
package.py | 311 '--release', default=datetime.date.today().strftime('%Y%m%d'),
|
/packages/apps/Messaging/src/com/android/messaging/widget/ |
WidgetConversationListService.java | 115 // Date/Timestamp or Sending or Error state -- all shown in the date item 116 remoteViews.setTextViewText(R.id.date,
|
/system/core/crash_reporter/ |
crash_sender | 490 local timestamp="$(date +%s)" 608 local now=$(date +%s)
|
/external/ImageMagick/coders/ |
ps2.c | 388 date[MagickPathExtent], 576 (void) FormatMagickTime(timer,MagickPathExtent,date); 578 "%%%%CreationDate: (%s)\n",date); 382 date[MagickPathExtent], local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/ |
X509CertificateObject.java | 25 import java.util.Date; 137 this.checkValidity(new Date()); 141 Date date) 144 if (date.getTime() > this.getNotAfter().getTime()) // for other VM compatibility 149 if (date.getTime() < this.getNotBefore().getTime()) 216 public Date getNotBefore() 221 public Date getNotAfter() 652 buf.append(" Start Date: ").append(this.getNotBefore()).append(nl); 653 buf.append(" Final Date: ").append(this.getNotAfter()).append(nl) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
X509CertificateObject.java | 27 import java.util.Date; 135 this.checkValidity(new Date()); 139 Date date) 142 if (date.getTime() > this.getNotAfter().getTime()) // for other VM compatibility 147 if (date.getTime() < this.getNotBefore().getTime()) 214 public Date getNotBefore() 219 public Date getNotAfter() 674 buf.append(" Start Date: ").append(this.getNotBefore()).append(nl); 675 buf.append(" Final Date: ").append(this.getNotAfter()).append(nl) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
DB_Results.java | 639 * Return the ID of the last baseline build before the given date. 641 * @param date The date the baseline must be run before. If <code>null</code> 644 * @return the ID of the last baseline build before the given date or 647 public static String getLastBaselineBuild(String date) { 651 if (date == null) { 662 if (buildDate.compareTo(date) < 0) { [all...] |
/external/icu/icu4c/source/test/intltest/ |
tzfmttst.cpp | 583 // Test the date in the middle of two transitions. 1022 UDate date; member in struct:__anon12195 [all...] |
tztest.cpp | 36 // Some test case data is current date/tzdata version sensitive and producing errors 214 testUsingBinarySearch(*zone, date(90, UCAL_JANUARY, 1), date(90, UCAL_JUNE, 15), marchOne); 215 testUsingBinarySearch(*zone, date(90, UCAL_JUNE, 1), date(90, UCAL_DECEMBER, 31), julyOne); 339 UDate d = date(97, UCAL_APRIL, 30); [all...] |
/external/jetty/src/java/org/eclipse/jetty/servlet/ |
DefaultServlet.java | 672 /* Check modification date headers. 789 long date=request.getDateHeader(HttpHeaders.IF_UNMODIFIED_SINCE); local 791 if (date!=-1) 793 if (resource.lastModified()/1000 > date/1000) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
HeaderFactoryImpl.java | 48 * @version 1.2 $Revision: 1.22 $ $Date: 2010/01/12 18:58:48 $ 424 * Creates a new DateHeader based on the newly supplied date value. 426 * @param date - the new Calender value of the date. 429 public DateHeader createDateHeader(Calendar date) { 431 if (date == null) 432 throw new NullPointerException("null date"); 433 d.setDate(date); [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
Constructor.java | 24 import java.util.Date; 377 || type == Boolean.class || Date.class.isAssignableFrom(type) 450 } else if (Date.class.isAssignableFrom(type)) { 452 Date date = (Date) dateConstructor.construct(node); local 453 if (type == Date.class) { 454 result = date; 458 result = constr.newInstance(date.getTime());
|
/frameworks/base/core/java/android/widget/ |
SimpleMonthView.java | 1018 final Calendar date = Calendar.getInstance(); local [all...] |
/frameworks/base/services/core/java/com/android/server/ |
DropBoxManagerService.java | 396 String date = time.format("%Y-%m-%d %H:%M:%S"); local 400 match = (date.contains(arg) || arg.equals(entry.tag)); 406 out.append(date).append(" ").append(entry.tag == null ? "(no tag)" : entry.tag); 679 // (Zero-length/lost files are trimmed by date from mAllFiles.) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
TimerTest.java | 21 import java.util.Date; 307 * java.util.Timer#schedule(java.util.TimerTask, java.util.Date) 315 Date d = new Date(System.currentTimeMillis() + 100); 327 d = new Date(System.currentTimeMillis() + 100); 340 d = new Date(-100); 343 fail("Scheduling a task with negative date should throw IllegalArgumentException"); 350 d = new Date(System.currentTimeMillis() + 100); 358 // Ensure a Timer throws a NullPointerException if the date is null 363 fail("Scheduling a null date should throw NullPointerException") 1016 Date date = new Date(System.currentTimeMillis()); local [all...] |
/packages/apps/Settings/src/com/android/settings/accounts/ |
AccountSyncSettings.java | 64 import java.util.Date; 497 Date date = new Date(); local 541 date.setTime(successEndTime); 542 final String timeString = formatSyncDate(date);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
RawContactModifier.java | 68 import java.util.Date; 1274 Date date = CommonDateUtils.DATE_AND_TIME_FORMAT.parse(dateString, position); local [all...] |