Home
last modified time | relevance | path

Searched refs:__cat_ (Results 1 – 5 of 5) sorted by relevance

/external/cronet/buildtools/third_party/libc++/trunk/include/__system_error/
Derror_code.h45 const error_category* __cat_; variable
48 _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {} in error_code()
50 …ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {} in error_code()
61 __cat_ = &__cat; in assign()
74 __cat_ = &system_category(); in clear()
79 _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; } in category()
82 return __cat_->default_error_condition(__val_); in default_error_condition()
Derror_condition.h51 const error_category* __cat_;
54 _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
58 __cat_(&__cat) {}
69 __cat_ = &__cat;
82 __cat_ = &generic_category();
87 _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
/external/libcxx/include/
Dsystem_error245 const error_category* __cat_;
248 error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
252 : __val_(__val), __cat_(&__cat) {}
265 __cat_ = &__cat;
282 __cat_ = &generic_category();
289 const error_category& category() const _NOEXCEPT {return *__cat_;}
317 const error_category* __cat_;
320 error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
324 : __val_(__val), __cat_(&__cat) {}
337 __cat_ = &__cat;
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/src/
Dsystem_error.cpp221 return __cat_->message(__val_); in message()
229 return __cat_->message(__val_); in message()
/external/libcxx/src/
Dsystem_error.cpp219 return __cat_->message(__val_); in message()
227 return __cat_->message(__val_); in message()