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

  /external/v8/src/
unicode-decoder.cc 28 bool is_two_characters = character > Utf16::kMaxNonSurrogateCharCode;
36 *buffer++ = Utf16::LeadSurrogate(character);
37 *buffer++ = Utf16::TrailSurrogate(character);
72 if (character > unibrow::Utf16::kMaxNonSurrogateCharCode) {
73 *data++ = Utf16::LeadSurrogate(character);
74 *data++ = Utf16::TrailSurrogate(character);
unicode-inl.h 88 if (Utf16::IsSurrogatePair(previous, c)) {
91 Utf16::CombineSurrogatePair(previous, c),
92 Utf16::kNoPreviousCharacter,
95 (Utf16::IsLeadSurrogate(c) ||
96 Utf16::IsTrailSurrogate(c))) {
130 if (Utf16::IsTrailSurrogate(c) &&
131 Utf16::IsLeadSurrogate(previous)) {
uri.cc 54 if (value <= static_cast<uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
57 buffer->Add(unibrow::Utf16::LeadSurrogate(value));
58 buffer->Add(unibrow::Utf16::TrailSurrogate(value));
253 unibrow::Utf8::Encode(s, c, unibrow::Utf16::kNoPreviousCharacter, false);
262 unibrow::Utf8::Encode(s, unibrow::Utf16::CombineSurrogatePair(cc1, cc2),
263 unibrow::Utf16::kNoPreviousCharacter, false);
283 if (unibrow::Utf16::IsLeadSurrogate(cc1)) {
287 if (unibrow::Utf16::IsTrailSurrogate(cc2)) {
292 } else if (!unibrow::Utf16::IsTrailSurrogate(cc1)) {
unicode.h 94 class Utf16 {
api.cc     [all...]
log.cc 90 int previous = unibrow::Utf16::kNoPreviousCharacter;
    [all...]
objects.cc     [all...]
  /external/v8/src/regexp/
regexp-parser.cc 53 unibrow::Utf16::IsLeadSurrogate(static_cast<uc16>(c0))) {
55 if (unibrow::Utf16::IsTrailSurrogate(c1)) {
56 c0 = unibrow::Utf16::CombineSurrogatePair(static_cast<uc16>(c0), c1);
715 if (code_unit <= unibrow::Utf16::kMaxNonSurrogateCharCode) {
718 v->push_back(unibrow::Utf16::LeadSurrogate(code_unit));
719 v->push_back(unibrow::Utf16::TrailSurrogate(code_unit));
1033 if (result && unicode() && unibrow::Utf16::IsLeadSurrogate(*value) &&
1041 unibrow::Utf16::IsTrailSurrogate(trail)) {
1042 *value = unibrow::Utf16::CombineSurrogatePair(static_cast<uc16>(*value),
    [all...]
regexp-macro-assembler.cc 49 if (unibrow::Utf16::IsLeadSurrogate(c1)) {
52 if (!unibrow::Utf16::IsLeadSurrogate(c2)) return 0;
56 if (unibrow::Utf16::IsTrailSurrogate(c1t) &&
57 unibrow::Utf16::IsTrailSurrogate(c2t)) {
58 c1 = unibrow::Utf16::CombineSurrogatePair(c1, c1t);
59 c2 = unibrow::Utf16::CombineSurrogatePair(c2, c2t);
jsregexp.cc 706 unibrow::Utf16::IsLeadSurrogate(subject_->Get(last_index)) &&
707 unibrow::Utf16::IsTrailSurrogate(subject_->Get(last_index + 1))) {
    [all...]
  /external/v8/src/parsing/
scanner.h 570 if (unibrow::Utf16::IsLeadSurrogate(c0_)) {
572 if (!unibrow::Utf16::IsTrailSurrogate(c1)) {
575 c0_ = unibrow::Utf16::CombineSurrogatePair(c0_, c1);
581 if (c0_ > static_cast<uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
scanner-character-streams.cc 274 if (t > unibrow::Utf16::kMaxNonSurrogateCharCode) chars++;
305 DCHECK(t < unibrow::Utf16::kMaxNonSurrogateCharCode);
325 } else if (t <= unibrow::Utf16::kMaxNonSurrogateCharCode) {
328 *(cursor++) = unibrow::Utf16::LeadSurrogate(t);
329 *(cursor++) = unibrow::Utf16::TrailSurrogate(t);
scanner.cc 117 static_cast<uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
122 unibrow::Utf16::LeadSurrogate(code_unit);
126 unibrow::Utf16::TrailSurrogate(code_unit);
    [all...]
  /external/v8/src/builtins/
builtins-string.cc 668 if (code <= static_cast<uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
671 two_byte_buffer.Add(unibrow::Utf16::LeadSurrogate(code));
672 two_byte_buffer.Add(unibrow::Utf16::TrailSurrogate(code));
    [all...]
  /external/v8/src/heap/
heap.cc     [all...]
  /prebuilts/tools/common/m2/repository/com/sun/xml/bind/external/rngom/2.2.11/
rngom-2.2.11.jar 

Completed in 149 milliseconds