Home
last modified time | relevance | path

Searched refs:IsAsciiRepresentation (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/
Dregexp-macro-assembler.cc80 if (subject->IsAsciiRepresentation()) { in StringCharacterPosition()
123 bool is_ascii = subject->IsAsciiRepresentation(); in Match()
132 ASSERT(subject_ptr->IsAsciiRepresentation() == is_ascii); in Match()
Dobjects-inl.h179 String::cast(this)->IsAsciiRepresentation(); in IsSeqAsciiString()
199 String::cast(this)->IsAsciiRepresentation(); in IsExternalAsciiString()
238 bool String::IsAsciiRepresentation() { in IsAsciiRepresentation() function
242 return ConsString::cast(this)->first()->IsAsciiRepresentation(); in IsAsciiRepresentation()
1677 return this->IsAsciiRepresentation() in Set()
2398 if (src_str->IsAsciiRepresentation()) { in ACCESSORS()
Druntime.cc1515 is_ascii_(subject->IsAsciiRepresentation()) { in ReplacementStringBuilder()
1560 if (!string->IsAsciiRepresentation()) { in AddString()
1819 if (replacement->IsAsciiRepresentation()) { in Compile()
2415 if (sub->IsAsciiRepresentation()) { in StringMatch()
2440 if (pat->IsAsciiRepresentation()) { in StringMatch()
2442 if (sub->IsAsciiRepresentation()) { in StringMatch()
2448 if (sub->IsAsciiRepresentation()) { in StringMatch()
2533 if (sub->IsAsciiRepresentation()) { in Runtime_StringLastIndexOf()
2556 if (pat->IsAsciiRepresentation()) { in Runtime_StringLastIndexOf()
2558 if (sub->IsAsciiRepresentation()) { in Runtime_StringLastIndexOf()
[all …]
Dlog-utils.cc289 Append(str->IsAsciiRepresentation() ? 'a' : '2'); in AppendDetailed()
Dobjects.cc643 if (IsAsciiRepresentation()) { in TryFlatten()
3477 if (IsAsciiRepresentation()) return length(); in Utf8Length()
3493 ASSERT(IsAsciiRepresentation()); in ToAsciiVector()
3610 ASSERT(!IsAsciiRepresentation()); in GetTwoByteData()
3878 if (input->IsAsciiRepresentation()) { in ReadBlock()
3895 if (input->IsAsciiRepresentation()) { in ReadBlock()
3988 is_ascii_ = str->IsAsciiRepresentation(); in PostGarbageCollection()
4020 if (input->IsAsciiRepresentation()) { in ReadBlockIntoBuffer()
4037 if (input->IsAsciiRepresentation()) { in ReadBlockIntoBuffer()
4342 if (b->IsAsciiRepresentation()) { in CompareStringContentsPartial()
[all …]
Dinterpreter-irregexp.cc627 if (subject->IsAsciiRepresentation()) { in Match()
Dheap.cc1933 bool is_ascii = first->IsAsciiRepresentation() in AllocateConsString()
1934 && second->IsAsciiRepresentation(); in AllocateConsString()
2017 Object* result = buffer->IsAsciiRepresentation() in AllocateSubString()
2024 if (buffer->IsAsciiRepresentation()) { in AllocateSubString()
2025 ASSERT(string_result->IsAsciiRepresentation()); in AllocateSubString()
Dbootstrapper.cc887 ASSERT(source->IsAsciiRepresentation()); in CompileScriptCached()
Djsregexp.cc389 bool is_ascii = subject->IsAsciiRepresentation(); in IrregexpExec()
429 bool is_ascii = subject->IsAsciiRepresentation(); in IrregexpExec()
Dobjects.h3796 inline bool IsAsciiRepresentation();
/external/v8/src/x64/
Dregexp-macro-assembler-x64.cc1087 bool is_ascii = subject->IsAsciiRepresentation(); in CheckStackGuardState()
1106 if (subject->IsAsciiRepresentation() != is_ascii) { in CheckStackGuardState()
/external/v8/src/ia32/
Dregexp-macro-assembler-ia32.cc999 bool is_ascii = subject->IsAsciiRepresentation(); in CheckStackGuardState()
1018 if (subject->IsAsciiRepresentation() != is_ascii) { in CheckStackGuardState()
/external/v8/src/arm/
Dregexp-macro-assembler-arm.cc1006 bool is_ascii = subject->IsAsciiRepresentation(); in CheckStackGuardState()
1025 if (subject->IsAsciiRepresentation() != is_ascii) { in CheckStackGuardState()
/external/v8/test/cctest/
Dtest-api.cc8131 if (string->IsAsciiRepresentation()) { in MorphAString()