Home
last modified time | relevance | path

Searched refs:char_ (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/
H A Dregex.cpp69 char char_; in ~regex_error()
336 r = char(i->char_);
76 char char_; global() member
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc4909 explicit UnprintableChar(char ch) : char_(ch) {} in UnprintableChar()
4912 return char_ == rhs.char_; in operator ==()
4915 return char_ != rhs.char_; in operator !=()
4917 bool operator<(const UnprintableChar& rhs) const { return char_ < rhs.char_; } in operator <()
4919 return char_ <= rhs.char_; in operator <=()
4921 bool operator>(const UnprintableChar& rhs) const { return char_ > rhs.char_; } in operator >()
4923 return char_ >= rhs.char_; in operator >=()
4927 char char_; member in __anon19f4cde20511::UnprintableChar