/external/cronet/buildtools/third_party/libc++/trunk/include/__format/ |
D | unicode.h | 301 __extended_grapheme_custer_property_boundary::__property __next) { in __at_extended_grapheme_cluster_break() argument 314 if (__prev == __property::__CR && __next == __property::__LF) // GB3 in __at_extended_grapheme_cluster_break() 320 …if (__next == __property::__Control || __next == __property::__CR || __next == __property::__LF) /… in __at_extended_grapheme_cluster_break() 325 (__next == __property::__L || __next == __property::__V || __next == __property::__LV || in __at_extended_grapheme_cluster_break() 326 __next == __property::__LVT)) // GB6 in __at_extended_grapheme_cluster_break() 330 (__next == __property::__V || __next == __property::__T)) // GB7 in __at_extended_grapheme_cluster_break() 333 …if ((__prev == __property::__LVT || __prev == __property::__T) && __next == __property::__T) // GB8 in __at_extended_grapheme_cluster_break() 337 if (__next == __property::__Extend || __next == __property::__ZWJ) in __at_extended_grapheme_cluster_break() 341 if (__next == __property::__SpacingMark) // GB9a in __at_extended_grapheme_cluster_break() 360 …if (__has_extened_pictographic && __prev == __property::__ZWJ && __next == __property::__Extended_… in __at_extended_grapheme_cluster_break() [all …]
|
/external/virglrenderer/src/mesa/util/ |
D | list.h | 218 *__next = LIST_ENTRY(type, pos->member.next, member); \ 221 list_assert(pos == __next, "use _safe iterator"), \ 222 __next = LIST_ENTRY(type, __next->member.next, member)) 226 *__next = LIST_ENTRY(type, pos->member.next, member); \ 228 pos = __next, \ 229 __next = LIST_ENTRY(type, __next->member.next, member)) 253 *__next = LIST_ENTRY(type, pos->member.next, member); \ 255 pos = __next, \ 256 __next = LIST_ENTRY(type, __next->member.next, member))
|
/external/mesa3d/src/util/ |
D | list.h | 211 *__next = LIST_ENTRY(type, pos->member.next, member); \ 214 list_assert(pos == __next, "use _safe iterator"), \ 215 __next = LIST_ENTRY(type, __next->member.next, member)) 219 *__next = LIST_ENTRY(type, pos->member.next, member); \ 221 pos = __next, \ 222 __next = LIST_ENTRY(type, __next->member.next, member)) 246 *__next = LIST_ENTRY(type, pos->member.next, member); \ 248 pos = __next, \ 249 __next = LIST_ENTRY(type, __next->member.next, member))
|
D | rb_tree.h | 264 *__next = (type *)rb_node_next_or_null((struct rb_node *)__node); \ 267 __node = __next, \ 268 __next = (type *)rb_node_next_or_null((struct rb_node *)__node))
|
/external/mesa3d/src/compiler/glsl/ |
D | list.h | 704 …*__next = (__node) ? exec_node_typed_forward((__list)->head_sentinel.next->next, __type *) : NULL;… 706 (__node) = __next, __next = __next ? exec_node_typed_forward(__next->next, __type *) : NULL) 762 * __next = (__node) ? \ 765 (__node) = __next, __next = (__next && (__next)->__field.next) ? \ 766 exec_node_data_forward(__type, (__next)->__field.next, __field) : NULL)
|
/external/cronet/buildtools/third_party/libc++/trunk/include/ |
D | __debug | 52 __i_node(void* __i, __i_node* __next, __c_node* __c) 53 : __i_(__i), __next_(__next), __c_(__c) {} 69 explicit __c_node(void* __c, __c_node* __next) 70 : __c_(__c), __next_(__next), beg_(nullptr), end_(nullptr), cap_(nullptr) {} 162 …BCPP_INLINE_VISIBILITY static __c_node* __create_C_node(void *__mem, void *__c, __c_node *__next) { 163 return ::new (__mem) _C_node<_Cont>(__c, __next);
|
D | forward_list | 643 __node_pointer __next = __p->__next_; 646 __p = __next; 1274 __node_pointer __next = __first->__next_; 1277 __first = __next; 1320 __node_pointer __next = __first->__next_; 1323 __first = __next;
|
D | __hash_table | 1532 __next_pointer __next = __np->__next_; 1551 __np = __next; 1621 __next_pointer __next = __cache->__next_; 1623 __cache = __next; 1681 __next_pointer __next = __cache->__next_; 1683 __cache = __next; 1721 __next_pointer __next = __cache->__next_; 1723 __cache = __next;
|
D | __tree | 2055 const_iterator __next = _VSTD::next(__hint); 2056 if (__next == end() || value_comp()(__v, *__next)) 2066 __parent = static_cast<__parent_pointer>(__next.__ptr_);
|
/external/mesa3d/src/intel/compiler/ |
D | brw_cfg.h | 413 *__next = (__type *)__inst->next; \ 414 __next != NULL; \ 415 __inst = __next, \ 416 __next = (__type *)__next->next)
|
D | brw_dead_control_flow.cpp | 96 __next = earlier_block->next(); in dead_control_flow_eliminate()
|
/external/cronet/buildtools/third_party/libc++/trunk/include/__iterator/ |
D | next.h | 43 namespace __next { 76 inline constexpr auto next = __next::__fn{};
|
/external/cronet/buildtools/third_party/libc++/trunk/include/__memory_resource/ |
D | monotonic_buffer_resource.h | 93 __chunk_footer* __next = __chunks_->__next_; in release() local 95 __chunks_ = __next; in release()
|
/external/libcxx/include/ |
D | __debug | 135 __i_node(void* __i, __i_node* __next, __c_node* __c) 136 : __i_(__i), __next_(__next), __c_(__c) {} 158 __c_node(void* __c, __c_node* __next) 159 : __c_(__c), __next_(__next), beg_(nullptr), end_(nullptr), cap_(nullptr) {}
|
D | forward_list | 616 __node_pointer __next = __p->__next_; 619 __p = __next; 1250 __node_pointer __next = __first->__next_; 1253 __first = __next; 1300 __node_pointer __next = __first->__next_; 1303 __first = __next;
|
D | __tree | 1625 __node_pointer __next = __detach(__cache); 1627 __cache = __next; 1671 __node_pointer __next = __detach(__cache); 1673 __cache = __next; 1795 __node_pointer __next = __detach(__cache); 1797 __cache = __next; 2098 const_iterator __next = _VSTD::next(__hint); 2099 if (__next == end() || value_comp()(__v, *__next)) 2109 __parent = static_cast<__parent_pointer>(__next.__ptr_);
|
D | __hash_table | 1584 __next_pointer __next = __np->__next_; 1603 __np = __next; 1677 __next_pointer __next = __cache->__next_; 1679 __cache = __next; 1739 __next_pointer __next = __cache->__next_; 1741 __cache = __next; 1779 __next_pointer __next = __cache->__next_; 1781 __cache = __next;
|
/external/musl/src/thread/ |
D | pthread_create.c | 66 self->cancelbuf = self->cancelbuf->__next; in __pthread_exit() 174 cb->__next = self->cancelbuf; in __do_cleanup_push() 180 __pthread_self()->cancelbuf = cb->__next; in __do_cleanup_pop()
|
/external/python/cpython3/Lib/ |
D | sre_parse.py | 232 self.__next() 233 def __next(self): member in Tokenizer 251 self.__next() 256 self.__next() 265 self.__next() 271 self.__next() 290 self.__next()
|
/external/musl/include/ |
D | aio.h | 27 void *__next, *__prev; member
|
D | pthread.h | 209 struct __ptcb *__next; member
|
/external/cronet/buildtools/third_party/libc++/trunk/include/__ranges/ |
D | split_view.h | 139 …t_view<_View, _Pattern>& __parent, iterator_t<_View> __current, subrange<iterator_t<_View>> __next) 140 … : __parent_(std::addressof(__parent)), __cur_(std::move(__current)), __next_(std::move(__next)) {}
|
/external/python/cpython2/Lib/ |
D | sre_parse.py | 193 self.__next() 194 def __next(self): member in Tokenizer 210 self.__next() 215 self.__next()
|
/external/rust/crates/libc/src/unix/linux_like/linux/musl/ |
D | mod.rs | 138 __next: *mut ::c_void,
|
/external/rust/crates/libc/src/unix/linux_like/emscripten/ |
D | mod.rs | 183 __next: *mut ::c_void,
|