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

1234567891011>>

/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/impl/
H A DLayoutParserWrapperTest.java40 assertEquals("Expected START_TAG", START_TAG, parser.next());
42 for (int next = parser.next(); next != START_TAG && next != END_DOCUMENT;
43 next = parser.next());
53 for (int next = parser.next();
54 (next !
[all...]
/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.inc34 // -> jump to the next not '/'
37 // -> jump to the next not '/'
52 size_t next = handler + 1;
53 if (next >= pathname.size())
55 switch (pathname[next]) { // next = handler + 1;
57 while (next < pathname.size() && separator == pathname[next])
58 ++next;
59 // next i
[all...]
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParserTest.java49 assertEquals(XmlPullParser.START_DOCUMENT, parser.next());
51 assertEquals(XmlPullParser.START_TAG, parser.next());
54 assertEquals(XmlPullParser.TEXT, parser.next());
56 assertEquals(XmlPullParser.START_TAG, parser.next());
58 assertEquals(XmlPullParser.TEXT, parser.next());
59 assertEquals(XmlPullParser.END_TAG, parser.next());
61 assertEquals(XmlPullParser.TEXT, parser.next());
63 assertEquals(XmlPullParser.START_TAG, parser.next());
65 assertEquals(XmlPullParser.END_TAG, parser.next());
67 assertEquals(XmlPullParser.TEXT, parser.next());
[all...]
/frameworks/rs/
H A DrsMap.h35 LinkNode* next; member in struct:android::renderscript::Map::LinkNode
46 LinkNode* next; local
48 next = p->next;
50 p = next;
65 node = node->next;
70 node->next = nullptr;
74 prev->next = node;
83 LinkNode* next; local
85 next
[all...]
H A DrsList.h18 LinkedBuffer() : next(nullptr) {}
24 LinkedBuffer* next; member in class:android::renderscript::List::LinkedBuffer
45 LinkedBuffer* p = firstBuffer.next;
46 LinkedBuffer* next; local
48 next = p->next;
50 p = next;
58 if ((void*)current >= (void*)&currentBuffer->next) {
60 currentBuffer->next = newBuffer;
71 if ((void*)p >= (void*)&buffer->next) {
[all...]
/frameworks/base/libs/hwui/font/
H A DFontUtil.h47 #define AUTO_KERN(prev, next) (((next) - (prev) + 32) >> 6 << 16)
/frameworks/minikin/tests/
H A DWordBreakerTests.cpp44 EXPECT_EQ(6, breaker.next()); // after "hello "
49 EXPECT_EQ((ssize_t)NELEM(buf), breaker.next()); // end
62 EXPECT_EQ(7, breaker.next()); // after "hel{SOFT HYPHEN}lo "
66 EXPECT_EQ((ssize_t)NELEM(buf), breaker.next()); // end
79 EXPECT_EQ(4, breaker.next()); // after CENT SIGN
83 EXPECT_EQ((ssize_t)NELEM(buf), breaker.next()); // end of string
96 EXPECT_EQ((ssize_t)NELEM(buf), breaker.next()); // end of string
116 EXPECT_EQ(7, breaker.next()); // after man + zwj + heart + zwj + man
119 EXPECT_EQ(17, breaker.next()); // after woman + zwj + heart + zwj + woman
122 EXPECT_EQ(22, breaker.next()); // afte
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/util/
H A DMessageThreadUtil.java62 SyncQueueItem msg = mQueue.next();
78 msg = mQueue.next();
139 SyncQueueItem msg = mQueue.next();
179 private SyncQueueItem next; field in class:MessageThreadUtil.SyncQueueItem
189 next = null;
194 next = sPool;
208 sPool = sPool.next;
209 item.next = null;
235 synchronized SyncQueueItem next() { method in class:MessageThreadUtil.MessageQueue
239 final SyncQueueItem next
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
H A DMessageQueueTest.java47 MessageThreadUtil.SyncQueueItem msg = mQueue.next();
63 MessageThreadUtil.SyncQueueItem msg = mQueue.next();
67 msg = mQueue.next();
71 msg = mQueue.next();
75 msg = mQueue.next();
85 MessageThreadUtil.SyncQueueItem msg = mQueue.next();
89 msg = mQueue.next();
93 msg = mQueue.next();
97 msg = mQueue.next();
112 MessageThreadUtil.SyncQueueItem msg = mQueue.next();
[all...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DSPVerifier.java97 castObject(children.next(), Asn1Constructed.class).getChildren().iterator();
98 mMimeType = castObject(logoTypeDetails.next(), Asn1String.class).getString();
100 Asn1Constructed hashes = castObject(logoTypeDetails.next(), Asn1Constructed.class);
104 Asn1Constructed urls = castObject(logoTypeDetails.next(), Asn1Constructed.class);
117 castObject(children.next(), Asn1Constructed.class).getChildren().iterator();
119 Asn1Object first = imageInfo.next();
121 first = imageInfo.next(); // Ignore optional LogotypeImageType
125 xSize = (int) castObject(imageInfo.next(), Asn1Integer.class).getValue();
126 ySize = (int) castObject(imageInfo.next(), Asn1Integer.class).getValue();
130 Asn1Object next
[all...]
/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.java403 Bucket next; field in class:ChildHelper.Bucket
408 next.set(index - BITS_PER_WORD);
415 if (next == null) {
416 next = new Bucket();
422 if (next != null) {
423 next.clear(index - BITS_PER_WORD);
434 return next.get(index - BITS_PER_WORD);
442 if (next != null) {
443 next.reset();
450 next
[all...]
/frameworks/base/core/tests/coretests/src/android/net/
H A DNetworkScorerAppManagerTest.java87 NetworkScorerAppData next = result.next();
88 assertEquals("package1", next.mPackageName);
89 assertEquals(1, next.mPackageUid);
90 assertNull(next.mConfigurationActivityClassName);
93 next = result.next();
94 assertEquals("package4", next.mPackageName);
95 assertEquals(4, next.mPackageUid);
96 assertEquals(".ConfigActivity", next
[all...]
/frameworks/base/libs/hwui/renderthread/
H A DRenderThread.cpp46 RenderTask* TaskQueue::next() { function in class:android::uirenderer::renderthread::TaskQueue
74 RenderTask* next = mHead; local
75 while (next && next->mRunAt <= task->mRunAt) {
76 previous = next;
77 next = next->mNext;
84 if (next) {
85 task->mNext = next;
111 // If task is the head we can just call next() t
377 RenderTask* next = mQueue.peek(); local
[all...]
/frameworks/base/core/java/android/os/
H A DMessageQueue.java54 // Indicates whether next() is blocked waiting in pollOnce() with a non-zero timeout.
57 // The next barrier token.
307 Message next() { method in class:MessageQueue
326 // Try to retrieve the next message. Return if found.
331 // Stalled by a barrier. Find the next asynchronous message in the queue.
334 msg = msg.next;
345 prevMsg.next = msg.next;
347 mMessages = msg.next;
349 msg.next
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DADebug.cpp40 const char *next = value, *current; local
41 while (next != NULL) {
42 current = next;
43 next = strchr(current, ',');
44 if (next != NULL) {
45 ++next; // pass ,
61 if (errno != 0 || end == current || (end != colon && *end != '\0' && end != next)) {
70 size_t globLen = (next == NULL ? strlen(colon) : (next - 1 - colon));
/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
150 mutable chunk_t* next; member in struct:android::SimpleBestFitAllocator::chunk_t
[all...]
/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/base/services/accessibility/java/com/android/server/accessibility/
H A DKeyboardInterceptor.java54 public void setNext(EventStreamTransformation next) { argument
55 mNext = next;
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
/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/core/java/android/view/
H A DChoreographer.java37 * the next display frame.
46 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
48 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
51 * next display frame, use {@link View#postInvalidateOnAnimation()} or
85 // wait before posting the next animation message. It is important that the
301 * on the next frame, but this is much better than waiting a whole 16ms and likely
332 * Posts a callback to run on the next frame.
338 * @param action The callback action to run during the next frame.
349 * Posts a callback to run on the next frame after the specified delay.
355 * @param action The callback action to run during the next fram
865 public CallbackRecord next; field in class:Choreographer.CallbackRecord
[all...]
/frameworks/av/include/drm/
H A DDrmMetadata.h47 const String8& next();
69 String8 next();
82 String8 key = keyIt.next();

Completed in 7920 milliseconds

1234567891011>>