Searched refs:octal (Results 1 - 10 of 10) 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/chromium_org/v8/src/
H A Dconversions-inl.h519 // It could be an explicit octal value.
553 bool octal = leading_zero && (flags & ALLOW_IMPLICIT_OCTAL) != 0;
561 // Will later check if it's an octal in the buffer.
566 octal = octal && *current < '8';
572 octal = false;
576 if (octal && !allow_trailing_junk) return JunkStringValue();
577 if (octal) goto parsing_done;
589 // octal = false;
626 if (octal) retur
[all...]
H A Dpreparser.cc133 // Checks whether octal literal last seen is between beg_pos and end_pos.
136 i::Scanner::Location octal = scanner_->octal_position(); local
137 if (beg_pos <= octal.beg_pos && octal.end_pos <= end_pos) {
138 ReportMessageAt(octal, "strict_octal_literal", NULL);
H A Dparser.cc4823 // Checks whether an octal literal was last seen between beg_pos and end_pos.
4826 Scanner::Location octal = scanner().octal_position(); local
4827 if (octal.IsValid() &&
4828 beg_pos <= octal.beg_pos &&
4829 octal.end_pos <= end_pos) {
4830 ReportMessageAt(octal, "strict_octal_literal",
5277 uc32 octal = ParseOctalLiteral(); local
5278 builder->AddCharacter(octal);
5572 // up to three octal digits with a value below 256.
5655 // to the specification) as a 1..3 digit octal characte
[all...]
/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/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dcss.js490 "ns-resize", "nw-resize", "nwse-resize", "oblique", "octal", "open-quote",
/external/libvpx/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 652 milliseconds