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

  /external/chromium_org/v8/src/
unicode-inl.h 104 if (Utf16::IsSurrogatePair(previous, c)) {
107 Utf16::CombineSurrogatePair(previous, c),
108 Utf16::kNoPreviousCharacter,
111 (Utf16::IsLeadSurrogate(c) ||
112 Utf16::IsTrailSurrogate(c))) {
146 if (Utf16::IsTrailSurrogate(c) &&
147 Utf16::IsLeadSurrogate(previous)) {
scanner-character-streams.cc 179 buffer_[i++] = unibrow::Utf16::LeadSurrogate(c);
180 buffer_[i++] = unibrow::Utf16::TrailSurrogate(c);
unicode.h 80 class Utf16 {
170 // The first buffer_length utf16 chars are cached in the buffer.
unicode.cc 277 bool is_two_characters = character > Utf16::kMaxNonSurrogateCharCode;
285 *buffer++ = Utf16::LeadSurrogate(character);
286 *buffer++ = Utf16::TrailSurrogate(character);
317 if (character > unibrow::Utf16::kMaxNonSurrogateCharCode) {
318 *data++ = Utf16::LeadSurrogate(character);
319 *data++ = Utf16::TrailSurrogate(character);
    [all...]
json-parser.h 708 unibrow::Utf16::kMaxNonSurrogateCharCode) {
711 unibrow::Utf16::LeadSurrogate(c0));
714 unibrow::Utf16::TrailSurrogate(c0));
api.cc     [all...]
objects.cc     [all...]
heap.cc     [all...]
log.cc 92 int previous = unibrow::Utf16::kNoPreviousCharacter;
    [all...]
  /external/chromium_org/v8/test/cctest/
test-parsing.cc 670 unibrow::Utf16::kNoPreviousCharacter);
    [all...]
test-api.cc     [all...]

Completed in 155 milliseconds