HomeSort by relevance Sort by last modified time
    Searched refs:DAYS (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/third_party/openssl/openssl/apps/
CA.pl 48 $DAYS="-days 365"; # 1 year
49 $CADAYS="-days 1095"; # 3 years
71 system ("$REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS");
76 system ("$REQ -new -keyout newkey.pem -out newreq.pem $DAYS");
81 system ("$REQ -new -nodes -keyout newkey.pem -out newreq.pem $DAYS");
CA.pl.in 48 $DAYS="-days 365"; # 1 year
49 $CADAYS="-days 1095"; # 3 years
71 system ("$REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS");
76 system ("$REQ -new -keyout newkey.pem -out newreq.pem $DAYS");
81 system ("$REQ -new -nodes -keyout newkey.pem -out newreq.pem $DAYS");
CA.sh 63 if [ -z "$DAYS" ] ; then DAYS="-days 365" ; fi # 1 year
64 CADAYS="-days 1095" # 3 years
86 $REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS
92 $REQ -new -keyout newkey.pem -out newreq.pem $DAYS
98 $REQ -new -nodes -keyout newreq.pem -out newreq.pem $DAYS
  /external/openssl/apps/
CA.pl 48 $DAYS="-days 365"; # 1 year
49 $CADAYS="-days 1095"; # 3 years
71 system ("$REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS");
76 system ("$REQ -new -keyout newkey.pem -out newreq.pem $DAYS");
81 system ("$REQ -new -nodes -keyout newkey.pem -out newreq.pem $DAYS");
CA.pl.in 48 $DAYS="-days 365"; # 1 year
49 $CADAYS="-days 1095"; # 3 years
71 system ("$REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS");
76 system ("$REQ -new -keyout newkey.pem -out newreq.pem $DAYS");
81 system ("$REQ -new -nodes -keyout newkey.pem -out newreq.pem $DAYS");
CA.sh 63 if [ -z "$DAYS" ] ; then DAYS="-days 365" ; fi # 1 year
64 CADAYS="-days 1095" # 3 years
86 $REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS
92 $REQ -new -keyout newkey.pem -out newreq.pem $DAYS
98 $REQ -new -nodes -keyout newreq.pem -out newreq.pem $DAYS
  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeDowntimeDaysSelection.java 35 public static final int[] DAYS = {
50 final int[] days = ZenModeConfig.tryParseDays(mode); local
51 if (days != null) {
52 for (int i = 0; i < days.length; i++) {
53 mDays.put(days[i], true);
59 for (int i = 0; i < DAYS.length; i++) {
60 final int day = DAYS[i];
ZenModeSettings.java 19 import static com.android.settings.notification.ZenModeDowntimeDaysSelection.DAYS;
79 private static final String KEY_DAYS = "days";
253 if (DEBUG) Log.d(TAG, "days.onChanged sleepMode=" + mode);
343 final int[] days = ZenModeConfig.tryParseDays(mConfig.sleepMode); local
344 if (days != null && days.length != 0) {
347 for (int i = 0; i < DAYS.length; i++) {
348 final int day = DAYS[i];
349 for (int j = 0; j < days.length; j++) {
350 if (day == days[j])
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
TimeUnitTest.java 26 TimeUnit.DAYS));
48 TimeUnit.DAYS));
70 TimeUnit.DAYS));
92 TimeUnit.DAYS));
121 TimeUnit.DAYS.toNanos(t));
144 TimeUnit.DAYS.toMicros(t));
167 TimeUnit.DAYS.toMillis(t));
190 TimeUnit.DAYS.toSeconds(t));
213 TimeUnit.DAYS.toMinutes(t));
236 TimeUnit.DAYS.toHours(t))
    [all...]
  /packages/providers/TvProvider/src/com/android/providers/tv/
