Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Decma_string-inl.h104 ASSERT(IsLineString()); in TrimLineString()
281 ASSERT_PRINT(IsLineString(), "EcmaString: Read data from not LineString"); in GetData()
288 if (IsLineString()) { in GetDataUtf8()
360 ASSERT(IsLineString()); in WriteData()
476 ASSERT(first->IsLineString()); in WriteToFlatWithPos()
Decma_string.h669 bool IsLineString() const in IsLineString() function
671 return GetClass()->IsLineString(); in IsLineString()
692 return hclass->IsLineString() || hclass->IsConstantString(); in IsLineOrConstantString()
752 CAST_CHECK(LineEcmaString, IsLineString);
923 if (parent->IsLineString()) { in Get()
1152 if (string_->IsLineString()) { in ObjectSize()
1491 bool IsLineString() const in IsLineString() function
1493 return string_->IsLineString(); in IsLineString()
Djs_tagged_value-inl.h226 inline bool JSTaggedValue::IsLineString() const in IsLineString() function
228 return IsHeapObject() && GetTaggedObject()->GetClass()->IsLineString(); in IsLineString()
Djs_tagged_value.h480 bool IsLineString() const;
Decma_string.cpp189 ASSERT(IsLineString() && !IsConstantString()); in WriteData()
1435 if (IsLineString()) { in Utf8ConvertToString()
Djs_hclass.h642 inline bool IsLineString() const in IsLineString() function
/arkcompiler/ets_runtime/ecmascript/compiler/
Dhcr_circuit_builder.h119 GateRef CircuitBuilder::IsLineString(GateRef obj) in IsLineString() function
Dcircuit_builder.h745 inline GateRef IsLineString(GateRef obj);
Dstub_builder.h409 GateRef IsLineString(GateRef obj);
Dstub_builder-inl.h1391 inline GateRef StubBuilder::IsLineString(GateRef obj) in IsLineString() function
/arkcompiler/ets_runtime/ecmascript/base/
Djson_parser.cpp496 if (!stringAccessor.IsLineString() || (stringAccessor.IsUtf8() && in SetPropertyByValue()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_string_stub_builder.cpp1086 BRANCH(IsLineString(str), &isLineString, &slicedStringCheck); in GetSingleCharCodeByIndex()
1160 BRANCH(IsLineString(parent), &isLineString, &notLineString); in GetSingleCharCodeFromSlicedString()
/arkcompiler/ets_runtime/ecmascript/serializer/tests/
Dserializer_test.cpp109 EXPECT_TRUE(res->IsLineString()); in LineStringTest()