Home
last modified time | relevance | path

Searched refs:AddMethod (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/runtime_core/libpandafile/tests/
Dpgo_test.cpp35 …MethodItem *method_item_1 = class_item_a->AddMethod(method_name_1, proto_item_1, ACC_PUBLIC | ACC_… in CreateItems()
41 code_item_1->AddMethod(method_item_1); in CreateItems()
Dfile_item_container_test.cpp256 …MethodItem *method_item = class_item->AddMethod(method_name, proto_item, ACC_PUBLIC | ACC_STATIC, …
416 …MethodItem *method_item = class_item->AddMethod(method_name, proto_item, ACC_PUBLIC | ACC_STATIC, …
513 …MethodItem *method_item = class_item->AddMethod(method_name, proto_item, ACC_PUBLIC | ACC_STATIC, … in TestProtos()
590 …MethodItem *method_item = class_item->AddMethod(method_name, proto_item, ACC_PUBLIC | ACC_STATIC, …
833 …MethodItem *method_item_1 = class_item_a->AddMethod(method_name_1, proto_item_1, ACC_PUBLIC | ACC_…
838 code_item_1->AddMethod(method_item_1);
845 …MethodItem *method_item_2 = class_item_b->AddMethod(method_name_2, proto_item_2, ACC_PUBLIC | ACC_…
850 code_item_2->AddMethod(method_item_2);
854 …auto *method_item_3 = empty_class_item->AddMethod(method_name_3, proto_item_1, ACC_PUBLIC | ACC_ST…
859 code_item_3->AddMethod(method_item_3);
[all …]
Ddebug_info_extractor_test.cpp52 …MethodItem *method_item = class_item->AddMethod(method_name, proto_item, ACC_PUBLIC | ACC_STATIC, … in PreparePandaFile()
81 class_item->AddMethod(method_name_bar, proto_item_bar, ACC_PUBLIC | ACC_STATIC, params_bar); in PreparePandaFile()
103 …MethodItem *method_item_baz = class_item->AddMethod(method_name_baz, proto_item_baz, ACC_PUBLIC, p… in PreparePandaFile()
/arkcompiler/runtime_core/compiler/tests/
Daot_test.cpp217 aot_builder.AddMethod(compiled_method1, 0); in TEST_F()
228 aot_builder.AddMethod(compiled_method2, 1); in TEST_F()
562 aot_builder.AddMethod(compiled_method1, 0); in TEST_F()
573 aot_builder.AddMethod(compiled_method2, 1); in TEST_F()
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler.cpp43 if (recordInfos_->AddMethod(calleeRecordName, calleeMethod, mode, incCount)) { in ProfileCall()
Dpgo_profiler_info.cpp616 bool PGOMethodInfoMap::AddMethod(Chunk *chunk, Method *jsMethod, SampleMode mode, int32_t incCount) in AddMethod() function in panda::ecmascript::PGOMethodInfoMap
985 bool PGORecordDetailInfos::AddMethod(const CString &recordName, Method *jsMethod, SampleMode mode, … in AddMethod() function in panda::ecmascript::PGORecordDetailInfos
990 return curMethodInfos->AddMethod(chunk_.get(), jsMethod, mode, incCount); in AddMethod()
Dpgo_profiler_info.h838 bool AddMethod(Chunk *chunk, Method *jsMethod, SampleMode mode, int32_t incCount);
1034 bool AddMethod(const CString &recordName, Method *jsMethod, SampleMode mode, int32_t incCount);
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/
Dpgo_profiler_test.cpp580 ASSERT_TRUE(recordInfos->AddMethod("test", jsMethod, SampleMode::CALL_MODE, 1)); in HWTEST_F_L0()
581 ASSERT_FALSE(recordInfos->AddMethod("test", jsMethod, SampleMode::CALL_MODE, 1)); in HWTEST_F_L0()
582 ASSERT_FALSE(recordInfos->AddMethod("test", jsMethod, SampleMode::CALL_MODE, 1)); in HWTEST_F_L0()
/arkcompiler/runtime_core/libpandafile/
Dfile_items.h1074 MethodItem *AddMethod(Args... args) in AddMethod() function
1423 void AddMethod(BaseMethodItem *method) in AddMethod() function
Dfile_item_container.cpp288 deduplicated->AddMethod(method); // we need it for Profile-Guided optimization in DeduplicateCode()
Dfile_reader.cpp638 … cls->AddMethod(method_str_item, proto_item, method_acc.GetAccessFlags(), std::move(param_items)); in CreateMethodItem()
/arkcompiler/runtime_core/assembler/
Dassembly-emitter.cpp980 method = area->AddMethod(method_name, proto, access_flags, params); in CreateMethodItem()
1095 code->AddMethod(method); // we need it for Profile-Guided optimization in SetCodeAndDebugInfo()