Home
last modified time | relevance | path

Searched refs:protoType (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_frontend/merge_abc/src/
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()
DassemblyTypeProto.h26 static void Serialize(const panda::pandasm::Type type, protoPanda::Type &protoType);
27 static panda::pandasm::Type &Deserialize(const protoPanda::Type &protoType,
DassemblyFieldProto.cpp21 auto *protoType = protoField.mutable_type(); in Serialize() local
22 Type::Serialize(field.type, *protoType); in Serialize()
DassemblyProgramProto.cpp47 auto *protoType = protoProgram.add_arraytypes(); in Serialize() local
48 Type::Serialize(type, *protoType); in Serialize()
DmetaProto.cpp63 auto *protoType = protoMeta.mutable_fieldtype(); in Serialize() local
64 Type::Serialize(meta.GetFieldType(), *protoType); in Serialize()
DannotationProto.cpp116 auto *protoType = protoScalar.mutable_valuetype(); in Serialize() local
117 Type::Serialize(scalar.GetValue<panda::pandasm::Type>(), *protoType); in Serialize()
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp391 Local<JSValueRef> protoType = function->GetPrototype(vm_); in HWTEST_F_L0() local
392 ASSERT_TRUE(protoType->IsObject()); in HWTEST_F_L0()
395 protoType = object->GetPrototype(vm_); in HWTEST_F_L0()
396 ASSERT_TRUE(protoType->IsObject()); in HWTEST_F_L0()
399 protoType = native->GetPrototype(vm_); in HWTEST_F_L0()
400 ASSERT_TRUE(protoType->IsObject()); in HWTEST_F_L0()