Searched defs:octal (Results 1 - 3 of 3) sorted by relevance

/external/llvm/tools/llvm-size/
H A Dllvm-size.cpp64 enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 }; enumerator in enum:RadixTy
71 cl::values(clEnumValN(octal, "o", "Print size in octal"),
93 /// including the leading 0x or 0 for hexadecimal and octal respectively.
104 case octal:
364 << (Radix == octal ? "oct" : "dec") << " hex filename\n";
374 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << " "
/external/v8/src/regexp/
H A Dregexp-parser.cc368 uc32 octal = ParseOctalLiteral(); local
369 builder->AddCharacter(octal);
711 // up to three octal digits with a value below 256.
835 // to the specification) as a 1..3 digit octal character code.
/external/v8/src/parsing/
H A Dparser-base.h464 // Checks whether an octal literal was last seen between beg_pos and end_pos.
468 Scanner::Location octal = scanner()->octal_position(); local
469 if (octal.IsValid() && beg_pos <= octal.beg_pos &&
470 octal.end_pos <= end_pos) {
471 ReportMessageAt(octal, message);

Completed in 315 milliseconds