Searched refs:showbase (Results 1 - 12 of 12) sorted by relevance
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | int128_unittest.cc | 490 // showbase in TEST() 491 {uint128(1), std::ios::dec | std::ios::showbase, 0, '_', "1"}, in TEST() 492 {uint128(1), std::ios::oct | std::ios::showbase, 0, '_', "01"}, in TEST() 493 {uint128(1), std::ios::hex | std::ios::showbase, 0, '_', "0x1"}, in TEST() 494 // showbase does nothing on zero in TEST() 495 {uint128(0), std::ios::dec | std::ios::showbase, 0, '_', "0"}, in TEST() 496 {uint128(0), std::ios::oct | std::ios::showbase, 0, '_', "0"}, in TEST() 497 {uint128(0), std::ios::hex | std::ios::showbase, 0, '_', "0"}, in TEST()
|
H A D | int128.cc | 157 std::ios::basefield | std::ios::showbase | std::ios::uppercase; in operator <<()
|
/third_party/skia/third_party/externals/spirv-tools/source/util/ |
H A D | parse_number.cpp | 102 << "Integer " << (is_hex ? std::hex : std::dec) << std::showbase in ParseAndEncodeIntegerNumber() 117 << "Integer " << (is_hex ? std::hex : std::dec) << std::showbase in ParseAndEncodeIntegerNumber()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/ |
H A D | parse_number.cpp | 102 << "Integer " << (is_hex ? std::hex : std::dec) << std::showbase in ParseAndEncodeIntegerNumber() 117 << "Integer " << (is_hex ? std::hex : std::dec) << std::showbase in ParseAndEncodeIntegerNumber()
|
/third_party/spirv-tools/source/util/ |
H A D | parse_number.cpp | 102 << "Integer " << (is_hex ? std::hex : std::dec) << std::showbase in ParseAndEncodeIntegerNumber() 117 << "Integer " << (is_hex ? std::hex : std::dec) << std::showbase in ParseAndEncodeIntegerNumber()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/ |
H A D | int128.cc | 183 std::ios::basefield | std::ios::showbase | std::ios::uppercase; 216 (flags & std::ios::showbase) && 317 (flags & std::ios::showbase) && v != 0) {
|
H A D | int128_stream_test.cc | 63 if (flags & std::ios::showbase) flagstr.push_back("std::ios::showbase"); in StreamFormatToString() 96 constexpr std::ios::fmtflags kBase = std::ios::showbase;
|
/third_party/node/deps/v8/src/base/ |
H A D | region-allocator.cc | 352 std::ios::fmtflags flags = os.flags(std::ios::hex | std::ios::showbase); in Print() 359 std::ios::fmtflags flags = os.flags(std::ios::hex | std::ios::showbase); in Print()
|
/third_party/libabigail/src/ |
H A D | abg-reporter-priv.cc | 42 out << std::hex << std::showbase ; in emit_num_value() member in abigail::comparison::std 1158 << std::showbase << std::hex; in maybe_report_diff_for_symbol()
|
H A D | abg-writer.cc | 3136 << std::hex << std::showbase << sym->get_crc().value() in write_elf_symbol()
|
/third_party/skia/third_party/externals/dawn/src/tests/ |
H A D | DawnTest.cpp | 623 log << std::showbase << std::hex << std::setfill('0') << std::setw(4) in PrintTestConfigurationAndAdapterInfo()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 26181 static const fmtflags showbase = _S_showbase; 26529 showbase(ios_base& __base) 26531 __base.setf(ios_base::showbase); 26539 __base.unsetf(ios_base::showbase); 30035 else if (bool(__flags & ios_base::showbase) && __v) 30277 __io.flags((__flags & __fmt) | (ios_base::hex | ios_base::showbase)); [all...] |
Completed in 38 milliseconds