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

12345

/frameworks/base/tools/aapt2/unflatten/
H A DResChunkPullParser.cpp27 ResChunkPullParser::Event ResChunkPullParser::next() { function in class:aapt::ResChunkPullParser
/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/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/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
86 * Sets the next transformation.
88 * @param next The next transformation.
90 public void setNext(EventStreamTransformation next); argument
H A DKeyboardInterceptor.java54 public void setNext(EventStreamTransformation next) { argument
55 mNext = next;
/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/media/libstagefright/foundation/
H A DMediaBufferGroup.cpp32 MediaBuffer *next; local
34 buffer = next) {
35 next = buffer->nextBuffer();
/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
/frameworks/base/tools/aapt2/io/
H A DFileSystem.cpp55 IFile* FileCollectionIterator::next() { function in class:aapt::io::FileCollectionIterator
/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/minikin/libs/minikin/
H A DFontLanguage.cpp46 size_t next; local
47 for (i++; i < length; i = next + 1) {
48 for (next = i; next < length; next++) {
49 char c = buf[next];
52 if (next - i == 4 && 'A' <= buf[i] && buf[i] <= 'Z') {
/frameworks/native/vulkan/libvulkan/
H A Ddebug_report.h72 Node* next; member in struct:vulkan::driver::DebugReportCallbackList::Node
/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/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.java61 SyncQueueItem msg = mQueue.next();
77 msg = mQueue.next();
137 SyncQueueItem msg = mQueue.next();
177 private SyncQueueItem next; field in class:MessageThreadUtil.SyncQueueItem
187 next = null;
192 next = sPool;
206 sPool = sPool.next;
207 item.next = null;
233 synchronized SyncQueueItem next() { method in class:MessageThreadUtil.MessageQueue
237 final SyncQueueItem next
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLayoutState.java50 * Current position on the adapter to get the next item.
94 * Gets the view for the next element that we should render.
95 * Also updates current item index to the next item, based on {@link #mItemDirection}
97 * @return The next element that we should render.
99 View next(RecyclerView.Recycler recycler) { method in class:LayoutState

Completed in 335 milliseconds

12345