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

  /external/v8/src/
interpreter-irregexp.cc 52 unibrow::uchar new_char = subject[current++]; local
53 if (old_char == new_char) continue;
55 unibrow::uchar new_string[1] = { new_char };
57 interp_canonicalize->get(new_char, '\0', new_string);
73 unsigned int new_char = subject[current++]; local
74 if (old_char == new_char) continue;
76 if (new_char - 'A' <= 'Z' - 'A') new_char |= 0x20;
77 if (old_char != new_char) return false;
  /external/chromium_org/v8/src/
interpreter-irregexp.cc 53 unibrow::uchar new_char = subject[current++]; local
54 if (old_char == new_char) continue;
56 unibrow::uchar new_string[1] = { new_char };
58 interp_canonicalize->get(new_char, '\0', new_string);
74 unsigned int new_char = subject[current++]; local
75 if (old_char == new_char) continue;
78 new_char |= 0x20;
79 if (old_char != new_char) return false;

Completed in 196 milliseconds