Home
last modified time | relevance | path

Searched refs:node1 (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/runtime_core/compiler/tests/
Dreg_alloc_interference_graph_test.cpp72 auto *node1 = gr.AllocNode(); in TEST_F() local
74 EXPECT_EQ(node1->GetNumber(), 0); in TEST_F()
79 EXPECT_NE(node1, node2); in TEST_F()
Dcompiler_regalloc_test.cpp252 auto *node1 = gr.AllocNode(); in __anon5d7559aa0802() local
254 EXPECT_EQ(node1->GetNumber(), 0); in __anon5d7559aa0802()
259 EXPECT_NE(node1, node2); in __anon5d7559aa0802()
/arkcompiler/toolchain/tooling/test/
Dpt_json_test.cpp223 cJSON *node1 = cJSON_CreateString("test"); in HWTEST_F_L0() local
224 PtJson str(node1); in HWTEST_F_L0()
Dpt_types_test.cpp693 ProfileNode node1; in HWTEST_F_L0() local
695 node1.SetCallFrame(std::move(callFrame1)); in HWTEST_F_L0()
696 std::unique_ptr<PtJson> result1 = node1.ToJson(); in HWTEST_F_L0()
/arkcompiler/ets_frontend/ts2panda/src/statement/
DclassStatement.ts728 function scalarArrayEquals(node1: ts.Node | undefined, node2: ts.Node | undefined): boolean {
729 if (node1 && node2) {
730 let val1Modifs = node1.modifiers;
739 } else if (!node1 && !node2) {