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_; member
336 r = char(i->char_); in __get_collation_name()
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc4958 explicit UnprintableChar(char ch) : char_(ch) {} in UnprintableChar()
4961 return char_ == rhs.char_; in operator ==()
4964 return char_ != rhs.char_; in operator !=()
4966 bool operator<(const UnprintableChar& rhs) const { return char_ < rhs.char_; } in operator <()
4968 return char_ <= rhs.char_; in operator <=()
4970 bool operator>(const UnprintableChar& rhs) const { return char_ > rhs.char_; } in operator >()
4972 return char_ >= rhs.char_; in operator >=()
4976 char char_; member in __anon19f4cde20511::UnprintableChar