Home | History | Annotate | Download | only in speedtracker

Lines Matching defs:points

45      * objects for the day that the {@link java.util.Calendar} object points at. Internally it uses
54 List<LocationEntry> points = mDbHelper.read(calendar);
55 mPointsMap.put(day, points);
79 List<LocationEntry> points = getPoints(entry.calendar);
80 if (points == null || points.isEmpty()) {
82 if (points == null) {
83 points = new ArrayList<LocationEntry>();
85 points.add(entry);
86 mPointsMap.put(entry.day, points);
88 if (!points.contains(entry)) {
90 points.add(entry);