Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Decma_string.cpp688 if (!str1->IsSlicedString() && canBeCompressToUtf8 != str1->IsUtf8()) { in StringIsEqualUint8Data()
1219 ASSERT(string->IsTreeString() || string->IsSlicedString()); in SlowFlatten()
1268 } else if (string->IsSlicedString()) { in FlattenAllString()
1299 } else if (string->IsSlicedString()) { in FlattenNoGC()
1328 } else if (string->IsSlicedString()) { in GetUtf8DataFlat()
1340 if (string->IsSlicedString()) { in GetNonTreeUtf8Data()
1361 } else if (string->IsSlicedString()) { in GetUtf16DataFlat()
1373 if (string->IsSlicedString()) { in GetNonTreeUtf16Data()
Decma_string.h677 bool IsSlicedString() const in IsSlicedString() function
679 return GetClass()->IsSlicedString(); in IsSlicedString()
894 CAST_CHECK(SlicedString, IsSlicedString);
1501 bool IsSlicedString() const in IsSlicedString() function
1503 return string_->IsSlicedString(); in IsSlicedString()
Djs_tagged_value-inl.h241 inline bool JSTaggedValue::IsSlicedString() const in IsSlicedString() function
243 return IsHeapObject() && GetTaggedObject()->GetClass()->IsSlicedString(); in IsSlicedString()
Djs_tagged_value.h483 bool IsSlicedString() const;
Djs_hclass.h652 inline bool IsSlicedString() const in IsSlicedString() function
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_ark_tools.h33 V("isSlicedString", IsSlicedString, 1, INVALID) \
183 static JSTaggedValue IsSlicedString(EcmaRuntimeCallInfo *info);
Dbuiltins_ark_tools.cpp141 JSTaggedValue BuiltinsArkTools::IsSlicedString(EcmaRuntimeCallInfo *info) in IsSlicedString() function in panda::ecmascript::builtins::BuiltinsArkTools
150 return GetTaggedBoolean(str->IsSlicedString()); in IsSlicedString()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dhcr_circuit_builder.h113 GateRef CircuitBuilder::IsSlicedString(GateRef obj) in IsSlicedString() function
Dcircuit_builder.h743 inline GateRef IsSlicedString(GateRef obj);
Dstub_builder.h410 GateRef IsSlicedString(GateRef obj);
Dstub_builder-inl.h1397 inline GateRef StubBuilder::IsSlicedString(GateRef obj) in IsSlicedString() function
/arkcompiler/ets_runtime/ecmascript/base/
Djson_parser.cpp1112 } else if (stringAccessor.IsSlicedString()) { in Parse()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_string_stub_builder.cpp1093 BRANCH(IsSlicedString(str), &isSlicedString, &exit); in GetSingleCharCodeByIndex()
1974 BRANCH(IsSlicedString(str), &isSlicedString, &exit); in FlattenString()
/arkcompiler/ets_runtime/ecmascript/serializer/tests/
Dserializer_test.cpp137 EXPECT_TRUE(res->IsSlicedString()); in SlicedStringTest()
1111 EXPECT_TRUE(str2.GetTaggedValue().IsSlicedString()); in HWTEST_F_L0()