Searched defs:next (Results 1 - 25 of 116) sorted by relevance

12345

/frameworks/base/tools/aapt2/
H A DResChunkPullParser.cpp26 ResChunkPullParser::Event ResChunkPullParser::next() { function in class:aapt::ResChunkPullParser
H A DScopedXmlPullParser.cpp28 while (isGoodEvent(next()));
31 XmlPullParser::Event ScopedXmlPullParser::next() { function in class:aapt::ScopedXmlPullParser
36 const Event event = mParser->next();
H A DXliffXmlPullParser.cpp27 XmlPullParser::Event XliffXmlPullParser::next() { function in class:aapt::XliffXmlPullParser
28 while (XmlPullParser::isGoodEvent(mParser->next())) {
51 // We hit a tag that was ignored, so get the next event.
/frameworks/base/services/core/java/com/android/server/am/
H A DLaunchWarningWindow.java30 public LaunchWarningWindow(Context context, ActivityRecord cur, ActivityRecord next) { argument
46 icon.setImageDrawable(next.info.applicationInfo.loadIcon(context.getPackageManager()));
49 next.info.applicationInfo.loadLabel(context.getPackageManager()).toString()));
/frameworks/av/media/libstagefright/
H A DMediaBufferGroup.cpp32 MediaBuffer *next; local
34 buffer = next) {
35 next = buffer->nextBuffer();
/frameworks/base/core/java/android/content/
H A DCursorEntityIterator.java56 * @see EntityIterator#next()
67 * Returns the next object in the iteration, i.e. returns the element in
70 * @return the next object.
75 public Entity next() { method in class:CursorEntityIterator
77 throw new IllegalStateException("calling next() when the iterator is closed");
80 throw new IllegalStateException("you may only call next() if hasNext() is true");
/frameworks/base/core/java/android/util/
H A DFastImmutableArraySet.java69 public T next() { method in class:FastImmutableArraySet.FastIterator
/frameworks/base/core/jni/android/graphics/
H A DAutoDecodeCancel.cpp37 AutoDecoderCancel* next = fNext; local
41 prev->fNext = next;
44 gAutoDecoderCancel = next;
46 if (next) {
47 SkASSERT(next->fPrev == this);
48 next->fPrev = prev;
/frameworks/base/graphics/java/android/graphics/
H A DRegionIterator.java33 * Return the next rectangle in the region. If there are no more rectangles
37 public final boolean next(Rect r) { method in class:RegionIterator
/frameworks/base/sax/java/android/sax/
H A DChildren.java52 current = current.next;
57 previous.next = current;
79 current = current.next;
89 Child next; field in class:Children.Child
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DEventStreamTransformation.java28 * output events to the next transformation in the sequence set via
49 * internal state and to propagate the event to the next one to enable subsequent
78 * Sets the next transformation.
80 * @param next The next transformation.
82 public void setNext(EventStreamTransformation next); argument
/frameworks/av/drm/common/
H A DDrmConstraints.cpp65 const String8& DrmConstraints::KeyIterator::next() { function in class:DrmConstraints::KeyIterator
108 String8 DrmConstraints::Iterator::next() { function in class:DrmConstraints::Iterator
H A DDrmInfoRequest.cpp72 const String8& DrmInfoRequest::KeyIterator::next() { function in class:DrmInfoRequest::KeyIterator
101 String8& DrmInfoRequest::Iterator::next() { function in class:DrmInfoRequest::Iterator
H A DDrmMetadata.cpp68 const String8& DrmMetadata::KeyIterator::next() { function in class:DrmMetadata::KeyIterator
113 String8 DrmMetadata::Iterator::next() { function in class:DrmMetadata::Iterator
H A DDrmInfo.cpp78 const String8& DrmInfo::KeyIterator::next() { function in class:DrmInfo::KeyIterator
106 String8& DrmInfo::Iterator::next() { function in class:DrmInfo::Iterator
H A DDrmSupportInfo.cpp131 String8& DrmSupportInfo::FileSuffixIterator::next() { function in class:DrmSupportInfo::FileSuffixIterator
155 String8& DrmSupportInfo::MimeTypeIterator::next() { function in class:DrmSupportInfo::MimeTypeIterator
/frameworks/av/services/audioflinger/
H A DStateQueue.cpp62 const T *next = (const T *) atomic_load_explicit(&mNext, memory_order_acquire); local
64 if (next != mCurrent) {
65 mAck = next; // no additional barrier needed
66 mCurrent = next;
71 return next;
/frameworks/base/core/java/android/os/
H A DBroadcaster.java44 r.next = r;
54 r = r.next;
64 reg.next = r;
66 r.prev.next = reg;
113 r = r.next;
160 r = r.next;
185 r = r.next;
204 Registration next; field in class:Broadcaster.Registration
/frameworks/base/libs/hwui/utils/
H A DRingBuffer.h37 T& next() { function in class:android::uirenderer::RingBuffer
H A DLinearAllocator.h112 DestructorNode* next = nullptr; member in struct:android::uirenderer::LinearAllocator::DestructorNode
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.h33 struct list_elem_s *next; member in struct:list_elem_s
42 struct list_sub_elem_s *next; member in struct:list_sub_elem_s
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DBmsgTokenizer.java73 public Property next(boolean alwaysReturn) throws ParseException { method in class:BmsgTokenizer
97 public Property next() throws ParseException { method in class:BmsgTokenizer
98 return next(false);
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/utils/
H A DBmsgTokenizer.java73 public Property next(boolean alwaysReturn) throws ParseException { method in class:BmsgTokenizer
97 public Property next() throws ParseException { method in class:BmsgTokenizer
98 return next(false);
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DExportTestProvider.java61 public Entity next() { method in class:ExportTestProvider.MockEntityIterator
62 return mIterator.next();
/frameworks/support/v7/recyclerview/src/android/support/v7/util/
H A DMessageThreadUtil.java60 SyncQueueItem msg = mQueue.next();
76 msg = mQueue.next();
128 SyncQueueItem msg = mQueue.next();
166 private SyncQueueItem next; field in class:MessageThreadUtil.SyncQueueItem
176 next = null;
181 next = sPool;
195 sPool = sPool.next;
196 item.next = null;
222 synchronized SyncQueueItem next() { method in class:MessageThreadUtil.MessageQueue
226 final SyncQueueItem next
[all...]

Completed in 1256 milliseconds

12345