Searched refs:next (Results 1 - 25 of 444) 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.java35 assertEquals(XmlPullParser.START_DOCUMENT, parser.next());
37 assertEquals(XmlPullParser.START_TAG, parser.next());
40 assertEquals(XmlPullParser.TEXT, parser.next());
42 assertEquals(XmlPullParser.START_TAG, parser.next());
44 assertEquals(XmlPullParser.TEXT, parser.next());
45 assertEquals(XmlPullParser.END_TAG, parser.next());
47 assertEquals(XmlPullParser.TEXT, parser.next());
49 assertEquals(XmlPullParser.START_TAG, parser.next());
51 assertEquals(XmlPullParser.END_TAG, parser.next());
53 assertEquals(XmlPullParser.TEXT, parser.next());
[all...]
/frameworks/base/core/java/android/os/
H A DMessageQueue.java44 // Indicates whether next() is blocked waiting in pollOnce() with a non-zero timeout.
47 // The next barrier token.
127 Message next() { method in class:MessageQueue
146 // Try to retrieve the next message. Return if found.
151 // Stalled by a barrier. Find the next asynchronous message in the queue.
154 msg = msg.next;
165 prevMsg.next = msg.next;
167 mMessages = msg.next;
169 msg.next
[all...]
/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/base/libs/hwui/renderthread/
H A DRenderThread.cpp47 RenderTask* TaskQueue::next() { function in class:android::uirenderer::renderthread::TaskQueue
75 RenderTask* next = mHead; local
76 while (next && next->mRunAt <= task->mRunAt) {
77 previous = next;
78 next = next->mNext;
85 if (next) {
86 task->mNext = next;
112 // If task is the head we can just call next() t
344 RenderTask* next = mQueue.peek(); local
[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/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
247 * on the next frame, but this is much better than waiting a whole 16ms and likely
278 * Posts a callback to run on the next frame.
284 * @param action The callback action to run during the next frame.
295 * Posts a callback to run on the next frame after the specified delay.
301 * @param action The callback action to run during the next fram
758 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/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/base/core/java/android/hardware/camera2/legacy/
H A DRequestQueue.java49 * Return and remove the next burst on the queue.
53 * @return a pair containing the next burst and the current frame number, or null if none exist.
56 BurstHolder next = mRequestQueue.poll();
57 if (next == null && mRepeatingRequest != null) {
58 next = mRepeatingRequest;
60 next.getNumberOfRequests();
63 if (next == null) {
67 Pair<BurstHolder, Long> ret = new Pair<BurstHolder, Long>(next, mCurrentFrameNumber);
68 mCurrentFrameNumber += next.getNumberOfRequests();
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DChildHelper.java357 Bucket next; field in class:ChildHelper.Bucket
362 next.set(index - BITS_PER_WORD);
369 if (next == null) {
370 next = new Bucket();
376 if (next != null) {
377 next.clear(index - BITS_PER_WORD);
388 return next.get(index - BITS_PER_WORD);
396 if (next != null) {
397 next.reset();
404 next
[all...]
/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/compile/mclinker/lib/ADT/GraphLite/
H A DListDigraph.cpp17 : prev(NULL), next(NULL), first_in(NULL), first_out(NULL) {
47 m_pFreeNodeHead = m_pFreeNodeHead->next;
52 result->next = m_pNodeHead;
100 // 1. connect previous node and next node.
101 if (NULL != pNode.next) {
102 pNode.next->prev = pNode.prev;
106 pNode.prev->next = pNode.next;
109 m_pNodeHead = pNode.next;
129 pNode.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/base/core/tests/coretests/src/android/net/
H A DNetworkScorerAppManagerTest.java82 NetworkScorerAppData next = result.next();
83 assertEquals("package1", next.mPackageName);
84 assertNull(next.mConfigurationActivityClassName);
87 next = result.next();
88 assertEquals("package4", next.mPackageName);
89 assertEquals(".ConfigActivity", next.mConfigurationActivityClassName);
/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();
/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.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;
H A DFastThread.cpp96 // default to long sleep for next cycle
100 const FastThreadState *next = poll();
101 if (next == NULL) {
105 next = current;
108 command = next->mCommand;
109 if (next != current) {
112 dumpState = next->mDumpState != NULL ? next->mDumpState : mDummyDumpState;
113 logWriter = next->mNBLogWriter != NULL ? next
[all...]
/frameworks/base/libs/hwui/
H A DPatchCache.cpp96 while (i.next()) {
103 BufferBlock* next = block->next; local
105 block = next;
112 while (i.next()) {
160 block->next = mFreeBlocks;
207 block = block->next;
227 previous->next = block->next;
229 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...]

Completed in 581 milliseconds

1234567891011>>