EpgDataCleanupService.java 60 clearOldPrograms(nowMillis - TimeUnit.DAYS.toMillis(maxProgramAgeInDays));
66 clearOldWatchHistory(nowMillis - TimeUnit.DAYS.toMillis(maxWatchedProgramAgeInDays));
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/deskclock/
DeskClockTestsActivity.java 35 private static final ArrayList<Integer> DAYS = new ArrayList<Integer>();
44 .putExtra(AlarmClock.EXTRA_DAYS, DAYS);
47 DAYS.add(Calendar.MONDAY);
48 DAYS.add(Calendar.WEDNESDAY);
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConstants.java 137 * <p>A constant that represents the days field.</p>
139 public static final Field DAYS = new Field("DAYS", 2);
Duration.java 34 * which consists of six fields (years, months, days, hours,
56 * <p>For example, 30 days cannot be meaningfully compared to one month.
68 * subtract 15 days from 1 month. See the javadoc of those methods
160 boolean daySet = isSet(DatatypeConstants.DAYS);
247 * Obtains the value of the DAYS field as an integer value,
251 * that this method works on the DAYS field.
253 * @return Days of this <code>Duration</code>.
256 return getFieldValueAsInt(DatatypeConstants.DAYS);
383 * In case of YEARS, MONTHS, DAYS, HOURS, and MINUTES, the returned
388 * one of the six Field constants (YEARS,MONTHS,DAYS,HOURS
902 BigInteger days = (BigInteger) getField(DatatypeConstants.DAYS); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryService.java 42 * Every four days, it schedules an update of the metadata with the alarm manager.
43 * - Issuing the order to update the metadata. This runs every four days, between 0 and
79 private static final long UPDATE_FREQUENCY = TimeUnit.DAYS.toMillis(4);
91 private static final long VERY_LONG_TIME = TimeUnit.DAYS.toMillis(14);
  /external/guava/guava-tests/test/com/google/common/cache/
EmptyCachesTest.java 20 import static java.util.concurrent.TimeUnit.DAYS;
370 DurationSpec.of(1, DAYS)))
374 DurationSpec.of(1, DAYS)))
377 DurationSpec.of(1, DAYS)));
PopulatedCachesTest.java 21 import static java.util.concurrent.TimeUnit.DAYS;
325 DurationSpec.of(1, DAYS)))
329 DurationSpec.of(1, DAYS)))
333 DurationSpec.of(1, DAYS)));
  /packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 50 public static final int DAYS = HOURS*24;
51 public static final int WEEKS = DAYS*7;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/personalization/
UserHistoryDictionaryTests.java 70 // 3 days.
71 final int timeToElapse = (int)TimeUnit.DAYS.toSeconds(3);
77 // 365 days.
78 final int timeToElapse = (int)TimeUnit.DAYS.toSeconds(365);
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
TimeUnit.java 80 DAYS {
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 109 DAYS {
245 * Equivalent to {@code DAYS.convert(duration, this)}.
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 645 long endTime = startTime + (365*CalendarUtilities.DAYS);
658 CalendarUtilities.DAYS, endTime, true);
675 endTime = startTime + (365*CalendarUtilities.DAYS);
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryDecayingTests.java 91 // 30 days.
92 final int timeToElapse = (int)TimeUnit.SECONDS.convert(30, TimeUnit.DAYS);
99 // 365 days.
100 final int timeToElapse = (int)TimeUnit.SECONDS.convert(365, TimeUnit.DAYS);
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/utility/
CalendarUtilities.java 74 static final long DAYS = HOURS*24;
149 // Bits used in EAS recurrences for days of the week
505 // sDayTokens is 0 based (SU = 0); Calendar days of week are 1 based (SU = 1)
561 long endOfYearTime = startTime + (365*DAYS) + (DAYS>>2);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.ui.sdk.scheduler_1.0.0.v20100507-1815.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cookielib.py 80 DAYS = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]
117 DAYS[wday], mday, MONTHS[mon-1], year, hour, min, sec)
    [all...]

Completed in 630 milliseconds

1 2