Searched refs:next (Results 101 - 125 of 322) sorted by relevance

1234567891011>>

/frameworks/base/media/java/android/media/
H A DRemoteControlClient.java104 * Playback state of a RemoteControlClient which is skipping to the next
281 * Flag indicating a RemoteControlClient makes use of the "next" media key.
326 * This can for instance happen when playback is at the end of a playlist, and the "next"
649 // playback position moving, schedule next position drift check
676 // no drift, schedule the next drift check
1330 final DisplayInfoForClient di = (DisplayInfoForClient) displayIterator.next();
1358 final DisplayInfoForClient di = (DisplayInfoForClient) displayIterator.next();
1386 final DisplayInfoForClient di = (DisplayInfoForClient) displayIterator.next();
1412 if (!sendArtworkToDisplay((DisplayInfoForClient) displayIterator.next())) {
1458 final DisplayInfoForClient di = (DisplayInfoForClient) displayIterator.next();
[all...]
/frameworks/base/services/input/
H A DInputDispatcher.h403 T* next; member in struct:android::InputDispatcher::Link
407 inline Link() : next(NULL), prev(NULL) { }
622 tail->next = entry;
626 entry->next = NULL;
631 entry->next = head;
643 entry->prev->next = entry->next;
645 head = entry->next;
647 if (entry->next) {
648 entry->next
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
H A DFusedPrintersProvider.java556 parser.next();
559 parser.next();
566 parser.next();
584 parser.next();
592 parser.next();
595 parser.next();
626 parser.next();
/frameworks/base/tools/aidl/
H A Dgenerate_java_binder.cpp284 arg = arg->next;
331 arg = arg->next;
377 arg = arg->next;
397 arg = arg->next;
450 arg = arg->next;
483 arg = arg->next;
554 item = item->next;
H A Dgenerate_java_rpc.cpp203 arg = arg->next;
255 arg = arg->next;
663 arg = arg->next;
707 arg = arg->next;
785 arg = arg->next;
827 arg = arg->next;
872 arg = arg->next;
895 arg = arg->next;
984 item = item->next;
/frameworks/base/core/java/android/content/
H A DIntentFilter.java883 * any character, and '\' to escape the next character.
1161 return it.hasNext() ? it.next() : null;
1165 final String category = it.next();
1353 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
1423 sb.append(it.next()); sb.append("\"");
1432 sb.append(it.next()); sb.append("\"");
1441 sb.append(it.next()); sb.append("\"");
1448 PatternMatcher pe = it.next();
1458 AuthorityEntry ae = it.next();
1470 PatternMatcher pe = it.next();
[all...]
/frameworks/base/core/java/android/view/
H A DFocusFinder.java26 * The algorithm used for finding the next focusable view in a given direction
57 * Find the next view to take focus in root's descendants, starting from the view
62 * @return The next focusable view, or null if none exists.
69 * Find the next view to take focus in root's descendants, searching from
74 * @return The next focusable view, or null if none exists.
82 View next = null;
84 next = findNextUserSpecifiedFocus(root, focused, direction);
86 if (next != null) {
87 return next;
94 next
[all...]
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java178 public F next() { method in class:IntentResolver.IteratorWrapper
179 return (mCur = mI.next());
395 String name = i.next();
426 String name = i.next();
456 String name = i.next();
472 String name = i.next();
/frameworks/base/core/java/android/transition/
H A DTransitionInflater.java127 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
199 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
261 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
/frameworks/base/core/java/android/view/animation/
H A DAnimationUtils.java103 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
180 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
297 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardPatternView.java307 private void next() { method in class:KeyguardPatternView.AccountAnalyzer
322 next();
339 next();
/frameworks/base/services/java/com/android/server/location/
H A DGeofenceManager.java151 GeofenceState state = iter.next();
177 GeofenceState state = iter.next();
190 GeofenceState state = iter.next();
/frameworks/av/include/media/
H A DIMediaPlayer.h68 virtual status_t setNextPlayer(const sp<IMediaPlayer>& next) = 0;
/frameworks/av/media/libstagefright/id3/
H A Dtestid3.cpp96 it.next();
/frameworks/base/core/java/android/database/
H A DCursorJoiner.java56 * The result of a call to next().
117 * Returns whether or not there are more rows to compare using next().
142 * Returns the comparison result of the next row from each cursor. If one cursor
148 * Once next() has been called the cursors specified in the result of the call to
149 * next() are guaranteed to point to the row that was indicated. Reading values
150 * from the cursor that was not indicated in the call to next() will result in
156 public Result next() { method in class:CursorJoiner
158 throw new IllegalStateException("you must only call next() when hasNext() is true");
213 * Increment the cursors past the rows indicated in the most recent call to next().
214 * This will only have an affect once per call to next()
[all...]
/frameworks/base/core/java/android/os/
H A DLooper.java123 Message msg = queue.next(); // might block
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DActivityManagerTest.java119 ActivityManager.ProcessErrorStateInfo info = iter.next();
/frameworks/base/core/tests/coretests/src/android/os/
H A DFileObserverTest.java113 Map map = it.next();
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DBaselineButtonsTest.java48 mNext = (ImageButton) activity.findViewById(R.id.next);
/frameworks/base/location/java/android/location/
H A DGpsStatus.java52 public GpsSatellite next() { method in class:GpsStatus.SatelliteIterator
/frameworks/base/services/java/com/android/server/am/
H A DCompatModePackages.java68 eventType = parser.next();
72 eventType = parser.next();
93 eventType = parser.next();
346 Map.Entry<String, Integer> entry = it.next();
/frameworks/ex/common/java/com/android/common/
H A DNetworkConnectivityListener.java100 Handler target = it.next();
/frameworks/base/core/java/android/content/res/
H A DColorStateList.java121 while ((type=parser.next()) != XmlPullParser.START_TAG
186 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerInfo.java85 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
104 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
/frameworks/base/core/java/android/webkit/
H A DFindActionModeCallback.java73 * the find next or find previous button to find all of the matches.
110 * Move the highlight to the next match.
111 * @param next If true, find the next match further down in the document.
114 private void findNext(boolean next) { argument
124 // There are no matches, so moving to the next match will not do
128 mWebView.findNext(next);

Completed in 663 milliseconds

1234567891011>>