Searched refs:next (Results 251 - 275 of 322) sorted by relevance

<<111213

/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java279 * A Drawable can call this to schedule the next frame of its
868 while ((type=parser.next()) != XmlPullParser.START_TAG &&
/frameworks/base/keystore/java/android/security/
H A DAndroidKeyStore.java116 caList[i++] = it.next();
/frameworks/base/media/java/android/media/videoeditor/
H A DVideoEditorImpl.java1098 eventType = parser.next();
1624 final MediaItem t = it.next();
1755 Transition t = it.next();
1778 Transition t = it.next();
1785 * Invalidate the reference in the next media item
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsVerticalScrollView.java110 old = recycledViews.next();
/frameworks/base/services/input/
H A DEventHub.h206 * After returning, the EventHub holds onto a wake lock until the next call to getEvent.
247 /* Requests the EventHub to reopen all input devices on the next call to getEvents(). */
323 Device* next; member in struct:android::EventHub::Device
438 // The array of pending epoll events and the index of the next event to be handled.
H A DInputDispatcher.cpp182 for (SkRegion::Iterator it(region); !it.done(); it.next()) {
236 // If any commands were run then force the next poll to wake up immediately.
251 // Reset the key repeat timer whenever we disallow key events, even if the next event
396 *nextWakeupTime = LONG_LONG_MIN; // force next poll to wake up immediately
722 // repeat here, but we disable our own next key repeat timer since it is clear that
755 return false; // wait until next wakeup
993 // Force poll loop to wake up immediately on next iteration once we get the
1493 // in the next iteration.
2058 // Notify other system components and prepare to start the next dispatch cycle.
2626 lastInjectedEntry->next
[all...]
/frameworks/base/services/java/com/android/server/
H A DTwilightService.java428 mLocationManager.getLastKnownLocation(providers.next());
498 // schedule next update
H A DVibratorService.java383 Vibration vib = iter.next();
587 // If this vibration finished naturally, start the next
/frameworks/base/tools/aapt/
H A DCommand.cpp400 while ((code=tree.next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) {
451 while ((code=tree.next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) {
619 while ((code=tree.next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) {
732 // This next group of variables is used to implement a group of
793 while ((code=tree.next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) {
1963 // If this is the packaging step, generate the dependency file next to
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DDatePickerDialog.java426 iterator.next().onDateChanged();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIntRangeManager.java217 // found missing link? check if next range can be joined
237 // found missing link? check if next range can be joined
287 // of the next range to join is always startIndex+1.
312 // of the next range to join is always startIndex+1.
337 // of the next range to join is always startIndex+1.
400 // of the next range to join is always startIndex+1 (joinIndex).
624 IntRange currRange = (IntRange) itr.next();
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardComposer.java536 Entity entity = entityIterator.next();
/frameworks/support/v4/java/android/support/v4/content/
H A DFileProvider.java568 while ((type = in.next()) != END_DOCUMENT) {
/frameworks/volley/src/com/android/volley/toolbox/
H A DDiskBasedCache.java263 Map.Entry<String, CacheHeader> entry = iterator.next();
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java793 while ((event = parser.next()) != XmlResourceParser.END_DOCUMENT) {
854 while ((event = parser.next()) != XmlResourceParser.END_DOCUMENT) {
/frameworks/base/core/java/android/widget/
H A DRemoteViewsAdapter.java750 /** Returns the next index to load, and whether that index was directly requested or not */
757 Integer i = mRequestedIndices.iterator().next();
765 Integer i = mLoadIndices.iterator().next();
955 // Get the next index to load
965 // Queue up for the next one to load
/frameworks/base/media/java/android/media/
H A DAudioService.java1422 Map.Entry entry = (Map.Entry)i.next();
1601 SetModeDeathHandler h = (SetModeDeathHandler)iter.next();
2450 // next time we boot and cannot be "inactive"
2939 Map.Entry entry = (Map.Entry)i.next();
3016 Map.Entry entry = (Map.Entry)i.next();
3023 Map.Entry entry = (Map.Entry)i.next();
3036 Map.Entry entry = (Map.Entry)i.next();
3176 Map.Entry entry = (Map.Entry)i.next();
3559 Map.Entry device = (Map.Entry)i.next();
3812 // the next tim
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.cpp58 static inline float AdjustRatio(float current, float next) { argument
59 return (current + next) / 2.0;
/frameworks/base/services/java/com/android/server/accessibility/
H A DScreenMagnifier.java83 * scale. The next time the user magnifies the same magnification scale
92 * default magnification scale. The next time the user magnifies the same
363 public void setNext(EventStreamTransformation next) { argument
364 mNext = next;
/frameworks/native/libs/ui/
H A DRegion.cpp626 it.next();
646 it.next();
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp565 AudioStream *next = mChain->mNext; local
567 mChain = next;
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp400 size_t next = ((size_t)cookie)+1; local
401 return next > mAssetPaths.size() ? NULL : (void*)next;
/frameworks/av/media/libstagefright/
H A DMP3Extractor.cpp120 * The next read position should start from the end of
380 com->next();
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityServiceInfo.java426 type = parser.next();
/frameworks/base/core/java/android/accounts/
H A DChooseTypeAndAccountActivity.java224 runAddAccountForAuthenticator(mSetOfRelevantAccountTypes.iterator().next());

Completed in 535 milliseconds

<<111213