Home
last modified time | relevance | path

Searched refs:AllocLineStringObject (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Dobject_factory-inl.h37 EcmaString *ObjectFactory::AllocLineStringObject(size_t size) in AllocLineStringObject() function
Decma_string-inl.h127 auto string = vm->GetFactory()->AllocLineStringObject(size); in CreateLineString()
155 string = vm->GetFactory()->AllocLineStringObject(size); in CreateLineStringWithSpaceType()
Dobject_factory.h577 inline EcmaString *AllocLineStringObject(size_t size);
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_string_stub_builder.cpp81 newBuilder.AllocLineStringObject(res, &afterNew1, Int32(1), false); in FromCharCode()
517 newBuilder.AllocLineStringObject(&result, &afterNew, len, true); in GetSubString()
974 newBuilder.AllocLineStringObject(&result, &afterNew, Int32(1), true); in CreateStringBySingleCharCode()
978 newBuilder.AllocLineStringObject(&result, &afterNew, Int32(1), false); in CreateStringBySingleCharCode()
1050 newBuilder.AllocLineStringObject(&result, &afterNew, Int32(1), false); in CreateFromEcmaString()
1140 newBuilder.AllocLineStringObject(&result, &afterNew, len, true); in FastSubUtf8String()
1177 newBuilder.AllocLineStringObject(&result, &afterNew, len, true); in FastSubUtf16String()
1181 newBuilder.AllocLineStringObject(&result, &afterNew, len, false); in FastSubUtf16String()
1795 newBuilder.AllocLineStringObject(&result, &isUtf8Next, newLength, true); in StringConcat()
1799 newBuilder.AllocLineStringObject(&result, &isUtf16Next, newLength, false); in StringConcat()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dnew_object_stub_builder.h63 void AllocLineStringObject(Variable *result, Label *exit, GateRef length, bool compressed);
Dnew_object_stub_builder.cpp930 void NewObjectStubBuilder::AllocLineStringObject(Variable *result, Label *exit, GateRef length, boo… in AllocLineStringObject() function in panda::ecmascript::kungfu::NewObjectStubBuilder
Dtyped_hcr_lowering.cpp3113 newBuilder.AllocLineStringObject(&res, &afterNew1, builder_.Int32(1), false); in LowerStringFromSingleCharCode()
Dstub_builder.cpp8138 newBuilder.AllocLineStringObject(&result, &afterNew, Int32(1), true); in IntToEcmaString()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_hclass_test.cpp89 EcmaString *string = factory->AllocLineStringObject(EcmaString::SIZE); in HWTEST_F_L0()