Home
last modified time | relevance | path

Searched refs:ref_types (Results 1 – 4 of 4) sorted by relevance

/ark/runtime_core/disassembler/templates/
Dintrinsics_gen.h.erb58 PandaVector<std::string_view> ref_types;
64 ref_types.emplace_back("<%= get_object_descriptor(t) %>");
68 auto proto = Method::Proto(shorty, ref_types);
/ark/runtime_core/runtime/templates/
Dintrinsics_gen.h.erb71 PandaVector<std::string_view> ref_types;
77 ref_types.emplace_back("<%= get_object_descriptor(t) %>");
81 auto proto = Method::Proto(shorty, ref_types);
/ark/runtime_core/libpandafile/tests/
Dfile_item_container_test.cpp418 std::vector<ClassItem *> ref_types; in TestProtos() local
428 ref_types.push_back(container.GetOrCreateClassItem("B")); in TestProtos()
480 EXPECT_EQ(nref, ref_types.size()); in TestProtos()
483 … EXPECT_EQ(proto_data_accessor.GetReferenceType(0).GetOffset(), ref_types[i]->GetOffset()); in TestProtos()
/ark/runtime_core/runtime/include/
Dmethod.h102 Proto(PandaVector<panda_file::Type> shorty, PandaVector<std::string_view> ref_types) in Proto() argument
103 : shorty_(std::move(shorty)), ref_types_(std::move(ref_types)) in Proto()