Searched refs:end_ (Results 1 – 7 of 7) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | debug.cpp | 243 while (p->end_ != p->beg_) in __invalidate_all() 245 --p->end_; in __invalidate_all() 246 (*p->end_)->__c_ = nullptr; in __invalidate_all() 335 while (p->end_ != p->beg_) in __erase_c() 337 --p->end_; in __erase_c() 338 (*p->end_)->__c_ = nullptr; in __erase_c() 450 std::swap(p1->end_, p2->end_); in swap() 452 for (__i_node** p = p1->beg_; p != p1->end_; ++p) in swap() 454 for (__i_node** p = p2->beg_; p != p2->end_; ++p) in swap() 470 if (end_ == cap_) in __add() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | list | 725 for (__i_node** __p = __c->end_; __p != __c->beg_; ) 732 if (--__c->end_ != __p) 733 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*)); 775 std::swap(__cn1->end_, __cn2->end_); 777 for (__i_node** __p = __cn1->end_; __p != __cn1->beg_;) 785 if (--__cn1->end_ != __p) 786 memmove(__p, __p+1, (__cn1->end_ - __p)*sizeof(__i_node*)); 791 for (__i_node** __p = __cn2->end_; __p != __cn2->beg_;) 799 if (--__cn2->end_ != __p) 800 memmove(__p, __p+1, (__cn2->end_ - __p)*sizeof(__i_node*)); [all …]
|
D | __debug | 61 __i_node** end_; 75 : __c_(__c), __next_(__next), beg_(nullptr), end_(nullptr), cap_(nullptr) {}
|
D | __hash_table | 1334 for (__i_node** __p = __c->end_; __p != __c->beg_; ) 1341 if (--__c->end_ != __p) 1342 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*)); 2249 for (__i_node** __p = __c->end_; __p != __c->beg_; ) 2256 if (--__c->end_ != __p) 2257 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*));
|
D | vector | 809 for (__i_node** __p = __c->end_; __p != __c->beg_; ) 816 if (--__c->end_ != __p) 817 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*));
|
D | string | 1958 for (__i_node** __p = __c->end_; __p != __c->beg_; ) 1965 if (--__c->end_ != __p) 1966 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*));
|
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/ |
D | gtest-param-util.h | 186 : begin_(begin), end_(end), in RangeGenerator() 194 return new Iterator(this, end_, end_index_, step_); in End() 255 const T end_; variable
|