Searched refs:octal (Results 1 - 6 of 6) sorted by relevance

/external/llvm/tools/llvm-size/
H A Dllvm-size.cpp50 enum RadixTy {octal = 8, decimal = 10, hexadecimal = 16}; enumerator in enum:RadixTy
58 cl::values(clEnumValN(octal, "o", "Print size in octal"),
80 /// including the leading 0x or 0 for hexadecimal and octal respectively.
98 case octal:
226 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << " "
304 << (Radix == octal ? "oct" : "dec")
/external/v8/src/
H A Dconversions-inl.h519 bool octal = leading_zero && (flags & ALLOW_OCTALS) != 0;
527 // Will later check if it's an octal in the buffer.
532 octal = octal && *current < '8';
538 octal = false;
542 if (octal && !allow_trailing_junk) return JunkStringValue();
543 if (octal) goto parsing_done;
555 // octal = false;
592 if (octal) return JunkStringValue();
648 if (octal) {
[all...]
H A Dpreparser.cc128 // Checks whether octal literal last seen is between beg_pos and end_pos.
131 i::Scanner::Location octal = scanner_->octal_position(); local
132 if (beg_pos <= octal.beg_pos && octal.end_pos <= end_pos) {
133 ReportMessageAt(octal, "strict_octal_literal", NULL);
H A Dparser.cc4862 // Checks whether an octal literal was last seen between beg_pos and end_pos.
4865 Scanner::Location octal = scanner().octal_position(); local
4866 if (octal.IsValid() &&
4867 beg_pos <= octal.beg_pos &&
4868 octal.end_pos <= end_pos) {
4869 ReportMessageAt(octal, "strict_octal_literal",
5311 uc32 octal = ParseOctalLiteral(); local
5312 builder->AddCharacter(octal);
5606 // up to three octal digits with a value below 256.
5689 // to the specification) as a 1..3 digit octal characte
[all...]
/external/iproute2/tc/
H A Demp_ematch.l91 <lexstr>\\[0-7]{1,3} { /* octal escape sequence */
96 fprintf(stderr, "error: octal escape sequence" \
103 <lexstr>\\[0-9]+ { /* catch wrong octal escape seq. */
/external/libvpx/examples/includes/geshi/
H A Dgeshi.php208 /** Number format to highlight octal numbers with a leading zero */
210 /** Number format to highlight octal numbers with a suffix of o */

Completed in 1253 milliseconds