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

  /external/v8/src/
unicode-decoder.cc 28 bool is_two_characters = character > Utf16::kMaxNonSurrogateCharCode;
72 if (character > unibrow::Utf16::kMaxNonSurrogateCharCode) {
unicode.h 112 static const uchar kMaxNonSurrogateCharCode = 0xffff;
uri.cc 54 if (value <= static_cast<uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
objects.cc     [all...]
  /external/v8/src/parsing/
scanner-character-streams.cc 274 if (t > unibrow::Utf16::kMaxNonSurrogateCharCode) chars++;
305 DCHECK(t < unibrow::Utf16::kMaxNonSurrogateCharCode);
325 } else if (t <= unibrow::Utf16::kMaxNonSurrogateCharCode) {
scanner.h 581 if (c0_ > static_cast<uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
scanner.cc 117 static_cast<uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
    [all...]
  /external/v8/src/regexp/
regexp-parser.cc 715 if (code_unit <= unibrow::Utf16::kMaxNonSurrogateCharCode) {
    [all...]
  /external/v8/src/builtins/
builtins-string.cc 668 if (code <= static_cast<uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
    [all...]
  /external/v8/src/heap/
heap.cc     [all...]

Completed in 2706 milliseconds