HomeSort by relevance Sort by last modified time
    Searched refs:Utf16 (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/v8/src/
unicode-inl.h 121 if (Utf16::IsTrailSurrogate(c) &&
122 Utf16::IsLeadSurrogate(previous)) {
125 Utf16::CombineSurrogatePair(previous, c),
126 Utf16::kNoPreviousCharacter) - kUnmatchedSize;
159 if (Utf16::IsTrailSurrogate(c) &&
160 Utf16::IsLeadSurrogate(previous)) {
preparser-api.cc 131 static_cast<int32_t>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
133 unibrow::Utf16::LeadSurrogate(value);
135 unibrow::Utf16::TrailSurrogate(value);
debug-agent.cc 370 int previous = unibrow::Utf16::kNoPreviousCharacter;
389 previous = unibrow::Utf16::kNoPreviousCharacter;
399 unibrow::Utf16::kMaxExtraUtf8BytesForOneUtf16CodeUnit ||
401 if (unibrow::Utf16::IsLeadSurrogate(character)) {
403 unibrow::Utf16::kUtf8BytesToCodeASurrogate;
scanner-character-streams.cc 204 buffer_[i++] = unibrow::Utf16::LeadSurrogate(c);
205 buffer_[i++] = unibrow::Utf16::TrailSurrogate(c);
unicode.h 103 class Utf16 {
182 // The first buffer_length utf16 chars are cached in the buffer.
unicode.cc 300 bool is_two_characters = character > Utf16::kMaxNonSurrogateCharCode;
308 *buffer++ = Utf16::LeadSurrogate(character);
309 *buffer++ = Utf16::TrailSurrogate(character);
340 if (character > unibrow::Utf16::kMaxNonSurrogateCharCode) {
341 *data++ = Utf16::LeadSurrogate(character);
342 *data++ = Utf16::TrailSurrogate(character);
    [all...]
json-parser.h 726 unibrow::Utf16::kMaxNonSurrogateCharCode) {
729 unibrow::Utf16::LeadSurrogate(c0));
732 unibrow::Utf16::TrailSurrogate(c0));
api.cc     [all...]
log.cc 115 int previous = unibrow::Utf16::kNoPreviousCharacter;
    [all...]
objects.cc     [all...]
heap.cc     [all...]
  /external/v8/src/
unicode-inl.h 91 if (Utf16::IsTrailSurrogate(c) &&
92 Utf16::IsLeadSurrogate(previous)) {
95 Utf16::CombineSurrogatePair(previous, c),
96 Utf16::kNoPreviousCharacter) - kUnmatchedSize;
129 if (Utf16::IsTrailSurrogate(c) &&
130 Utf16::IsLeadSurrogate(previous)) {
preparser-api.cc 131 static_cast<int32_t>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
133 unibrow::Utf16::LeadSurrogate(value);
135 unibrow::Utf16::TrailSurrogate(value);
debug-agent.cc 375 int previous = unibrow::Utf16::kNoPreviousCharacter;
394 previous = unibrow::Utf16::kNoPreviousCharacter;
404 unibrow::Utf16::kMaxExtraUtf8BytesForOneUtf16CodeUnit ||
406 if (unibrow::Utf16::IsLeadSurrogate(character)) {
408 unibrow::Utf16::kUtf8BytesToCodeASurrogate;
scanner-character-streams.cc 202 buffer_[i++] = unibrow::Utf16::LeadSurrogate(c);
203 buffer_[i++] = unibrow::Utf16::TrailSurrogate(c);
unicode.h 118 class Utf16 {
handles.cc     [all...]
unicode.cc 346 result += c > Utf16::kMaxNonSurrogateCharCode ? 2 : 1;
    [all...]
heap.cc     [all...]
objects.cc     [all...]
api.cc     [all...]
log.cc 467 int previous = unibrow::Utf16::kNoPreviousCharacter;
    [all...]
objects-inl.h     [all...]
  /external/v8/test/cctest/
test-parsing.cc 581 unibrow::Utf16::kNoPreviousCharacter);
    [all...]
  /external/chromium_org/v8/test/cctest/
test-parsing.cc 582 unibrow::Utf16::kNoPreviousCharacter);
    [all...]

Completed in 4285 milliseconds

1 2