Home
last modified time | relevance | path

Searched refs:hex_p (Results 1 – 10 of 10) sorted by relevance

/third_party/boost/libs/spirit/classic/test/
Dnumerics_tests.cpp186 parse("95BC8DF", hex_p[assign_a(u)]); in main()
189 parse("abcdef12", hex_p[assign_a(u)]); in main()
192 parse(max_hex, hex_p[assign_a(u)]); in main()
195 BOOST_TEST(!parse(hex_overflow, hex_p).full); in main()
Dif_tests.cpp141 using ::BOOST_SPIRIT_CLASSIC_NS::hex_p; in main()
168 hex_rule = hex_p[assign_a(number_result)]; in main()
/third_party/boost/libs/spirit/classic/example/techniques/no_rules_with_typeof/
Drule_parser_1_1.cpp56 "0x" >> hex_p[ & echo_uint ]
Drule_parser_1_2.cpp49 str_p("0x") >> hex_p[ uint_action ] in BOOST_SPIRIT_ACTION_PLACEHOLDER()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Descaping.cc837 const char* hex_p = &numbers_internal::kHexTable[*src_ptr * 2]; in BytesToHexStringInternal() local
838 std::copy(hex_p, hex_p + 2, dest_ptr); in BytesToHexStringInternal()
/third_party/abseil-cpp/absl/strings/
Descaping.cc837 const char* hex_p = &numbers_internal::kHexTable[*src_ptr * 2]; in BytesToHexStringInternal() local
838 std::copy(hex_p, hex_p + 2, dest_ptr); in BytesToHexStringInternal()
/third_party/boost/tools/quickbook/src/
Dutils.cpp74 >> cl::hex_p [append_escaped_char(self, ph::arg1)] in definition()
Dsyntax_highlight.cpp342 cl::as_lower_d["0x"] >> cl::hex_p in definition()
501 cl::as_lower_d["0x"] >> cl::hex_p in definition()
/third_party/boost/boost/spirit/home/classic/core/primitives/
Dnumerics.hpp104 hex_p = uint_parser<unsigned, 16>(); variable
/third_party/boost/libs/serialization/src/
Dbasic_xml_grammar.ipp300 str_p(L"&#x") >> hex_p [xml::append_char<StringType>(rv.contents)] >> L';'