Home
last modified time | relevance | path

Searched refs:IsTreeString (Results 1 – 15 of 15) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Decma_string.h694 bool IsTreeString() const in IsTreeString() function
696 return GetClass()->IsTreeString(); in IsTreeString()
700 return !IsTreeString(); in NotTreeString()
951 CAST_CHECK(TreeEcmaString, IsTreeString);
985 if (string->IsTreeString()) { in Get()
1457 bool IsTreeString() const in IsTreeString() function
1459 return string_->IsTreeString(); in IsTreeString()
Decma_string.cpp1072 ASSERT(string->IsTreeString() || string->IsSlicedString()); in SlowFlatten()
1083 if (string->IsTreeString()) { in SlowFlatten()
1098 if (s->IsTreeString()) { in Flatten()
1115 if (string->IsTreeString()) { in FlattenAllString()
1135 if (string->IsTreeString()) { in FlattenNoGC()
1174 if (string->IsTreeString()) { in GetUtf8DataFlat()
1194 if (string->IsTreeString()) { in GetUtf16DataFlat()
Djs_tagged_value-inl.h478 inline bool JSTaggedValue::IsTreeString() const in IsTreeString() function
480 return IsHeapObject() && GetTaggedObject()->GetClass()->IsTreeString(); in IsTreeString()
Decma_string-inl.h331 if (!JSTaggedValue(this).IsTreeString()) { in IsFlat()
Djs_tagged_value.h462 bool IsTreeString() const;
Djs_hclass.h600 inline bool IsTreeString() const in IsTreeString() function
/arkcompiler/ets_runtime/ecmascript/compiler/
Dhcr_circuit_builder.h93 GateRef CircuitBuilder::IsTreeString(GateRef obj) in IsTreeString() function
Dcircuit_builder.h634 inline GateRef IsTreeString(GateRef obj);
Dstub_builder-inl.h1199 inline GateRef StubBuilder::IsTreeString(GateRef obj) in IsTreeString() function
1201 return env_->GetBuilder()->IsTreeString(obj); in IsTreeString()
Dstub_builder.h336 GateRef IsTreeString(GateRef obj);
Dtyped_hcr_lowering.cpp411 builder_.Branch(builder_.IsTreeString(str), &isTreeString, &exit); in LowerFlattenTreeStringCheck()
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp1835 if (EcmaStringAccessor(objectHeader).IsTreeString()) { in EncodeTaggedObject()
1855 if (EcmaStringAccessor(objectHeader).IsTreeString()) { in EncodeTaggedObject()
1880 if (EcmaStringAccessor(oldObjHeader).IsTreeString()) { in EncodeTaggedObject()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_string_stub_builder.cpp1664 Branch(IsTreeString(str), &isTreeString, &notTreeString); in FlattenString()
/arkcompiler/ets_runtime/ecmascript/serializer/tests/
Dserializer_test.cpp959 EXPECT_TRUE(str3.GetTaggedValue().IsTreeString()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_regexp.cpp1673 if (EcmaStringAccessor(inputString).IsTreeString()) { // use flattenedString as srcString in RegExpExecInternal()