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

12345

/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.cpp36 AutoDecoderCancel* next = fNext; local
40 prev->fNext = next;
43 gAutoDecoderCancel = next;
45 if (next) {
46 SkASSERT(next->fPrev == this);
47 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/av/media/libeffects/factory/
H A DEffectsFactory.h32 struct list_elem_s *next; member in struct:list_elem_s
41 struct list_sub_elem_s *next; member in struct:list_sub_elem_s
/frameworks/av/media/libstagefright/foundation/
H A DADebug.cpp37 const char *next = value, *current; local
39 while (next != NULL) {
40 current = next;
41 next = strchr(current, ',');
42 if (next != NULL) {
43 ++next; // pass ,
59 if (errno != 0 || end == current || (end != colon && *end != '\0' && end != next)) {
68 size_t globLen = (next == NULL ? strlen(colon) : (next - 1 - colon));
/frameworks/compile/mclinker/include/mcld/ADT/GraphLite/
H A DListDigraph.h43 Node *prev, *next; member in struct:mcld::graph::ListDigraph::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/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/widget/
H A DLayoutState.java46 * Current position on the adapter to get the next item.
77 * Gets the view for the next element that we should render.
78 * Also updates current item index to the next item, based on {@link #mItemDirection}
80 * @return The next element that we should render.
82 View next(RecyclerView.Recycler recycler) { method in class:LayoutState
/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/location/java/android/location/
H A DGpsStatus.java52 public GpsSatellite next() { method in class:GpsStatus.SatelliteIterator
/frameworks/compile/mclinker/include/mcld/MC/
H A DSymbolCategory.h145 Category* next; member in class:mcld::SymbolCategory::Category
153 next(NULL) {
166 { return (NULL == next); }

Completed in 409 milliseconds

12345