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

1234

/frameworks/base/services/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/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.cpp61 const T *next = (const T *) android_atomic_acquire_load((volatile int32_t *) &mNext); local
62 if (next != mCurrent) {
63 mAck = next; // no additional barrier needed
64 mCurrent = next;
69 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
H A DMessage.java94 /*package*/ Message next; field in class:Message
110 sPool = m.next;
111 m.next = null;
253 next = sPool;
H A DMessageQueue.java45 // Indicates whether next() is blocked waiting in pollOnce() with a non-zero timeout.
48 // The next barrier token.
128 Message next() { method in class:MessageQueue
141 // Try to retrieve the next message. Return if found.
146 // Stalled by a barrier. Find the next asynchronous message in the queue.
149 msg = msg.next;
160 prevMsg.next = msg.next;
162 mMessages = msg.next;
164 msg.next
[all...]
/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/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/av/media/libstagefright/include/
H A DMPEG4Extractor.h68 Track *next; member in struct:android::MPEG4Extractor::Track
106 SINF *next; member in struct:android::MPEG4Extractor::SINF
/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.h148 Category* next; member in class:mcld::SymbolCategory::Category
156 next(NULL) {
169 { return (NULL == next); }
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Drate_control.h28 struct tagdataPointArray *next; member in struct:tagdataPointArray
/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 524 milliseconds

1234