Searched refs:until (Results 1 - 8 of 8) sorted by relevance

/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DEventRecurrence.java52 public String until; field in class:EventRecurrence
351 if (!TextUtils.isEmpty(this.until)) {
353 s.append(until);
481 (until == null ? er.until == null : until.equals(er.until)) &&
505 * The original parser always set all of the "count" fields, "wkst", and "until",
514 until = null;
741 Time until
[all...]
H A DRecurrenceProcessor.java87 // first see if there are any "until"s specified. if so, use the latest
88 // until / rdate.
93 } else if (rrule.until != null) {
94 // according to RFC 2445, until must be in UTC.
95 mIterator.parse(rrule.until);
110 // If there were only "until"s and no "count"s, then return the
111 // last "until" date or "rdate".
645 // do so) because the "until" date string is specified in UTC and that
759 Time until = mUntil;
767 if (rangeEndDateValue == Long.MAX_VALUE && r.until
[all...]
/frameworks/av/media/libstagefright/
H A DFrameRenderTracker.cpp110 const FrameRenderTracker::Info *until, bool dropIncomplete) {
133 bool foundFrame = (Info *)&*it == until;
109 checkFencesAndGetRenderedFrames( const FrameRenderTracker::Info *until, bool dropIncomplete) argument
H A DACodec.cpp1283 void ACodec::notifyOfRenderedFrames(bool dropIncomplete, FrameRenderTracker::Info *until) { argument
1287 mRenderTracker.checkFencesAndGetRenderedFrames(until, dropIncomplete);
/frameworks/av/include/media/stagefright/
H A DFrameRenderTracker.h111 // Checks to see if any frames have rendered up until |until|. If |until| is NULL or not a
113 // Returns list of rendered frames up-until the frame pointed to by |until| or the first
114 // unrendered frame, as well as any dropped frames (those with invalid fence) up-until |until|.
116 // If |dropIncomplete| is true, unrendered frames up-until |until| will also be dropped from the
118 // (This will effectively clear the render queue up-until (an
[all...]
H A DACodec.h400 // Checks to see if any frames have rendered up until |until|, and to notify client
401 // (MediaCodec) of rendered frames up-until the frame pointed to by |until| or the first
403 // If |dropIncomplete| is true, unrendered frames up-until |until| will be dropped from the
405 // (This will effectively clear the render queue up-until (and including) |until|.)
406 // If |until| is NULL, or is not in the rendered queue, this method will check all frames.
408 bool dropIncomplete = false, FrameRenderTracker::Info *until
[all...]
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DEventRecurrenceTest.java40 /* String until */ null,
61 /* String until */ null,
82 /* String until */ null,
103 /* String until */ null,
124 /* String until */ null,
145 /* String until */ null,
166 /* String until */ null,
185 // with an until
188 /* String until */ "112233T223344Z",
210 /* String until */ nul
718 verifyRecurType(String recur, int freq, String until, int count, int interval, int[] bysecond, int[] byminute, int[] byhour, int[] byday, int[] bydayNum, int[] bymonthday, int[] byyearday, int[] byweekno, int[] bymonth, int[] bysetpos, int wkst) argument
[all...]
/frameworks/base/services/core/java/com/android/server/policy/
H A DWindowOrientationListener.java965 private float remainingMS(long now, long until) { argument
966 return now >= until ? 0 : (until - now) * 0.000001f;

Completed in 230 milliseconds