Searched refs:next (Results 1 - 25 of 322) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/lib/Support/Unix/
H A DPathV3.inc40 // -> jump to the next not '/'
43 // -> jump to the next not '/'
58 size_t next = handler + 1;
59 if (next >= pathname.size())
61 switch(pathname[next]) { // next = handler + 1;
63 while (next < pathname.size() && separator == pathname[next])
64 ++next;
65 // next i
[all...]
/frameworks/compile/mclinker/lib/Support/Windows/
H A DPathV3.inc33 // -> jump to the next not '/'
36 // -> jump to the next not '/'
51 size_t next = handler + 1;
52 if (next >= pathname.size())
54 switch(pathname[next]) { // next = handler + 1;
56 while (next < pathname.size() && separator == pathname[next])
57 ++next;
58 // next i
[all...]
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParserTest.java46 assertEquals(XmlPullParser.START_DOCUMENT, parser.next());
48 assertEquals(XmlPullParser.START_TAG, parser.next());
51 assertEquals(XmlPullParser.TEXT, parser.next());
53 assertEquals(XmlPullParser.START_TAG, parser.next());
55 assertEquals(XmlPullParser.TEXT, parser.next());
56 assertEquals(XmlPullParser.END_TAG, parser.next());
58 assertEquals(XmlPullParser.TEXT, parser.next());
60 assertEquals(XmlPullParser.START_TAG, parser.next());
62 assertEquals(XmlPullParser.END_TAG, parser.next());
64 assertEquals(XmlPullParser.TEXT, parser.next());
[all...]
/frameworks/base/core/java/android/os/
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/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/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/base/core/java/android/view/
H A DChoreographer.java35 * the next display frame.
44 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
46 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
49 * next display frame, use {@link View#postInvalidateOnAnimation()} or
78 // wait before posting the next animation message. It is important that the
249 * on the next frame, but this is much better than waiting a whole 16ms and likely
272 * Posts a callback to run on the next frame.
278 * @param action The callback action to run during the next frame.
289 * Posts a callback to run on the next frame after the specified delay.
295 * @param action The callback action to run during the next fram
752 public CallbackRecord next; field in class:Choreographer.CallbackRecord
[all...]
/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
H A DAtlas.java235 * the next bitmap.
257 Cell next; field in class:Atlas.SlicePolicy.Cell
275 mRoot.next = first;
281 Cell cell = mRoot.next;
290 cell = cell.next;
419 prev.next = first;
424 prev.next = second;
425 second.next = cell.next;
427 prev.next
[all...]
/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/native/libs/binder/
H A DMemoryDealer.cpp64 newNode->next = node->next;
65 if (node->next == 0) mLast = newNode;
66 else node->next->prev = newNode;
67 node->next = newNode;
72 newNode->next = node;
74 else node->prev->next = newNode;
81 newNode->prev = newNode->next = 0;
84 newNode->next = mFirst;
95 newNode->next
148 mutable chunk_t* next; member in struct:android::SimpleBestFitAllocator::chunk_t
[all...]
/frameworks/base/libs/hwui/font/
H A DFontUtil.h61 #define AUTO_KERN(prev, next) (((next) - (prev) + 32) >> 6 << 16)
/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/av/include/drm/
H A DDrmMetadata.h47 const String8& next();
69 String8 next();
82 String8 key = keyIt.next();
H A DDrmConstraints.h83 const String8& next();
106 String8 next();
119 String8 key = keyIt.next();
H A DDrmInfo.h68 const String8& next();
92 String8& next();
/frameworks/av/media/libstagefright/
H A DMediaBufferGroup.cpp32 MediaBuffer *next; local
34 buffer = next) {
35 next = buffer->nextBuffer();
/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/libs/hwui/
H A DPatchCache.cpp96 while (i.next()) {
103 BufferBlock* next = block->next; local
105 block = next;
112 while (i.next()) {
145 block->next = mFreeBlocks;
191 block = block->next;
211 previous->next = block->next;
213 mFreeBlocks = block->next;
[all...]
/frameworks/base/tools/aidl/
H A Daidl_language_y.y59 while (p && p->next) {
60 p=p->next;
63 p->next = (document_item_type*)$2.document_item;
86 b->document_item.next = NULL;
107 b->document_item.next = NULL;
132 c->document_item.next = NULL;
142 c->document_item.next = NULL;
152 c->document_item.next = NULL;
193 while (p && p->next) {
194 p=p->next;
[all...]
H A Daidl_language.h18 struct extra_text_type* next; member in struct:extra_text_type
39 struct arg_type *next; member in struct:arg_type
48 struct interface_item_type* next; member in struct:interface_item_type
77 struct document_item_type* next; member in struct:document_item_type
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboardHelper.java251 Keyboard next = null;
253 next = mSymbolsKeyboard;
255 next = mQwertyKeyboard;
257 if (next != null) {
258 mKeyboardView.setKeyboard(next);
273 PasswordEntryKeyboard next = null;
278 next = isAlphaMode ? mQwertyKeyboardShifted : mSymbolsKeyboardShifted;
281 next = isAlphaMode ? mQwertyKeyboardShifted : mSymbolsKeyboardShifted;
284 next = isAlphaMode ? mQwertyKeyboard : mSymbolsKeyboard;
286 if (next !
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityStack.java96 // next activity.
170 * next one, this variable holds the activity that is currently being paused.
376 * @return Returns the HistoryRecord of the next activity on the stack.
746 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
747 if (next == null || next.task != prev.task) {
777 // awake until the next activity is started.
804 if (DEBUG_PAUSE) Slog.v(TAG, "Activity not running, resuming next.");
956 private void completeResumeLocked(ActivityRecord next) { argument
957 next
[all...]
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");

Completed in 4563 milliseconds

1234567891011>>