/external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/_locales/en/ |
messages.json | 24 "days": {
25 "message": "$days$d",
27 "days": {
|
/external/valgrind/main/none/tests/x86/ |
faultstatus.disabled | 3 # in 2.4.X days and could be made to do so again if required.
|
/external/v8/src/ |
date.cc | 78 int days, int* year, int* month, int* day) { 80 // Check conservatively if the given 'days' has 81 // the same year and month as the cached 'days'. 82 int new_day = ymd_day_ + (days - ymd_days_); 85 ymd_days_ = days; 92 int save_days = days; 94 days += kDaysOffset; 95 *year = 400 * (days / kDaysIn400Years) - kYearsOffset; 96 days %= kDaysIn400Years; 98 ASSERT(DaysFromYearMonth(*year, 0) + days == save_days) [all...] |
date.h | 84 // days = floor(time_ms / kMsPerDay). 85 static int TimeInDay(int64_t time_ms, int days) { 86 return static_cast<int>(time_ms - days * kMsPerDay); 90 // Given the number of days since the epoch, computes the weekday. 92 int Weekday(int days) { 93 int result = (days + 4) % 7; 147 int days = DaysFromTime(time_ms); local 148 int time_within_day_ms = static_cast<int>(time_ms - days * kMsPerDay); 150 YearMonthDayFromDays(days, &year, &month, &day); 167 // Given the number of days since the epoch, compute [all...] |
/external/chromium/chrome/common/ |
time_format.h | 27 // Returns times in elapsed-format: "3 mins ago", "2 days ago". 30 // Returns times in remaining-format: "3 mins left", "2 days left". 33 // Returns times in short-format: "3 mins", "2 days". 39 // TODO(brettw): This should be able to handle days in the future like
|
/external/webkit/Tools/iExploder/iexploder-1.3.2/tools/ |
osx_last_crash.rb | 3 # that has crashed within the last 2 days 6 $Days=1 9 files=`find #$LogDir -mtime -#$Days -type f | grep -v synergy`
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/ |
15.9.1.1-1.js | 32 - range of times supported is -100,000,000 days 33 to 100,000,000 days from 1 jan 1970 12:00 am 73 // 24 years with 366 days 76 // 97 years with 366 days 77 // 303 years with 365 days
|
15.9.1.1-2.js | 32 - range of times supported is -100,000,000 days 33 to 100,000,000 days from 1 jan 1970 12:00 am 66 // 24 years with 366 days 69 // 97 years with 366 days 70 // 303 years with 365 days
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
Utils.java | 42 int days = 0, hours = 0, minutes = 0; local 44 days = seconds / SECONDS_PER_DAY; 45 seconds -= days * SECONDS_PER_DAY; 55 if (days > 0) { 57 days, hours, minutes, seconds));
|
/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 400 int days = daysInMonth(isLeapYear(fields[YEAR]), fields[MONTH]); local 401 if (fields[DATE] > days) { 484 long days = timeVal \/ 86400000; local 788 long days; local 924 long days = dayCount; local 946 long days = (year - 1970) * 365 + ((year - 1969) \/ 4); local 1189 long days = dayCount; local 1300 int days, day, mod, maxWeeks, newWeek; local [all...] |
/external/icu4c/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...] |
/frameworks/opt/calendar/src/com/android/calendarcommon/ |
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)
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/tools/ |
osx_last_crash.rb | 18 # that has crashed within the last 2 days 21 $Days=1 24 files=`find #$LogDir -mtime -#$Days -type f | grep -v synergy`
|
/frameworks/opt/calendar/tests/src/com/android/calendarcommon/ |
DurationTest.java | 27 int sign, int weeks, int days, int hours, 35 assertEquals("Duration days is not equal for " + str, days, duration.days);
|
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
sort | 14 print MAKEFILE "foo := moon_light days \n" 43 $answer = "A boy captured_by days end, has jazz_and_a midnight moon_light rise\n" 44 ."A boy captured_by days end, has jazz_and_a midnight moon_light rise\n" 45 ."A boy captured_by days end, has jazz_and_a midnight moon_light rise\n";
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
Alarm.java | 89 * Days of week coded as integer 243 * Days of week code as a single int. 265 // Bitmask of all repeating days 268 DaysOfWeek(int days) { 269 mDays = days; 275 // no days 286 // count selected days 287 int dayCount = 0, days = mDays; local 288 while (days > 0) { 289 if ((days & 1) == 1) dayCount++ [all...] |
/external/icu4c/i18n/ |
chnsecal.cpp | 72 * Value to be added or subtracted from the local days of a new moon to 197 * Override Calendar method to return the number of days in the given 206 kEpochStartAsJulianDay + 1; // Julian day -> local days 231 computeChineseFields(julianDay - kEpochStartAsJulianDay, // local days 435 * Convert local days to UTC epoch milliseconds. 436 * @param days days after January 1, 1970 0:00 Asia/Shanghai 439 double ChineseCalendar::daysToMillis(double days) { 440 return (days * kOneDay) - CHINA_OFFSET; 444 * Convert UTC epoch milliseconds to local days [all...] |
/bionic/libc/netbsd/nameser/ |
ns_ttl.c | 57 int secs, mins, hours, days, weeks, x; local 63 days = src % 7; src /= 7; 71 if (days) { 72 T(fmt1(days, 'D', &dst, &dstlen)); 83 if (secs || !(weeks || days || hours || mins)) {
|
/packages/apps/Calendar/src/com/android/calendar/ |
EventRecurrenceFormatter.java | 38 StringBuilder days = new StringBuilder(); local 45 days.append(dayToString(recurrence.byday[i])); 46 days.append(","); 48 days.append(dayToString(recurrence.byday[count])); 50 return String.format(format, days.toString());
|
EventLoader.java | 58 * Code for handling requests to get whether days have an event or not 90 // Clear the event days 93 //query which days have events 99 //Set all the days with events to true 231 * Loads "numDays" days worth of events, starting at start, into events. 262 * Sends a request for the days with events to be marked. Loads "numDays" 263 * worth of days, starting at start, and fills in eventDays to express which 264 * days have events. 267 * @param numDays Days following the start day to check
|
/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);
|
/external/llvm/ |
README.android | 39 ==> * 4f6bab9 - Drop the "2" suffix on some enums. (13 days ago) <Chris Lattner> 40 ==> * 96a74c5 - remove support for a bunch of obsolete instruction encodings and other backward compatibility hacks. (13 days ago) <Chris Lattner> 41 * 738f05a - Remove a useless copy of MCELFStreamer. Patch by Logan Chien! (13 days ago) <Benjamin Kramer> 42 * 981d826 - getSuccWeight returns now default 0 if Weights vector is empty. (13 days ago) <Jakub Staszak> 43 * 799a58a55 - missed a file. (13 days ago) <Chris Lattner> 44 ==> * 9d61dd9 - Remove some "2" suffixes from the metadata enums now that "1" is gone. (13 days ago) <Chris Lattner> 45 ==> * 020a5a4 - remove bitcode reader support for LLVM 2.7 metadata encoding. (13 days ago) <Chris Lattner>
|
/libcore/luni/src/main/java/javax/xml/datatype/ |
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 906 BigInteger days = (BigInteger) getField(DatatypeConstants.DAYS); local [all...] |
/external/chromium/chrome/browser/instant/ |
promo_counter.h | 18 // shown for a specified number of days or sessions (launches of chrome). 51 // Invoked if the max number of days has elapsed. 62 // Max number of sessions/days before the promo stops.
|
/packages/apps/DeskClock/res/values/ |
strings.xml | 89 1: days 91 3: days hours 93 5: days minutes 95 7: days hours minutes 102 <item>Alarm set for <xliff:g id="DAYS" example="2 days">%1$s</xliff:g> from now.</item> 104 <item>Alarm set for <xliff:g id="DAYS" example="2 days">%1$s</xliff:g> and <xliff:g id="HOURS" example="2 hours">%2$s</xliff:g> from now.</item> 106 <item>Alarm set for <xliff:g id="DAYS" example="2 days">%1$s</xliff:g> and <xliff:g id="MINUTES" example="2 minutes">%3$s</xliff:g> from now.</item [all...] |