Home
last modified time | relevance | path

Searched refs:protoType (Results 1 - 9 of 9) sorted by relevance

/arkcompiler/ets_frontend/merge_abc/src/
H A DassemblyTypeProto.cpp19 void Type::Serialize(const panda::pandasm::Type type, protoPanda::Type &protoType) in Serialize() argument
21 protoType.set_componentname(type.GetComponentName()); in Serialize()
22 protoType.set_rank(type.GetRank()); in Serialize()
23 protoType.set_name(type.GetName()); in Serialize()
24 protoType.set_typeid_(static_cast<uint32_t>(type.GetId())); in Serialize()
27 panda::pandasm::Type &Type::Deserialize(const protoPanda::Type &protoType, in Deserialize() argument
30 auto *type = allocator->New<panda::pandasm::Type>(protoType.componentname(), protoType.rank()); in Deserialize()
H A DassemblyTypeProto.h26 static void Serialize(const panda::pandasm::Type type, protoPanda::Type &protoType);
27 static panda::pandasm::Type &Deserialize(const protoPanda::Type &protoType,
H A DassemblyFieldProto.cpp21 auto *protoType = protoField.mutable_type(); in Serialize() local
22 Type::Serialize(field.type, *protoType); in Serialize()
H A DassemblyProgramProto.cpp47 auto *protoType = protoProgram.add_arraytypes(); in Serialize() local
48 Type::Serialize(type, *protoType); in Serialize()
H A DmetaProto.cpp63 auto *protoType = protoMeta.mutable_fieldtype(); in Serialize() local
64 Type::Serialize(meta.GetFieldType(), *protoType); in Serialize()
H A DannotationProto.cpp118 auto *protoType = protoScalar.mutable_valuetype(); in Serialize() local
119 Type::Serialize(scalar.GetValue<panda::pandasm::Type>(), *protoType); in Serialize()
/arkcompiler/ets_runtime/ecmascript/napi/test/
H A Djsnapi_first_tests.cpp592 Local<JSValueRef> protoType = function->GetPrototype(vm_); in HWTEST_F_L0() local
593 ASSERT_TRUE(protoType->IsObject(vm_)); in HWTEST_F_L0()
596 protoType = object->GetPrototype(vm_); in HWTEST_F_L0()
597 ASSERT_TRUE(protoType->IsObject(vm_)); in HWTEST_F_L0()
610 protoType = object->GetPrototype(vm_); in HWTEST_F_L0()
611 ASSERT_TRUE(protoType->IsObject(vm_)); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
H A Dpgo_profiler.cpp1672 auto protoType = GetOrInsertProfileType(protoHClass, protoRootType); in UpdatePrototypeChainInfo() local
1673 protoChain.emplace_back(protoRootType, protoType); in UpdatePrototypeChainInfo()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
H A Daarch64_cgfunc.cpp3330 MIRType *protoType = GlobalTables::GetTypeTable().GetTypeFromTyIdx(iCallNode->GetRetTyIdx());
3331 if (protoType->IsMIRPtrType()) {
3332 calleeType = static_cast<MIRPtrType *>(protoType)->GetPointedFuncType();
3333 } else if (protoType->IsMIRFuncType()) {
3334 calleeType = static_cast<MIRFuncType *>(protoType);

Completed in 18 milliseconds