HomeSort by relevance Sort by last modified time
    Searched refs:Digit (Results 1 - 10 of 10) sorted by null

  /external/protobuf/src/google/protobuf/io/
tokenizer.cc 124 CHARACTER_CLASS(Digit, '0' <= c && c <= '9');
145 // Given a char, interpret it as a numeric digit and return its value.
147 inline int DigitValue(char digit) {
148 if ('0' <= digit && digit <= '9') return digit - '0';
149 if ('a' <= digit && digit <= 'z') return digit - 'a' + 10;
150 if ('A' <= digit && digit <= 'Z') return digit - 'A' + 10
586 int digit = DigitValue(*ptr); local
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer.cc 129 CHARACTER_CLASS(Digit, '0' <= c && c <= '9');
150 // Given a char, interpret it as a numeric digit and return its value.
152 inline int DigitValue(char digit) {
153 if ('0' <= digit && digit <= '9') return digit - '0';
154 if ('a' <= digit && digit <= 'z') return digit - 'a' + 10;
155 if ('A' <= digit && digit <= 'Z') return digit - 'A' + 10
857 int digit = DigitValue(*ptr); local
    [all...]
  /external/chromium_org/v8/test/webkit/
regexp-negative-special-characters.js 58 test("\\d", "????????", 8); // Digit and non-digit.
  /external/llvm/lib/Support/
ScaledNumber.cpp 42 // Check whether the upper digit is empty.
149 static bool doesRoundUp(char Digit) {
150 switch (Digit) {
292 // Round with the first truncated digit.
APInt.cpp 49 /// A utility function that converts a character to a digit.
179 /// add_1 - This function adds a single "digit" integer, y, to the multiple
180 /// "digit" integer array, x[]. x[] is modified to reflect the addition and
187 y = 1; // Carry one to next digit.
205 /// sub_1 - This function subtracts a single "digit" (64-bit word), y, from
206 /// the multi-digit integer array, x[], propagating the borrowed 1 value until
216 y = 1; // We have to "borrow 1" from next "digit"
291 /// @brief Multiply a multi-digit APInt by a single digit (64-bit) integer.
297 // For each digit of x
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
basic.rb 379 lexer grammar Digit;
386 DIGIT: '0' .. '9';
390 lexer = Digit::Lexer.new( '085' )
393 token.name.should == 'DIGIT'
399 token.name.should == 'DIGIT'
405 token.name.should == 'DIGIT'
415 lexer = Digit::Lexer.new( '2a' )
  /external/chromium_org/chrome/browser/resources/chromeos/
drive_internals.js 7 * three digit block.
14 /\d+?(?=(\d{3})+$)/g, // Digit sequence (\d+) followed (?=) by 3n digits.
  /external/chromium_org/v8/test/mjsunit/
regexp.js 110 re = /^[\c1]$/; // Digit control characters are masked in character classes.
  /external/chromium_org/chrome/renderer/resources/
offline.js     [all...]
  /external/chromium_org/third_party/usb_ids/
usb.ids     [all...]

Completed in 151 milliseconds