Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 1883) sorted by relevance

12345678910>>...76

/aosp12/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/impl/
H A DLayoutParserWrapperTest.java40 assertEquals("Expected START_TAG", START_TAG, parser.next()); in testDataBindingLayout()
42 for (int next = parser.next(); next != START_TAG && next != END_DOCUMENT; in testDataBindingLayout()
43 next = parser.next()); in testDataBindingLayout()
53 for (int next = parser.next(); in testDataBindingLayout()
54 … (next != END_TAG || !"RelativeLayout".equals(parser.getName())) && next != END_DOCUMENT; in testDataBindingLayout()
55 next = parser.next()); in testDataBindingLayout()
67 for (int next = parser.next(); next != START_TAG && next != END_DOCUMENT; in testNonDataBindingLayout()
68 next = parser.next()); in testNonDataBindingLayout()
78 for (int next = parser.next(); in testNonDataBindingLayout()
79 … (next != END_TAG || !"RelativeLayout".equals(parser.getName())) && next != END_DOCUMENT; in testNonDataBindingLayout()
[all …]
/aosp12/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dmacros.h55 #define _PDX_APPLY_1(macro, head, next, ...) \ argument
56 macro(head) _PDX_NEXT_FUNC(next, _PDX_APPLY_2)(macro, next, __VA_ARGS__)
60 macro(head) _PDX_NEXT_FUNC(next, _PDX_APPLY_1)(macro, next, __VA_ARGS__)
76 _PDX_NEXT_FUNC(next, _PDX_APPLY_LIST_2)(macro, next, __VA_ARGS__)
82 _PDX_NEXT_FUNC(next, _PDX_APPLY_LIST_1)(macro, next, __VA_ARGS__)
86 macro(head) _PDX_NEXT_FUNC(next, _PDX_APPLY_LIST_1)(macro, next, __VA_ARGS__)
103 _PDX_NEXT_FUNC(next, _PDX_APPLY_BINARY_2)(macro, arg, next, __VA_ARGS__)
108 _PDX_NEXT_FUNC(next, _PDX_APPLY_BINARY_1)(macro, arg, next, __VA_ARGS__)
124 macro, arg, next, __VA_ARGS__)
130 macro, arg, next, __VA_ARGS__)
[all …]
/aosp12/hardware/qcom/wlan/qcwcn/wifi_hal/
H A Dlist.cpp34 list->next = list; in INITIALISE_LIST()
41 next->prev = latest; in list_add()
42 latest->next = next; in list_add()
44 prev->next = latest; in list_add()
49 list_add(latest, head, head->next); in add_to_list()
59 next->prev = prev; in list_del()
60 prev->next = next; in list_del()
66 record->next = NULL; in del_from_list()
72 latest->next = old->next; in replace_in_list()
73 latest->next->prev = latest; in replace_in_list()
[all …]
H A Dlist.h33 struct list_head *next, *prev; member
38 struct list_head *next);
41 void list_del(struct list_head *prev, struct list_head *next);
46 for (ref = (head)->next; ref->next, ref != (head); ref = ref->next)
58 for (ref = list_entry((head)->next, typeof(*ref), member); \
59 ref->member.next, &ref->member != (head); \
60 ref = list_entry(ref->member.next, typeof(*ref), member))
63 for (pos = list_entry((head)->next, typeof(*pos), member), \
64 n = list_entry(pos->member.next, typeof(*pos), member); \
69 for (pos = (head)->next, n = pos->next; pos != (head); \
[all …]
/aosp12/system/core/libcutils/include/cutils/
H A Dlist.h28 struct listnode *next; member
37 .next = &(name), \
42 for ((node) = (list)->next; (node) != (list); (node) = (node)->next)
48 for ((node) = (list)->next, (n) = (node)->next; \
54 node->next = node; in list_init()
60 item->next = head; in list_add_tail()
62 head->prev->next = item; in list_add_tail()
68 item->next = head->next; in list_add_head()
70 head->next->prev = item; in list_add_head()
71 head->next = item; in list_add_head()
[all …]
/aosp12/system/core/libcutils/include_outside_system/cutils/
H A Dlist.h28 struct listnode *next; member
37 .next = &(name), \
42 for ((node) = (list)->next; (node) != (list); (node) = (node)->next)
48 for ((node) = (list)->next, (n) = (node)->next; \
54 node->next = node; in list_init()
60 item->next = head; in list_add_tail()
62 head->prev->next = item; in list_add_tail()
68 item->next = head->next; in list_add_head()
70 head->next->prev = item; in list_add_head()
71 head->next = item; in list_add_head()
[all …]
/aosp12/frameworks/base/tools/aapt2/format/binary/
H A DXmlFlattener_test.cpp120 ASSERT_THAT(tree.next(), Eq(android::ResXMLTree::TEXT)); in TEST_F()
285 ASSERT_THAT(tree.next(), Eq(android::ResXMLTree::TEXT)); in TEST_F()
308 ASSERT_THAT(tree.next(), Eq(android::ResXMLTree::TEXT)); in TEST_F()
314 ASSERT_THAT(tree.next(), Eq(android::ResXMLTree::TEXT)); in TEST_F()
321 ASSERT_THAT(tree.next(), Eq(android::ResXMLTree::TEXT)); in TEST_F()
327 ASSERT_THAT(tree.next(), Eq(android::ResXMLTree::TEXT)); in TEST_F()
333 ASSERT_THAT(tree.next(), Eq(android::ResXMLTree::TEXT)); in TEST_F()
465 while (tree.next() != android::ResXMLTree::START_TAG) { in TEST_F()
488 while (tree.next() != android::ResXMLTree::START_TAG) { in TEST_F()
509 while (tree.next() != android::ResXMLTree::START_TAG) { in TEST_F()
[all …]
/aosp12/system/core/libsparse/
H A Dbacked_block.cpp60 return bb->next; in backed_block_iter_next()
123 struct backed_block* next = bb->next; in backed_block_list_destroy() local
125 bb = next; in backed_block_list_destroy()
141 for (end = start; end && end->next; end = end->next) in backed_block_list_move()
156 bb->next = end->next; in backed_block_list_move()
167 if (!bb->next || bb->next->block > start->block) { in backed_block_list_move()
168 end->next = bb->next; in backed_block_list_move()
223 a->next = b->next; in merge_bb()
253 for (; bb->next && bb->next->block < new_bb->block; bb = bb->next) in queue_bb()
259 new_bb->next = bb->next; in queue_bb()
[all …]
/aosp12/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DEventStreamTransformation.java69 EventStreamTransformation next = getNext(); in onMotionEvent() local
70 if (next != null) { in onMotionEvent()
82 EventStreamTransformation next = getNext(); in onKeyEvent() local
83 if (next != null) { in onKeyEvent()
84 next.onKeyEvent(event, policyFlags); in onKeyEvent()
94 EventStreamTransformation next = getNext(); in onAccessibilityEvent() local
95 if (next != null) { in onAccessibilityEvent()
96 next.onAccessibilityEvent(event); in onAccessibilityEvent()
120 EventStreamTransformation next = getNext(); in clearEvents() local
121 if (next != null) { in clearEvents()
[all …]
/aosp12/frameworks/base/core/java/android/content/
H A DAttributionSource.java116 @Nullable AttributionSource next) { in AttributionSource() argument
124 @Nullable AttributionSource next) { in AttributionSource() argument
142 @Nullable AttributionSource next) { in AttributionSource() argument
149 mAttributionSourceState.next = (next != null) ? new AttributionSourceState[] in AttributionSource()
324 if (mAttributionSourceState.next != null in getNextUid()
326 return mAttributionSourceState.next[0].uid; in getNextUid()
337 if (mAttributionSourceState.next != null in getNextPackageName()
351 if (mAttributionSourceState.next != null in getNextAttributionTag()
365 if (mAttributionSourceState.next != null in getNextToken()
595 mAttributionSourceState.next = null; in build()
[all …]
/aosp12/frameworks/base/core/java/android/os/
H A DMessageQueue.java319 Message next() { in next() method in MessageQueue
357 prevMsg.next = msg.next; in next()
495 msg.next = p; in postSyncBarrier()
498 msg.next = p; in postSyncBarrier()
525 p = p.next; in removeSyncBarrier()
533 prev.next = p.next; in removeSyncBarrier()
573 msg.next = p; in enqueueMessage()
615 p = p.next; in hasMessages()
632 p = p.next; in hasEqualMessages()
650 p = p.next; in hasMessages()
[all …]
/aosp12/bionic/libc/upstream-netbsd/lib/libc/include/isc/
H A Dlist.h32 (elt)->link.next = (type *)(-1); \
51 (elt)->link.next = (list).head; \
59 (list).tail->link.next = (elt); \
63 (elt)->link.next = NULL; \
70 if ((elt)->link.next != NULL) \
77 (elt)->link.prev->link.next = (elt)->link.next; \
80 (list).head = (elt)->link.next; \
99 (elt)->link.next = (before); \
106 if ((after)->link.next == NULL) \
109 (elt)->link.next = (after)->link.next; \
[all …]
/aosp12/frameworks/minikin/tests/unittest/
H A DWordBreakerTests.cpp173 EXPECT_EQ(4, breaker.next()); in TEST()
177 EXPECT_EQ(7, breaker.next()); in TEST()
181 EXPECT_EQ(9, breaker.next()); in TEST()
185 EXPECT_EQ(10, breaker.next()); in TEST()
189 EXPECT_EQ(12, breaker.next()); in TEST()
193 EXPECT_EQ(14, breaker.next()); in TEST()
197 EXPECT_EQ(16, breaker.next()); in TEST()
352 EXPECT_EQ(4, breaker.next()); // after "@ " in TEST()
399 EXPECT_EQ(8, breaker.next()); // after "a" in TEST()
455 EXPECT_EQ(8, breaker.next()); // after "a" in TEST()
[all …]
/aosp12/hardware/qcom/camera/msm8998/QCamera2/stack/common/
H A Dcam_list.h45 struct cam_list *next, *prev; member
50 ptr->next = ptr; in cam_list_init()
60 item->next = head; in cam_list_add_tail_node()
62 prev->next = item; in cam_list_add_tail_node()
68 item->next = node; in cam_list_insert_before_node()
70 item->prev->next = item; in cam_list_insert_before_node()
77 struct cam_list *next = ptr->next; in cam_list_del_node() local
79 next->prev = ptr->prev; in cam_list_del_node()
80 prev->next = ptr->next; in cam_list_del_node()
81 ptr->next = ptr; in cam_list_del_node()
/aosp12/bionic/tests/
H A Dsearch_test.cpp146 q_node* next; member
180 ASSERT_EQ(2, head->next->i); in TEST()
181 ASSERT_EQ(nullptr, head->next->next); in TEST()
191 zero.next = &zero; in TEST()
198 ASSERT_EQ(1, head->next->i); in TEST()
199 ASSERT_EQ(2, head->next->next->i); in TEST()
200 ASSERT_EQ(0, head->next->next->next->i); in TEST()
201 ASSERT_EQ(1, head->next->next->next->next->i); in TEST()
202 ASSERT_EQ(2, head->next->next->next->next->next->i); in TEST()
207 ASSERT_EQ(0, head->next->next->i); in TEST()
[all …]
/aosp12/frameworks/rs/
H A DrsMap.h35 LinkNode* next; member
46 LinkNode* next; in ~Map() local
48 next = p->next; in ~Map()
50 p = next; in ~Map()
65 node = node->next;
70 node->next = nullptr;
74 prev->next = node;
83 LinkNode* next; variable
85 next = node->next;
87 node = next;
[all …]
/aosp12/system/bt/osi/src/
H A Dlist.cc8 struct list_node_t* next; member
97 node->next = prev_node->next; in list_insert_after()
99 prev_node->next = node; in list_insert_after()
111 node->next = list->head; in list_prepend()
125 node->next = NULL; in list_append()
147 list->head = next; in list_remove()
177 list_node_t* next = node->next; in list_foreach() local
179 node = next; in list_foreach()
196 return node->next; in list_next()
208 list_node_t* next = node->next; in list_free_node_() local
[all …]
/aosp12/bionic/linker/
H A Dlinked_list.h35 LinkedListEntry<T>* next; member
53 entry_ = entry_->next;
95 new_entry->next = head_; in push_front()
105 new_entry->next = nullptr; in push_back()
122 head_ = entry->next; in pop_front()
143 head_ = head_->next; in clear()
176 LinkedListEntry<T>* next = e->next; in remove_if() local
178 head_ = next; in remove_if()
180 p->next = next; in remove_if()
189 e = next; in remove_if()
[all …]
/aosp12/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
H A DMap.h42 node* next; member
69 head=head->next; in ~Map()
86 tmp = tmp->next; in find()
101 tmp = tmp->next; in find_ele()
124 tmp = tmp->next; in show()
135 tmp = tmp->next; in size()
179 tmp = tmp->next; in erase()
199 prevnode->next = tmp->next; in erase()
200 tmp->next->prev = prevnode->next; in erase()
207 tmp = tmp->next; in erase()
[all …]
/aosp12/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
H A DMap.h41 node* next; member
70 head=head->next; in ~Map()
87 tmp = tmp->next; in find()
103 tmp = tmp->next; in find_ele()
128 tmp = tmp->next; in show()
139 tmp = tmp->next; in size()
183 tmp = tmp->next; in erase()
203 prevnode->next = tmp->next; in erase()
204 tmp->next->prev = prevnode->next; in erase()
212 tmp = tmp->next; in erase()
[all …]
/aosp12/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
H A DMap.h40 node* next; member
69 head=head->next; in ~Map()
86 tmp = tmp->next; in find()
102 tmp = tmp->next; in find_ele()
127 tmp = tmp->next; in show()
138 tmp = tmp->next; in size()
182 tmp = tmp->next; in erase()
202 prevnode->next = tmp->next; in erase()
203 tmp->next->prev = prevnode->next; in erase()
211 tmp = tmp->next; in erase()
[all …]
/aosp12/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
H A DMap.h40 node* next; member
69 head=head->next; in ~Map()
86 tmp = tmp->next; in find()
102 tmp = tmp->next; in find_ele()
127 tmp = tmp->next; in show()
138 tmp = tmp->next; in size()
182 tmp = tmp->next; in erase()
202 prevnode->next = tmp->next; in erase()
203 tmp->next->prev = prevnode->next; in erase()
211 tmp = tmp->next; in erase()
[all …]
/aosp12/hardware/qcom/sm8150/media/libarbitrarybytes/inc/
H A DMap.h40 node* next; member
69 head=head->next; in ~Map()
86 tmp = tmp->next; in find()
102 tmp = tmp->next; in find_ele()
127 tmp = tmp->next; in show()
138 tmp = tmp->next; in size()
182 tmp = tmp->next; in erase()
202 prevnode->next = tmp->next; in erase()
203 tmp->next->prev = prevnode->next; in erase()
211 tmp = tmp->next; in erase()
[all …]
/aosp12/hardware/qcom/sdm845/media/mm-video-v4l2/vidc/vdec/inc/
H A DMap.h40 node* next; member
69 head=head->next; in ~Map()
86 tmp = tmp->next; in find()
102 tmp = tmp->next; in find_ele()
127 tmp = tmp->next; in show()
138 tmp = tmp->next; in size()
182 tmp = tmp->next; in erase()
202 prevnode->next = tmp->next; in erase()
203 tmp->next->prev = prevnode->next; in erase()
211 tmp = tmp->next; in erase()
[all …]
/aosp12/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParserTest.java58 assertEquals(XmlPullParser.START_TAG, parser.next()); in testXmlBlockParser()
61 assertEquals(XmlPullParser.TEXT, parser.next()); in testXmlBlockParser()
63 assertEquals(XmlPullParser.START_TAG, parser.next()); in testXmlBlockParser()
65 assertEquals(XmlPullParser.TEXT, parser.next()); in testXmlBlockParser()
66 assertEquals(XmlPullParser.END_TAG, parser.next()); in testXmlBlockParser()
68 assertEquals(XmlPullParser.TEXT, parser.next()); in testXmlBlockParser()
72 assertEquals(XmlPullParser.END_TAG, parser.next()); in testXmlBlockParser()
74 assertEquals(XmlPullParser.TEXT, parser.next()); in testXmlBlockParser()
78 assertEquals(XmlPullParser.END_TAG, parser.next()); in testXmlBlockParser()
80 assertEquals(XmlPullParser.TEXT, parser.next()); in testXmlBlockParser()
[all …]

12345678910>>...76