Home | History | Annotate | Download | only in com.example.android.wearable.speedtracker

Lines Matching refs:day

45      * objects for the day that the {@link java.util.Calendar} object points at. Internally it uses
50 String day = Utils.getHashedDay(calendar);
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);
68 mPointsMap.remove(day);
69 return mDbHelper.delete(day);
86 mPointsMap.put(entry.day, points);