Searched refs:__cat (Results 1 – 6 of 6) sorted by relevance
/external/cronet/buildtools/third_party/libc++/trunk/include/__compare/ |
D | common_comparison_category.h | 68 constexpr _CCC __cat = __comp_detail::__compute_comp_type(__type_kinds); in __get_comp_type() local 69 if constexpr (__cat == _None) in __get_comp_type() 71 else if constexpr (__cat == _PartialOrd) in __get_comp_type() 73 else if constexpr (__cat == _WeakOrd) in __get_comp_type() 75 else if constexpr (__cat == _StrongOrd) in __get_comp_type()
|
/external/cronet/buildtools/third_party/libc++/trunk/include/__system_error/ |
D | error_condition.h | 56 _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT 58 __cat_(&__cat) {} 67 _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT { 69 __cat_ = &__cat;
|
D | error_code.h | 50 …FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__c… in error_code() argument 59 _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT { in assign() argument 61 __cat_ = &__cat; in assign()
|
/external/libcxx/include/ |
D | system_error | 251 error_condition(int __val, const error_category& __cat) _NOEXCEPT 252 : __val_(__val), __cat_(&__cat) {} 262 void assign(int __val, const error_category& __cat) _NOEXCEPT 265 __cat_ = &__cat; 323 error_code(int __val, const error_category& __cat) _NOEXCEPT 324 : __val_(__val), __cat_(&__cat) {} 334 void assign(int __val, const error_category& __cat) _NOEXCEPT 337 __cat_ = &__cat;
|
D | locale | 3566 catalog __cat = (catalog)catopen(__nm.c_str(), NL_CAT_LOCALE); 3567 if (__cat != -1) 3568 __cat = static_cast<catalog>((static_cast<size_t>(__cat) >> 1)); 3569 return __cat; 3587 nl_catd __cat = (nl_catd)__c; 3588 char* __n = catgets(__cat, __set, __msgid, __ndflt.c_str()); 3605 nl_catd __cat = (nl_catd)__c; 3606 catclose(__cat);
|
/external/cronet/buildtools/third_party/libc++/trunk/include/ |
D | locale | 3522 catalog __cat = (catalog)catopen(__nm.c_str(), NL_CAT_LOCALE); 3523 if (__cat != -1) 3524 __cat = static_cast<catalog>((static_cast<size_t>(__cat) >> 1)); 3525 return __cat; 3544 nl_catd __cat = (nl_catd)__c; 3545 char* __n = catgets(__cat, __set, __msgid, __ndflt.c_str()); 3565 nl_catd __cat = (nl_catd)__c; 3566 catclose(__cat);
|