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

12

/frameworks/support/core/ktx/src/main/java/androidx/core/view/
H A DMenu.kt34 for (index in 0 until size()) {
56 for (index in 0 until size()) {
63 for (index in 0 until size()) {
H A DViewGroup.kt54 for (index in 0 until childCount) {
61 for (index in 0 until childCount) {
/frameworks/support/preference/ktx/src/main/java/androidx/preference/
H A DPreferenceGroup.kt38 for (index in 0 until preferenceCount) {
67 for (index in 0 until preferenceCount) {
74 for (index in 0 until preferenceCount) {
/frameworks/support/core/ktx/src/main/java/androidx/core/preference/
H A DPreferenceGroup.kt44 for (index in 0 until preferenceCount) {
79 for (index in 0 until preferenceCount) {
87 for (index in 0 until preferenceCount) {
/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.cpp112 const FrameRenderTracker::Info *until, bool dropIncomplete) {
135 bool foundFrame = (Info *)&*it == until;
111 checkFencesAndGetRenderedFrames( const FrameRenderTracker::Info *until, bool dropIncomplete) argument
/frameworks/support/navigation/safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/
H A DXmlPositionParser.kt70 (0 until parser.attributeCount).find {
/frameworks/av/include/media/stagefright/
H A DFrameRenderTracker.h114 // Checks to see if any frames have rendered up until |until|. If |until| is NULL or not a
116 // Returns list of rendered frames up-until the frame pointed to by |until| or the first
117 // unrendered frame, as well as any dropped frames (those with invalid fence) up-until |until|.
119 // If |dropIncomplete| is true, unrendered frames up-until |until| will also be dropped from the
121 // (This will effectively clear the render queue up-until (an
[all...]
H A DACodec.h244 // format updates. This will equal to mOutputFormat until the first actual frame is received.
528 // Checks to see if any frames have rendered up until |until|, and to notify client
529 // (MediaCodec) of rendered frames up-until the frame pointed to by |until| or the first
531 // If |dropIncomplete| is true, unrendered frames up-until |until| will be dropped from the
533 // (This will effectively clear the render queue up-until (and including) |until|.)
534 // If |until| i
[all...]
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DFrameRenderTracker.h114 // Checks to see if any frames have rendered up until |until|. If |until| is NULL or not a
116 // Returns list of rendered frames up-until the frame pointed to by |until| or the first
117 // unrendered frame, as well as any dropped frames (those with invalid fence) up-until |until|.
119 // If |dropIncomplete| is true, unrendered frames up-until |until| will also be dropped from the
121 // (This will effectively clear the render queue up-until (an
[all...]
/frameworks/support/collection/ktx/src/main/java/androidx/collection/
H A DLongSparseArray.kt70 for (index in 0 until size()) {
H A DSparseArray.kt70 for (index in 0 until size()) {
/frameworks/support/core/ktx/src/main/java/androidx/core/util/
H A DLongSparseArray.kt89 for (index in 0 until size()) {
H A DSparseArray.kt74 for (index in 0 until size()) {
H A DSparseBooleanArray.kt75 for (index in 0 until size()) {
H A DSparseIntArray.kt74 for (index in 0 until size()) {
H A DSparseLongArray.kt88 for (index in 0 until size()) {
/frameworks/support/jetifier/jetifier/core/src/main/kotlin/com/android/tools/build/jetifier/core/rule/
H A DRewriteRule.kt81 for (i in 0 until matcher.groupCount()) {
/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.java1010 private float remainingMS(long now, long until) { argument
1011 return now >= until ? 0 : (until - now) * 0.000001f;
/frameworks/base/core/java/android/app/
H A DINotificationManager.aidl104 void snoozeNotificationUntilFromListener(in INotificationListener token, String key, long until);
/frameworks/support/lifecycle/compiler/src/main/kotlin/androidx/lifecycle/
H A Dwriter.kt197 private fun generateParamString(count: Int) = (0 until count).joinToString(",") { N }
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/ext/
H A Delement_ext.kt200 return (0 until fromTypeArgs.size).all { index ->
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/parser/
H A DSqlParser.kt45 queryType = (0 until statement.childCount).map {

Completed in 4965 milliseconds

12