Searched refs:octal_value (Results 1 – 2 of 2) sorted by relevance
1705 unsigned long octal_value = ::strtoul (oct_str, NULL, 8); in EncodeEscapeSequences() local1706 if (octal_value <= UINT8_MAX) in EncodeEscapeSequences()1708 dst.append(1, (char)octal_value); in EncodeEscapeSequences()
2550 unsigned long octal_value = ::strtoul (oct_str, NULL, 8); in FormatPromptRecurse() local2551 if (octal_value <= UINT8_MAX) in FormatPromptRecurse()2553 s.PutChar((char)octal_value); in FormatPromptRecurse()