HomeSort by relevance Sort by last modified time
    Searched defs:day (Results 1 - 25 of 326) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /developers/samples/android/wearable/wear/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/
LocationDataManager.java 45 * objects for the day that the {@link java.util.Calendar} object points at. Internally it uses
50 String day = Utils.getHashedDay(calendar); local
52 if (mPointsMap.get(day) == null) {
53 // there is no cache for this day, so lets get it from DB
55 mPointsMap.put(day, points);
58 return mPointsMap.get(day);
62 * Clears the data for the day that the {@link java.util.Calendar} object falls on. This method
67 String day = Utils.getHashedDay(calendar); local
68 mPointsMap.remove(day);
69 return mDbHelper.delete(day);
    [all...]
  /developers/samples/android/wearable/wear/SpeedTracker/Shared/src/main/java/com/example/android/wearable/speedtracker/common/
LocationEntry.java 30 public String day; field in class:LocationEntry
36 this.day = Utils.getHashedDay(calendar);
  /external/chromium_org/third_party/icu/source/test/intltest/
calcasts.h 8 * conversion between julian-day to fields and vice versa.
32 int32_t day; member in struct:CalendarCaseTest::TestCase
  /external/chromium_org/v8/test/intl/date-format/
timezone-name.js 38 year: 'numeric', month: 'long', day: 'numeric',
  /external/chromium_org/v8/test/intl/overrides/
date.js 38 [], {year: 'numeric', month: 'numeric', day: 'numeric',
51 locale, {year: 'numeric', month: 'numeric', day: 'numeric',
60 var options = {year: 'numeric', month: 'long', day: 'numeric',
  /external/chromium_org/v8/test/mjsunit/regress/
regress-builtinbust-7.js 17 day: "numeric"
  /external/icu/icu4c/source/test/intltest/
calcasts.h 8 * conversion between julian-day to fields and vice versa.
32 int32_t day; member in struct:CalendarCaseTest::TestCase
  /external/lldb/test/functionalities/target_command/
c.c 23 enum days day; local
24 for (day = Monday - 1; day <= kNumDays + 1; day++)
26 printf("day as int is %i\n", (int)day);
  /external/lldb/test/lang/c/enum_types/
main.c 23 enum days day; local
24 for (day = Monday - 1; day <= kNumDays + 1; day++)
26 printf("day as int is %i\n", (int)day); // Set break point at this line.
  /external/lldb/test/lang/cpp/enum_types/
main.cpp 29 DayType day = (DayType)day_value; local
30 printf("day as int is %i\n", (int)day); // Set break point at this line.
  /frameworks/av/media/mtp/
MtpUtils.cpp 32 DD replaced by the day (01-31), T is a constant character 'T' delimiting time from date,
38 int year, month, day, hour, minute, second; local
42 &year, &month, &day, &hour, &minute, &second) != 6)
58 tm.tm_mday = day;
  /system/core/toolbox/
touch.c 19 int day = atoi(s); local
31 tm.tm_year = day / 10000 - 1900;
32 tm.tm_mon = (day % 10000) / 100 - 1;
33 tm.tm_mday = day % 100;
  /external/chromium_org/net/ftp/
ftp_util_unittest.cc 125 const char* day; member in struct:__anon13256::__anon13260
168 kTestCases[i].month, kTestCases[i].day,
173 UTF8ToUTF16(kTestCases[i].month), UTF8ToUTF16(kTestCases[i].day),
  /external/chromium_org/ui/base/l10n/
time_format.cc 124 TimeDelta day = TimeDelta::FromMicroseconds(Time::kMicrosecondsPerDay); local
125 Time tomorrow = midnight_today + day;
126 Time yesterday = midnight_today - day;
  /external/chromium_org/v8/src/
dateparser.cc 14 // Day and month defaults to 1.
21 int day = kNone; local
28 day = comp_[2];
32 day = comp_[1];
39 day = comp_[0];
43 day = comp_[1];
46 day = comp_[0];
56 if (!Smi::IsValid(year) || !IsMonth(month) || !IsDay(day)) return false;
60 output->set(DAY, Smi::FromInt(day));
    [all...]
dateparser-inl.h 22 DayComposer day; local
37 // end of a day,
57 // as a month name) is recorded as a named month in the Day composer.
73 DateToken next_unhandled_token = ParseES5DateTime(&scanner, &day, &time, &tz);
75 bool has_read_number = !day.IsEmpty();
112 if (!day.Add(n)) return false;
122 day.SetNamedMonth(value);
159 return day.Write(out) && time.Write(out) && tz.Write(out);
200 DayComposer* day,
203 ASSERT(day->IsEmpty())
    [all...]
  /external/pdfium/fpdfsdk/include/
fsdk_baseannot.h 52 FX_BYTE day; member in struct:CPDFSDK_DateTime::FX_DATETIME
  /system/core/logcat/tests/
logcat_benchmark.cpp 35 int day; member in class:timestamp
48 &month, &day, &hour, &minute, &second, &millisecond) == 6;
62 && ((day < T.day)
63 || ((day == T.day)
  /frameworks/base/core/java/android/widget/
DayPickerView.java 146 private int getPositionFromDay(Calendar day) {
148 int diffMonth = getDiffMonths(mController.getMinDate(), day);
166 * @param day The day to move to
174 public boolean goTo(Calendar day, boolean animate, boolean setSelected,
177 // Set the selected day
179 mSelectedDay.setTimeInMillis(day.getTimeInMillis());
182 mTempDay.setTimeInMillis(day.getTimeInMillis());
183 final int position = getPositionFromDay(day);
209 // Check if the selected day is now outside of our visible rang
470 Calendar day = Calendar.getInstance(); local
    [all...]
  /bionic/libc/tzcode/
strptime.c 48 const char *day[7]; member in struct:__anon1007
206 case 'A': /* The day of week, using the locale's form. */
211 len = strlen(_ctloc(day[i]));
212 if (strncasecmp(_ctloc(day[i]), (const char*)bp, len) == 0)
261 case 'd': /* The day of month. */
286 case 'j': /* The day of year. */
353 case 'w': /* The day of week, beginning on sunday. */
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherDataProvider.java 39 String day; field in class:WeatherDataPoint
43 day = d;
56 public static final String DAY = "day";
95 new String[]{ Columns.ID, Columns.DAY, Columns.TEMPERATURE });
98 c.addRow(new Object[]{ new Integer(i), data.day, new Integer(data.degrees) });
129 new String[]{ Columns.ID, Columns.DAY, Columns.TEMPERATURE });
  /external/chromium_org/third_party/flot/
jquery.flot.time.min.js 9 */(function(e){function n(e,t){return t*Math.floor(e/t)}function r(e,t,n,r){if(typeof e.strftime=="function")return e.strftime(t);var i=function(e,t){return e=""+e,t=""+(t==null?"0":t),e.length==1?t+e:e},s=[],o=!1,u=e.getHours(),a=u<12;n==null&&(n=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]),r==null&&(r=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]);var f;u>12?f=u-12:u==0?f=12:f=u;for(var l=0;l<t.length;++l){var c=t.charAt(l);if(o){switch(c){case"a":c=""+r[e.getDay()];break;case"b":c=""+n[e.getMonth()];break;case"d":c=i(e.getDate());break;case"e":c=i(e.getDate()," ");break;case"h":case"H":c=i(u);break;case"I":c=i(f);break;case"l":c=i(f," ");break;case"m":c=i(e.getMonth()+1);break;case"M":c=i(e.getMinutes());break;case"q":c=""+(Math.floor(e.getMonth()/3)+1);break;case"S":c=i(e.getSeconds());break;case"y":c=i(e.getFullYear()%100);break;case"Y":c=""+e.getFullYear();break;case"p":c=a?"am":"pm";break;case"P":c=a?"AM":"PM";break;case"w":c=""+e.getDay()}s.push(c),o=!1}else c=="%"?o=!0:s.push(c)}return s.join("")}function i(e){function t(e,t,n,r){e[t]=function(){return n[r].apply(n,arguments)}}var n={date:e};e.strftime!=undefined&&t(n,"strftime",e,"strftime"),t(n,"getTime",e,"getTime"),t(n,"setTime",e,"setTime");var r=["Date","Day","FullYear","Hours","Milliseconds","Minutes","Month","Seconds"];for(var i=0;i<r.length;i++)t(n,"get"+r[i],e,"getUTC"+r[i]),t(n,"set"+r[i],e,"setUTC"+r[i]);return n}function s(e,t){if(t.timezone=="browser")return new Date(e);if(!t.timezone||t.timezone=="utc")return i(new Date(e));if(typeof timezoneJS!="undefined"&&typeof timezoneJS.Date!="undefined"){var n=new timezoneJS.Date;return n.setTimezone(t.timezone),n.setTime(e),n}return i(new Date(e))}function l(t){t.hooks.processOptions.push(function(t,i){e.each(t.getAxes(),function(e,t){var i=t.options;i.mode=="time"&&(t.tickGenerator=function(e){var t=[],r=s(e.min,i),u=0,l=i.tickSize&&i.tickSize[1]==="quarter"||i.minTickSize&&i.minTickSize[1]==="quarter"?f:a;i.minTickSize!=null&&(typeof i.tickSize=="number"?u=i.tickSize:u=i.minTickSize[0]*o[i.minTickSize[1]]);for(var c=0;c<l.length-1;++c)if(e.delta<(l[c][0]*o[l[c][1]]+l[c+1][0]*o[l[c+1][1]])/2&&l[c][0]*o[l[c][1]]>=u)break;var h=l[c][0],p=l[c][1];if(p=="year"){if(i.minTickSize!=null&&i.minTickSize[1]=="year")h=Math.floor(i.minTickSize[0]);else{var d=Math.pow(10,Math.floor(Math.log(e.delta/o.year)/Math.LN10)),v=e.delta/o.year/d;v<1.5?h=1:v<3?h=2:v<7.5?h=5:h=10,h*=d}h<1&&(h=1)}e.tickSize=i.tickSize||[h,p];var m=e.tickSize[0];p=e.tickSize[1];var g=m*o[p];p=="second"?r.setSeconds(n(r.getSeconds(),m)):p=="minute"?r.setMinutes(n(r.getMinutes(),m)):p=="hour"?r.setHours(n(r.getHours(),m)):p=="month"?r.setMonth(n(r.getMonth(),m)):p=="quarter"?r.setMonth(3*n(r.getMonth()/3,m)):p=="year"&&r.setFullYear(n(r.getFullYear(),m)),r.setMilliseconds(0),g>=o.minute&&r.setSeconds(0),g>=o.hour&&r.setMinutes(0),g>=o.day&&r.setHours(0),g>=o.day*4&&r.setDate(1),g>=o.month*2&&r.setMonth(n(r.getMonth(),3)),g>=o.quarter*2&&r.setMonth(n(r.getMonth(),6)),g>=o.year&&r.setMonth(0);var y=0,b=Number.NaN,w;do{w=b,b=r.getTime(),t.push(b);if(p=="month"||p=="quarter")if(m<1){r.setDate(1);var E=r.getTime();r.setMonth(r.getMonth()+(p=="quarter"?3:1));var S=r.getTime();r.setTime(b+y*o.hour+(S-E)*m),y=r.getHours(),r.setHours(0)}else r.setMonth(r.getMonth()+m*(p=="quarter"?3:1));else p=="year"?r.setFullYear(r.getFullYear()+m):r.setTime(b+g)}while(b<e.max&&b!=w);return t},t.tickFormatter=function(e,t){var n=s(e,t.options);if(i.timeformat!=null)return r(n,i.timeformat,i.monthNames,i.dayNames);var u=t.options.tickSize&&t.options.tickSize[1]=="quarter"||t.options.minTickSize&&t.options.minTickSize[1]=="quarter",a=t.tickSize[0]*o[t.tickSize[1]],f=t.max-t.min,l=i.twelveHourClock?" %p":"",c=i.twelveHourClock?"%I":"%H",h;a<o.minute?h=c+":%M:%S"+l:a<o.day?f<2*o.day?h=c+":%M"+l:h="%b %d "+c+":%M"+l:a<o.month?h="%b %d":u&&a<o.quarter||!u&&a<o.year?f<o.year?h="%b":h="%b %Y":u&&a<o.year?f<o.year?h="Q%q":h="Q%q %Y":h="%Y";var p=r(n,h,i.monthNames,i.dayNames);return p})})})}var t={xaxis:{timezone:null,timeformat:null,twelveHourClock:!1,monthNames:null}},o={second:1e3,minute:6e4,hour:36e5,day:864e5,month:2592e6,quarter:7776e6,year:525949.2*60*1e3},u=[[1,"second"],[2,"second"],[5,"second"],[10,"second"],[30,"second"],[1,"minute"],[2,"minute"],[5,"minute"],[10,"minute"],[30,"minute"],[1,"hour"],[2,"hour"],[4,"hour"],[8,"hour"],[12,"hour"],[1,"day"],[2,"day"],[3,"day"],[.25,"month"],[.5,"month"],[1,"month"],[2,"month"]],a=u.concat([[3,"month"],[6,"month"],[1,"year (…) property
  /external/chromium_org/third_party/icu/source/i18n/
coptccal.cpp 78 int32_t eyear, month, day, era, year; local
79 jdToCE(julianDay, getJDEpochOffset(), eyear, month, day);
93 internalSet(UCAL_DATE, day);
94 internalSet(UCAL_DAY_OF_YEAR, (30 * month) + day);
169 CopticCalendar::copticToJD(int32_t year, int32_t month, int32_t day)
171 return CECalendar::ceToJD(year, month, day, COPTIC_JD_EPOCH_OFFSET);
  /external/chromium_org/third_party/icu/source/test/compat/
tzdate.c 32 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime);
39 int year, month, day, hour, minute; local
44 sysyear = year = month = day = 0;
53 day = atoi(argv[3]);
61 systemtime = getSystemCurrentTime(systime, sysyear, month, day, hour, minute, useCurrentTime);
109 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime) {
121 ts.tm_mday = day;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
index.php 74 $day = substr($timePart, 6, 2); variable
77 $timeStamp = mktime($hour, $minute, 0, $month, $day, $year);

Completed in 1527 milliseconds

1 2 3 4 5 6 7 8 91011>>