Lines Matching refs:std
15 std::ostream& PrintAsciiOrHex(std::ostream& os, base::uc16 c) {
16 if (c < 128 && std::isprint(c)) {
19 os << "0x" << std::hex << static_cast<int>(c);
26 std::ostream& operator<<(std::ostream& os, const RegExpInstruction& inst) {
94 std::ostream& operator<<(std::ostream& os,
101 os << std::setfill('0') << std::setw(line_digit_num) << i << ": " << inst
102 << std::endl;