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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/
datedata.h 11 static int days[] = { variable
  /external/icu/icu4c/source/test/perf/DateFmtPerf/
datedata.h 11 static int days[] = { variable
  /external/lldb/test/functionalities/target_command/
c.c 13 enum days { enum
23 enum days day;
  /external/lldb/test/lang/c/enum_types/
main.c 13 enum days { enum
23 enum days day;
  /external/chromium_org/v8/src/
date.cc 56 int days, int* year, int* month, int* day) {
58 // Check conservatively if the given 'days' has
59 // the same year and month as the cached 'days'.
60 int new_day = ymd_day_ + (days - ymd_days_);
63 ymd_days_ = days;
70 int save_days = days;
72 days += kDaysOffset;
73 *year = 400 * (days / kDaysIn400Years) - kYearsOffset;
74 days %= kDaysIn400Years;
76 ASSERT(DaysFromYearMonth(*year, 0) + days == save_days)
    [all...]
date.h 64 // days = floor(time_ms / kMsPerDay).
65 static int TimeInDay(int64_t time_ms, int days) {
66 return static_cast<int>(time_ms - days * kMsPerDay);
70 // Given the number of days since the epoch, computes the weekday.
72 int Weekday(int days) {
73 int result = (days + 4) % 7;
127 int days = DaysFromTime(time_ms); local
128 int time_within_day_ms = static_cast<int>(time_ms - days * kMsPerDay);
130 YearMonthDayFromDays(days, &year, &month, &day);
147 // Given the number of days since the epoch, compute
    [all...]
  /external/lldb/test/pexpect-2.4/examples/
uptime.py 15 # 2:06pm up 63 days, 18 min, 3 users, load average: 0.32, 0.08, 0.02
19 # 2:11PM up 3 days, 13:50, 3 users, load averages: 0.01, 0.00, 0.00
25 # 11:36pm up 4 days, 17:58, 1 user, load average: 0.03, 0.01, 0.00
29 # 6:08PM up 4 days, 22:26, 1 user, load averages: 0.13, 0.09, 0.08
40 days = '0' variable
45 days = str(int(p.match.group(1))) variable
55 print 'days, hours, minutes, users, cpu avg 1 min, cpu avg 5 min, cpu avg 15 min'
56 print '%s, %s, %s, %s, %s, %s, %s' % (days, hours, mins, users, av1, av5, av15)
  /libcore/luni/src/main/java/java/util/
GregorianCalendar.java 67 * {@code getMinimalDaysInFirstWeek()} days from that year. It thus
81 * days of 1998 then are part of week 53 of 1997.
85 * 1 to 4 or 5. Week 1 of a month (the days with <code>WEEK_OF_MONTH =
88 * contiguous days in that month, ending on the day before
90 * month may be shorter than 7 days, need not start on
91 * {@code getFirstDayOfWeek()}, and will not include days of the
92 * previous month. Days of a month before week 1 have a
98 * January 1998 is Sunday, January 4 through Saturday, January 10. These days
399 int days = daysInMonth(isLeapYear(fields[YEAR]), fields[MONTH]); local
400 if (fields[DATE] > days) {
472 long days = time \/ 86400000; local
680 long days; local
824 long days = dayCount; local
844 long days = (year - 1970) * 365 + ((year - 1969) \/ 4); local
1060 long days = dayCount; local
1153 int days, day, mod, maxWeeks, newWeek; local
    [all...]
  /external/smack/src/org/xbill/DNS/
TTL.java 90 long secs, mins, hours, days, weeks; local
97 days = ttl % 7;
102 if (days > 0)
103 sb.append(days + "D");
108 if (secs > 0 || (weeks == 0 && days == 0 && hours == 0 && mins == 0))
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
Duration.java 24 * | DAYS [ HOURS [ MINUTES [ SECONDS ] ] ]
33 public int days; field in class:Duration
51 days = 0;
113 days = n;
132 cal.add(Calendar.DAY_OF_MONTH, sign*days);
145 + (24*60*60*days)
  /frameworks/base/core/java/android/text/format/
Formatter.java 125 int days = 0, hours = 0, minutes = 0; local
127 days = (int)(secondsLong / SECONDS_PER_DAY);
128 secondsLong -= days * SECONDS_PER_DAY;
140 if (days >= 2) {
141 days += (hours+12)/24;
142 return context.getString(com.android.internal.R.string.durationDays, days);
143 } else if (days > 0) {
145 return context.getString(com.android.internal.R.string.durationDayHour, days, hours);
147 return context.getString(com.android.internal.R.string.durationDayHours, days, hours);
  /system/core/fastboot/
genkey.sh 16 -batch -days 10000
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
print-stale-test-expectations-entries 49 self._days = options.days
58 return time_delta.days > 90
97 option_parser.add_option('--days', type='int', default=90, help='Number of days to consider a bug stale.'),
  /external/chromium_org/third_party/icu/source/i18n/
chnsecal.h 165 static double daysToMillis(double days);
168 virtual int32_t newMoonNear(double days, UBool after) const;
170 virtual int32_t majorSolarTerm(int32_t days) const;
173 virtual void computeChineseFields(int32_t days, int32_t gyear,
  /system/core/toolbox/
uptime.c 42 int seconds, minutes, hours, days; local
49 days = time / 24;
51 if (days > 0)
52 sprintf(buffer, "%d days, %02d:%02d:%02d", days, hours, minutes, seconds);
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
DurationTest.java 27 int sign, int weeks, int days, int hours,
35 assertEquals("Duration days is not equal for " + str, days, duration.days);
  /bionic/libc/dns/nameser/
ns_ttl.c 58 int secs, mins, hours, days, weeks, x; local
64 days = (int)(src % 7); src /= 7;
72 if (days) {
73 T(fmt1(days, 'D', &dst, &dstlen));
84 if (secs || !(weeks || days || hours || mins)) {
  /external/icu/icu4c/source/samples/cal/
cal.c 58 UChar *days [], UBool useLongNames,
61 static void free_days(UChar *days[]);
71 static void print_days(UChar *days [], FILE *f, UErrorCode *status);
74 UChar *days [],
79 UChar *days [], UChar *months [],
86 /* Number of days in a week */
232 UChar *days [DAY_COUNT]; local
253 print_year(c, days, months, useLongNames, fdow, status);
269 print_month(c, days, useLongNames, fdow, status);
329 form. Also, reorder the days so that they are in the proper orde
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmUtils.java 75 * format "Alarm set for 2 days 7 hours and 53 minutes from
82 long days = hours / 24; local
85 String daySeq = (days == 0) ? "" :
86 (days == 1) ? context.getString(R.string.day) :
87 context.getString(R.string.days, Long.toString(days));
97 boolean dispDays = days > 0;
  /cts/libs/vogar-expect/src/vogar/util/
TimeUtilities.java 87 long days = duration; local
90 if (days != 0) {
91 result.append(days);
  /external/chromium_org/third_party/openssl/openssl/android.testssl/
testssl.sh 61 $x509cmd -CAcreateserial -in $CAreq -days 30 -req -out $CAcert -signkey $CAkey -extfile $CAconf -extensions v3_ca
69 $x509cmd -CAcreateserial -in $Ureq -days 30 -req -out $Ucert -CA $CAcert -CAkey $CAkey -extfile $Uconf -extensions v3_ee
  /external/chromium_org/third_party/openssl/openssl/patches/
testssl.sh 61 $x509cmd -CAcreateserial -in $CAreq -days 30 -req -out $CAcert -signkey $CAkey -extfile $CAconf -extensions v3_ca
69 $x509cmd -CAcreateserial -in $Ureq -days 30 -req -out $Ucert -CA $CAcert -CAkey $CAkey -extfile $Uconf -extensions v3_ee
  /external/google-tv-pairing-protocol/cpp/src/polo/util/
certificateutil.h 63 // @param days the number of days before the certificate expires
67 uint32_t days);
  /external/icu/icu4c/source/i18n/
chnsecal.h 184 double daysToMillis(double days) const;
187 virtual int32_t newMoonNear(double days, UBool after) const;
189 virtual int32_t majorSolarTerm(int32_t days) const;
192 virtual void computeChineseFields(int32_t days, int32_t gyear,
  /external/openssl/android.testssl/
testssl.sh 61 $x509cmd -CAcreateserial -in $CAreq -days 30 -req -out $CAcert -signkey $CAkey -extfile $CAconf -extensions v3_ca
69 $x509cmd -CAcreateserial -in $Ureq -days 30 -req -out $Ucert -CA $CAcert -CAkey $CAkey -extfile $Uconf -extensions v3_ee

Completed in 808 milliseconds

1 2 3 4 5 6 7 8 9