Home
last modified time | relevance | path

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

/third_party/boost/boost/spirit/home/support/detail/lexer/parser/tokeniser/
Dre_tokeniser_helper.hpp407 std::size_t hex_ = 0; in decode_hex() local
411 hex_ *= 16; in decode_hex()
415 hex_ += ch_ - '0'; in decode_hex()
419 hex_ += 10 + (ch_ - 'a'); in decode_hex()
423 hex_ += 10 + (ch_ - 'A'); in decode_hex()
445 return static_cast<CharT> (hex_); in decode_hex()
/third_party/boost/libs/spirit/classic/phoenix/test/
Diostream_tests.cpp68 (cout << arg1 << "this is it, shukz:" << hex_ << arg2 << endl_ << endl_)(msg, i100); in main()
/third_party/boost/boost/spirit/home/classic/phoenix/
Dspecial_ops.hpp192 iomanip_t hex_ = &PHOENIX_STD::hex; variable