/external/clearsilver/cs/ |
test_exists.cs | 2 <?cs var:Days[TestIf] ?> 3 <?cs if:?Days[TestIf] ?>
|
test16.cs | 5 <?cs each:A = Days ?>
|
test11.cs | 19 <?cs var:Days[#0] ?> == 0 20 <?cs var:Days[#1] ?> == 1 21 <?cs var:Days[#2] ?> == 2 23 <?cs var:Days[#0]["Abbr"] ?> == Mon 24 <?cs var:Days[#1]["Abbr"] ?> == Tues 25 <?cs var:Days[#2]["Abbr"] ?> == Wed
|
test_with.cs | 3 <?cs with:abbr = Days[x].Abbr ?>
|
test3.cs | 3 <?cs each:wday = Days ?> 9 <?cs var:Days.0.Abbr ?> 11 <?cs var:Days.1.Abbr ?> 13 <?cs var:Days.2.Abbr ?> 15 <?cs var:Days.3.Abbr ?> 17 <?cs var:Days.4.Abbr ?> 19 <?cs var:Days.5.Abbr ?> 21 <?cs var:Days.6.Abbr ?> 77 <?cs each:day=Days ?>
|
test14.cs | 109 <?cs var:Days[TestIf] ?> 110 <?cs if:?Days[TestIf] ?> 117 <?cs var:Days[TestIf].Abbr ?> 118 <?cs if:?Days[TestIf].Abbr ?> 125 <?cs var:Days[TestIf].foo ?> 126 <?cs if:?Days[TestIf].foo ?>
|
/external/webkit/WebKitTools/iExploder/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/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));
|
/dalvik/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) { 465 long days = timeVal \/ 86400000; local 770 long days; local 906 long days = dayCount; local 928 long days = (year - 1970) * 365 + ((year - 1969) \/ 4); local 1168 long days = dayCount; local 1279 int days, day, mod, maxWeeks, newWeek; local [all...] |
/packages/apps/AlarmClock/src/com/android/alarmclock/ |
Alarm.java | 90 * Days of week coded as integer 219 * Days of week code as a single int. 241 // Bitmask of all repeating days 244 DaysOfWeek(int days) { 245 mDays = days; 251 // no days 262 // count selected days 263 int dayCount = 0, days = mDays; local 264 while (days > 0) { 265 if ((days & 1) == 1) dayCount++ [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/ |
Alarm.java | 90 * Days of week coded as integer 231 * Days of week code as a single int. 253 // Bitmask of all repeating days 256 DaysOfWeek(int days) { 257 mDays = days; 263 // no days 274 // count selected days 275 int dayCount = 0, days = mDays; local 276 while (days > 0) { 277 if ((days & 1) == 1) dayCount++ [all...] |
/packages/apps/AlarmClock/res/values/ |
strings.xml | 80 1: days 82 3: days hours 84 5: days minutes 86 7: days hours minutes 93 <item>This alarm is set for <xliff:g id="DAYS" example="2 days">%1$s</xliff:g> from now.</item> 95 <item>This alarm is 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> 97 <item>This alarm is 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...] |
/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...] |
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
Duration.java | 25 * | DAYS [ HOURS [ MINUTES [ SECONDS ] ] ] 34 public int days; field in class:Duration 52 days = 0; 110 days = n; 129 cal.add(Calendar.DAY_OF_MONTH, sign*days); 142 + (24*60*60*days)
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
DurationTest.java | 26 int sign, int weeks, int days, int hours, 34 assertEquals("Duration days is not equal for " + str, days, duration.days);
|
/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 | 37 StringBuilder days = new StringBuilder(); local 44 days.append(dayToString(recurrence.byday[i])); 45 days.append(","); 47 days.append(dayToString(recurrence.byday[count])); 49 return String.format(format, days.toString());
|
EventLoader.java | 57 * Code for handling requests to get whether days have an event or not 81 // Clear the event days 84 //query which days have events 90 //Set all the days with events to true 221 * Loads "numDays" days worth of events, starting at start, into events. 252 * Sends a request for the days with events to be marked. Loads "numDays" 253 * worth of days, starting at start, and fills in eventDays to express which 254 * days have events. 257 * @param numDays Days following the start day to check
|
/packages/apps/Email/src/com/android/exchange/utility/ |
Duration.java | 28 public int days; field in class:Duration 44 days = 0; 96 days = n; 112 cal.add(Calendar.DAY_OF_MONTH, sign*days); 124 return factor * ((7*24*60*60*weeks) + (24*60*60*days) + (60*60*hours) + (60*minutes) +
|
/dalvik/libcore/xml/src/main/java/javax/xml/datatype/ |
Duration.java | 35 * which consists of six fields (years, months, days, hours, 57 * <p>For example, 30 days cannot be meaningfully compared to one month. 69 * subtract 15 days from 1 month. See the javadoc of those methods 161 boolean daySet = isSet(DatatypeConstants.DAYS); 248 * Obtains the value of the DAYS field as an integer value, 252 * that this method works on the DAYS field. 254 * @return Days of this <code>Duration</code>. 257 return getFieldValueAsInt(DatatypeConstants.DAYS); 384 * In case of YEARS, MONTHS, DAYS, HOURS, and MINUTES, the returned 389 * one of the six Field constants (YEARS,MONTHS,DAYS,HOURS 908 BigInteger days = (BigInteger) getField(DatatypeConstants.DAYS); local [all...] |
/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>This alarm is set for <xliff:g id="DAYS" example="2 days">%1$s</xliff:g> from now.</item> 104 <item>This alarm is 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>This alarm is 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...] |
/external/icu4c/test/cintltst/ |
ccaltst.h | 47 * Test that the days of the week progress properly when add is called repeatedly 48 * for increments of 24 days.
|