Home | History | Annotate | Download | only in media

Lines Matching full:month

98         // Create textures for month names.
197 // Markers for a full month would be for example: Jan 5 10 15 20 25
251 // Detect month rollovers and emit a month marker.
252 final int month = time.get(Calendar.MONTH);
254 if (month != lastMonth) {
255 lastMonth = month;
257 marker = new Marker(dx, time.getTimeInMillis(), year, month, dayBlock, Marker.TYPE_MONTH, increment);
262 marker = new Marker(dx, time.getTimeInMillis(), year, month, dayBlock, Marker.TYPE_DAY, increment);
266 marker = new Marker(dx, time.getTimeInMillis(), year, month, dayBlock, Marker.TYPE_DOT, increment);
402 Texture month = mMonthLabels[anchor.month];
407 month = mDateUnknown;
412 view.loadTexture(month);
418 float expectedWidth = month.getWidth()
422 mBackgroundRect.bottom = (int) (month.getHeight() + 20 * App.PIXEL_DENSITY);
445 view.draw2D(month, x, y);
447 x += month.getWidth() + 3 * App.PIXEL_DENSITY;
496 Marker(float x, long time, int year, int month, int day, int type, int expectedCapacity) {
499 this.month = month;
510 public final int month;