/external/llvm-project/libcxx/include/ |
D | locale | 228 // Scans [__b, __e) until a match is found in the basic_strings range 239 // If on exit __b == __e, eofbit is set in __err. If __case_sensitive is false, 248 __scan_keyword(_InputIterator& __b, _InputIterator __e, 284 for (size_t __indx = 0; __b != __e && __n_might_match > 0; ++__indx) 344 if (__b == __e) 577 iter_type get(iter_type __b, iter_type __e, ios_base& __iob, 580 return do_get(__b, __e, __iob, __err, __v); 584 iter_type get(iter_type __b, iter_type __e, ios_base& __iob, 587 return do_get(__b, __e, __iob, __err, __v); 591 iter_type get(iter_type __b, iter_type __e, ios_base& __iob, [all …]
|
D | list | 1286 for (const_iterator __i = __c.begin(), __e = __c.end(); __i != __e; ++__i) 1297 for (const_iterator __i = __c.begin(), __e = __c.end(); __i != __e; ++__i) 1311 __e = __il.end(); __i != __e; ++__i) 1322 __e = __il.end(); __i != __e; ++__i) 1411 iterator __e = end(); 1412 for (; __f != __l && __i != __e; ++__f, ++__i) 1414 if (__i == __e) 1415 insert(__e, __f, __l); 1417 erase(__i, __e); 1428 iterator __e = end(); [all …]
|
D | system_error | 255 error_condition(_Ep __e, 258 {*this = make_error_condition(__e);} 274 operator=(_Ep __e) _NOEXCEPT 275 {*this = make_error_condition(__e); return *this;} 298 make_error_condition(errc __e) _NOEXCEPT 300 return error_condition(static_cast<int>(__e), generic_category()); 327 error_code(_Ep __e, 330 {*this = make_error_code(__e);} 346 operator=(_Ep __e) _NOEXCEPT 347 {*this = make_error_code(__e); return *this;} [all …]
|
D | exception | 170 make_exception_ptr(_Ep __e) _NOEXCEPT 175 throw __e; 182 ((void)__e); 229 make_exception_ptr(_Ep __e) _NOEXCEPT 231 return __copy_exception_ptr(_VSTD::addressof(__e), __GetExceptionInfo(__e)); 314 rethrow_if_nested(const _Ep& __e, 317 const nested_exception* __nep = dynamic_cast<const nested_exception*>(_VSTD::addressof(__e));
|
D | forward_list | 1086 iterator __e = end(); 1087 for (; __j != __e && __f != __l; ++__i, (void) ++__j, ++__f) 1089 if (__j == __e) 1092 erase_after(__i, __e); 1101 iterator __e = end(); 1102 for (; __j != __e && __n > 0; --__n, ++__i, ++__j) 1104 if (__j == __e) 1107 erase_after(__i, __e); 1338 __node_pointer __e = __l.__get_unsafe_node_pointer(); 1344 if (__n != __e) [all …]
|
D | valarray | 662 __slice_expr(const slice& __sl, const _RmExpr& __e) 663 : __expr_(__e), 705 __shift_expr(int __n, const _RmExpr& __e) 706 : __expr_(__e), 707 __size_(__e.size()), 746 __cshift_expr(int __n, const _RmExpr& __e) 747 : __expr_(__e), 748 __size_(__e.size()) 1688 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j) 1704 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j) [all …]
|
D | regex | 1224 for (typename string_type::const_iterator __i = __s.begin(), __e = __s.end(); 1225 __i != __e; ++__i) 1277 for (typename string_type::const_iterator __i = __s.begin(), __e = __s.end(); 1278 __i != __e; ++__i) 2316 void __add_range(string_type __b, string_type __e) 2324 for (size_t __i = 0; __i < __e.size(); ++__i) 2325 __e[__i] = __traits_.translate_nocase(__e[__i]); 2331 for (size_t __i = 0; __i < __e.size(); ++__i) 2332 __e[__i] = __traits_.translate(__e[__i]); 2336 __traits_.transform(__e.begin(), __e.end()))); [all …]
|
D | atomic | 1631 bool compare_exchange_weak(_Tp& __e, _Tp __d, 1634 {return __cxx_atomic_compare_exchange_weak(&__a_, &__e, __d, __s, __f);} 1636 bool compare_exchange_weak(_Tp& __e, _Tp __d, 1639 {return __cxx_atomic_compare_exchange_weak(&__a_, &__e, __d, __s, __f);} 1641 bool compare_exchange_strong(_Tp& __e, _Tp __d, 1644 {return __cxx_atomic_compare_exchange_strong(&__a_, &__e, __d, __s, __f);} 1646 bool compare_exchange_strong(_Tp& __e, _Tp __d, 1649 {return __cxx_atomic_compare_exchange_strong(&__a_, &__e, __d, __s, __f);} 1651 bool compare_exchange_weak(_Tp& __e, _Tp __d, 1653 {return __cxx_atomic_compare_exchange_weak(&__a_, &__e, __d, __m, __m);} [all …]
|
D | deque | 962 … explicit __deque_block_range(pointer __b, pointer __e) _NOEXCEPT : __begin_(__b), __end_(__e) {} 971 __deque_range(iterator __pos, iterator __e) _NOEXCEPT 972 : __pos_(__pos), __end_(__e) {} 1117 for (typename __map::const_iterator __i = __map_.begin(), __e = __map_.end(); 1118 __i != __e; ++__i) 1188 typename __map::iterator __e = __map_.end(); 1189 for (; __i != __e; ++__i) 1248 for (iterator __i = begin(), __e = end(); __i != __e; ++__i) 1759 iterator __e = __base::end(); 1760 for (; __f != __l && __i != __e; ++__f, (void) ++__i) [all …]
|
/external/libcxx/include/ |
D | locale | 233 // Scans [__b, __e) until a match is found in the basic_strings range 244 // If on exit __b == __e, eofbit is set in __err. If __case_sensitive is false, 253 __scan_keyword(_InputIterator& __b, _InputIterator __e, 289 for (size_t __indx = 0; __b != __e && __n_might_match > 0; ++__indx) 349 if (__b == __e) 582 iter_type get(iter_type __b, iter_type __e, ios_base& __iob, 585 return do_get(__b, __e, __iob, __err, __v); 589 iter_type get(iter_type __b, iter_type __e, ios_base& __iob, 592 return do_get(__b, __e, __iob, __err, __v); 596 iter_type get(iter_type __b, iter_type __e, ios_base& __iob, [all …]
|
D | list | 1279 for (const_iterator __i = __c.begin(), __e = __c.end(); __i != __e; ++__i) 1290 for (const_iterator __i = __c.begin(), __e = __c.end(); __i != __e; ++__i) 1304 __e = __il.end(); __i != __e; ++__i) 1315 __e = __il.end(); __i != __e; ++__i) 1404 iterator __e = end(); 1405 for (; __f != __l && __i != __e; ++__f, ++__i) 1407 if (__i == __e) 1408 insert(__e, __f, __l); 1410 erase(__i, __e); 1421 iterator __e = end(); [all …]
|
D | system_error | 256 error_condition(_Ep __e, 259 {*this = make_error_condition(__e);} 275 operator=(_Ep __e) _NOEXCEPT 276 {*this = make_error_condition(__e); return *this;} 299 make_error_condition(errc __e) _NOEXCEPT 301 return error_condition(static_cast<int>(__e), generic_category()); 328 error_code(_Ep __e, 331 {*this = make_error_code(__e);} 347 operator=(_Ep __e) _NOEXCEPT 348 {*this = make_error_code(__e); return *this;} [all …]
|
D | exception | 168 make_exception_ptr(_Ep __e) _NOEXCEPT 173 throw __e; 180 ((void)__e); 227 make_exception_ptr(_Ep __e) _NOEXCEPT 229 return __copy_exception_ptr(_VSTD::addressof(__e), __GetExceptionInfo(__e)); 320 rethrow_if_nested(const _Ep& __e, 323 const nested_exception* __nep = dynamic_cast<const nested_exception*>(_VSTD::addressof(__e));
|
D | forward_list | 1080 iterator __e = end(); 1081 for (; __j != __e && __f != __l; ++__i, (void) ++__j, ++__f) 1083 if (__j == __e) 1086 erase_after(__i, __e); 1095 iterator __e = end(); 1096 for (; __j != __e && __n > 0; --__n, ++__i, ++__j) 1098 if (__j == __e) 1101 erase_after(__i, __e); 1332 __node_pointer __e = __l.__get_unsafe_node_pointer(); 1338 if (__n != __e) [all …]
|
D | atomic | 938 bool compare_exchange_weak(_Tp& __e, _Tp __d, 941 {return __c11_atomic_compare_exchange_weak(&__a_, &__e, __d, __s, __f);} 943 bool compare_exchange_weak(_Tp& __e, _Tp __d, 946 {return __c11_atomic_compare_exchange_weak(&__a_, &__e, __d, __s, __f);} 948 bool compare_exchange_strong(_Tp& __e, _Tp __d, 951 {return __c11_atomic_compare_exchange_strong(&__a_, &__e, __d, __s, __f);} 953 bool compare_exchange_strong(_Tp& __e, _Tp __d, 956 {return __c11_atomic_compare_exchange_strong(&__a_, &__e, __d, __s, __f);} 958 bool compare_exchange_weak(_Tp& __e, _Tp __d, 960 {return __c11_atomic_compare_exchange_weak(&__a_, &__e, __d, __m, __m);} [all …]
|
D | valarray | 662 __slice_expr(const slice& __sl, const _RmExpr& __e) 663 : __expr_(__e), 704 __shift_expr(int __n, const _RmExpr& __e) 705 : __expr_(__e), 706 __size_(__e.size()), 745 __cshift_expr(int __n, const _RmExpr& __e) 746 : __expr_(__e), 747 __size_(__e.size()) 1683 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j) 1699 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j) [all …]
|
D | regex | 1208 for (typename string_type::const_iterator __i = __s.begin(), __e = __s.end(); 1209 __i != __e; ++__i) 1261 for (typename string_type::const_iterator __i = __s.begin(), __e = __s.end(); 1262 __i != __e; ++__i) 2277 void __add_range(string_type __b, string_type __e) 2285 for (size_t __i = 0; __i < __e.size(); ++__i) 2286 __e[__i] = __traits_.translate_nocase(__e[__i]); 2292 for (size_t __i = 0; __i < __e.size(); ++__i) 2293 __e[__i] = __traits_.translate(__e[__i]); 2297 __traits_.transform(__e.begin(), __e.end()))); [all …]
|
D | deque | 1048 for (typename __map::const_iterator __i = __map_.begin(), __e = __map_.end(); 1049 __i != __e; ++__i) 1119 typename __map::iterator __e = __map_.end(); 1120 for (; __i != __e; ++__i) 1179 for (iterator __i = begin(), __e = end(); __i != __e; ++__i) 1648 iterator __e = __base::end(); 1649 for (; __f != __l && __i != __e; ++__f, (void) ++__i) 1959 iterator __e = __base::end(); 1960 iterator __em1 = _VSTD::prev(__e); 1961 __alloc_traits::construct(__a, _VSTD::addressof(*__e), _VSTD::move(*__em1)); [all …]
|
/external/mesa3d/src/amd/addrlib/src/core/ |
D | addrcommon.h | 94 #define ADDR_ASSERT(__e) \ argument 96 ADDR_ANALYSIS_ASSUME(__e); \ 97 if ( !((__e) ? TRUE : FALSE)) { ADDR_DBG_BREAK(); } \ 100 #define ADDR_ASSERT(__e) if ( !((__e) ? TRUE : FALSE)) { ADDR_DBG_BREAK(); } argument 107 #define ADDR_ASSERT(__e) { ADDR_ANALYSIS_ASSUME(__e); } argument 109 #define ADDR_ASSERT(__e) argument 193 #define ADDR_C_ASSERT(__e) static_assert(__e, "") argument 195 #define ADDR_C_ASSERT(__e) typedef char __ADDR_C_ASSERT__[(__e) ? 1 : -1] argument
|
/external/mesa3d/src/intel/tools/ |
D | gen_context.h | 88 for (unsigned __e = 0; __e < ARRAY_SIZE(__regs); __e++) \ 89 *(data)++ = __regs[__e]; \
|
/external/clang/test/CodeGenCXX/ |
D | cxx0x-initializer-stdinitializerlist-startend.cpp | 13 initializer_list(const _E* __b, const _E* __e) in initializer_list() argument 15 __end_(__e) in initializer_list()
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | cxx0x-initializer-stdinitializerlist-startend.cpp | 13 initializer_list(const _E* __b, const _E* __e) in initializer_list() argument 15 __end_(__e) in initializer_list()
|
/external/python/cpython3/Lib/test/support/ |
D | testresult.py | 26 self.__e = None 45 self.__e = e = ET.SubElement(self.__suite, 'testcase') 52 e = self.__e 53 self.__e = None
|
/external/clang/test/Analysis/Inputs/ |
D | system-header-simulator-cxx-std-suppression.h | 101 __independent_bits_engine(_Engine& __e, size_t __w); 106 ::__independent_bits_engine(_Engine& __e, size_t __w) in __independent_bits_engine() argument
|
/external/llvm-project/clang/test/Analysis/Inputs/ |
D | system-header-simulator-cxx-std-suppression.h | 101 __independent_bits_engine(_Engine& __e, size_t __w); 106 ::__independent_bits_engine(_Engine& __e, size_t __w) in __independent_bits_engine() argument
|