Home
last modified time | relevance | path

Searched refs:_val_ (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/Support/
Dsystem_error.h678 int _val_;
681 error_condition() : _val_(0), _cat_(&generic_category()) {}
684 : _val_(_val), _cat_(&_cat) {}
693 _val_ = _val;
707 _val_ = 0;
711 int value() const {return _val_;}
720 return _val_ == 0 ? 0 : unspecified_bool_true;
736 int _val_;
739 error_code() : _val_(0), _cat_(&system_category()) {}
742 : _val_(_val), _cat_(&_cat) {}
[all …]
/external/swiftshader/third_party/LLVM/lib/Support/
Dsystem_error.cpp112 return _cat_->message(_val_); in message()
119 return _cat_->message(_val_); in message()
/external/clang/test/SemaCXX/
Dtypo-correction.cpp15 int _val_; member in error_condition
17 error_condition() : _val_(0) {} in error_condition()
20 : _val_(_val) {} in error_condition()