Home
last modified time | relevance | path

Searched refs:IsLineString (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Decma_string-inl.h90 ASSERT(IsLineString()); in TrimLineString()
246 ASSERT_PRINT(IsLineString(), "EcmaString: Read data from not LineString"); in GetData()
253 if (IsLineString()) { in GetDataUtf8()
325 ASSERT(IsLineString()); in WriteData()
Decma_string.h682 bool IsLineString() const in IsLineString() function
684 return GetClass()->IsLineString(); in IsLineString()
705 return hclass->IsLineString() || hclass->IsConstantString(); in IsLineOrConstantString()
756 CAST_CHECK(LineEcmaString, IsLineString);
927 if (parent->IsLineString()) { in Get()
1140 if (string_->IsLineString()) { in ObjectSize()
1442 bool IsLineString() const in IsLineString() function
1444 return string_->IsLineString(); in IsLineString()
Djs_tagged_value-inl.h468 inline bool JSTaggedValue::IsLineString() const in IsLineString() function
470 return IsHeapObject() && GetTaggedObject()->GetClass()->IsLineString(); in IsLineString()
Djs_tagged_value.h460 bool IsLineString() const;
Djs_hclass.h585 inline bool IsLineString() const in IsLineString() function
Decma_string.cpp181 ASSERT(IsLineString() && !IsConstantString()); in WriteData()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dhcr_circuit_builder.h105 GateRef CircuitBuilder::IsLineString(GateRef obj) in IsLineString() function
Dhcr_circuit_builder.cpp577 return BoolOr(IsLineString(string), IsConstantString(string)); in IsLiteralString()
Dcircuit_builder.h637 inline GateRef IsLineString(GateRef obj);
Dstub_builder.h333 GateRef IsLineString(GateRef obj);
Dstub_builder-inl.h1181 inline GateRef StubBuilder::IsLineString(GateRef obj) in IsLineString() function
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_string_stub_builder.cpp865 Branch(IsLineString(str), &isLineString, &slicedStringCheck); in GetSingleCharCodeByIndex()
939 Branch(IsLineString(parent), &isLineString, &notLineString); in GetSingleCharCodeFromSlicedString()
1658 Branch(BoolOr(IsLineString(str), IsConstantString(str)), &exit, &notLineString); in FlattenString()
/arkcompiler/ets_runtime/ecmascript/serializer/tests/
Dserializer_test.cpp106 EXPECT_TRUE(res->IsLineString()); in LineStringTest()
120 EXPECT_TRUE(res->IsLineString()); in TreeStringTest()
134 EXPECT_TRUE(res->IsLineString()); in SlicedStringTest()