/aosp12/art/compiler/optimizing/ |
H A D | bounds_check_elimination_test.cc | 106 if_inst = new (GetAllocator()) HIf(cmp); in TEST_F() 118 array_set = new (GetAllocator()) HArraySet( in TEST_F() 131 array_set = new (GetAllocator()) HArraySet( in TEST_F() 193 if_inst = new (GetAllocator()) HIf(cmp2); in TEST_F() 261 if_inst = new (GetAllocator()) HIf(cmp2); in TEST_F() 815 HPhi* phi_i = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in TEST_F() 831 HPhi* phi_j = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in TEST_F() 837 if_inst = new (GetAllocator()) HIf(cmp); in TEST_F() 865 if_inst = new (GetAllocator()) HIf(cmp); in TEST_F() 892 array_get_j = new (GetAllocator()) in TEST_F() [all …]
|
H A D | nodes_vector_test.cc | 133 HVecOperation* v0 = new (GetAllocator()) in TEST_F() 135 HVecOperation* v1 = new (GetAllocator()) in TEST_F() 137 HVecOperation* v2 = new (GetAllocator()) in TEST_F() 139 HVecOperation* v3 = new (GetAllocator()) in TEST_F() 142 GetAllocator(), in TEST_F() 197 HVecLoad* v0 = new (GetAllocator()) HVecLoad(GetAllocator(), in TEST_F() 205 HVecLoad* v1 = new (GetAllocator()) HVecLoad(GetAllocator(), in TEST_F() 213 HVecLoad* v2 = new (GetAllocator()) HVecLoad(GetAllocator(), in TEST_F() 249 HVecOperation* p0 = new (GetAllocator()) in TEST_F() 252 GetAllocator(), in TEST_F() [all …]
|
H A D | gvn_test.cc | 31 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 40 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 94 block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() 156 then->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 166 else_->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 176 join->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() 213 block->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 274 exit->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() 344 entry->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 387 new (GetAllocator()) HInstanceFieldSet(parameter, in TEST_F() [all …]
|
H A D | load_store_analysis_test.cc | 353 HVecOperation* v1 = new (GetAllocator()) HVecReplicateScalar(GetAllocator(), in TEST_F() 358 HVecOperation* v2 = new (GetAllocator()) HVecReplicateScalar(GetAllocator(), in TEST_F() 367 GetAllocator(), in TEST_F() 376 GetAllocator(), in TEST_F() 385 GetAllocator(), in TEST_F() 394 GetAllocator(), in TEST_F() 403 GetAllocator(), in TEST_F() 412 GetAllocator(), in TEST_F() 421 GetAllocator(), in TEST_F() 2003 new (GetAllocator()) HPhi(GetAllocator(), kNoRegNumber, 2, DataType::Type::kReference); in TEST_F() [all …]
|
H A D | ssa_liveness_analysis_test.cc | 39 entry_ = new (GetAllocator()) HBasicBlock(graph_); in SetUp() 60 HInstruction* arg = new (GetAllocator()) HParameterValue( in TEST_F() 65 HInstruction* ret = new (GetAllocator()) HReturn(arg); in TEST_F() 67 block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() 80 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F() 82 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F() 84 HInstruction* value = new (GetAllocator()) HParameterValue( in TEST_F() 98 HEnvironment* null_check_env = new (GetAllocator()) HEnvironment(GetAllocator(), in TEST_F() 109 HEnvironment* bounds_check_env = new (GetAllocator()) HEnvironment(GetAllocator(), in TEST_F() 167 HEnvironment* null_check_env = new (GetAllocator()) HEnvironment(GetAllocator(), in TEST_F() [all …]
|
H A D | nodes_test.cc | 40 GetAllocator(), in TEST_F() 96 GetAllocator(), in TEST_F() 152 entry->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 164 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() 195 entry->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() 237 entry->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() 252 HEnvironment* parent1 = new (GetAllocator()) HEnvironment( in TEST_F() 253 GetAllocator(), 1, graph->GetArtMethod(), 0, nullptr); in TEST_F() 258 HEnvironment* parent2 = new (GetAllocator()) HEnvironment( in TEST_F() 259 GetAllocator(), 1, graph->GetArtMethod(), 0, nullptr); in TEST_F() [all …]
|
H A D | induction_var_analysis_test.cc | 55 loop_header_[d] = new (GetAllocator()) HBasicBlock(graph_); in BuildForLoop() 61 loop_body_[d] = new (GetAllocator()) HBasicBlock(graph_); in BuildForLoop() 80 entry_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoopNest() 83 return_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoopNest() 85 exit_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoopNest() 94 parameter_ = new (GetAllocator()) HParameterValue( in BuildLoopNest() 105 exit_->AddInstruction(new (GetAllocator()) HExit()); in BuildLoopNest() 109 basic_[d] = new (GetAllocator()) HPhi(GetAllocator(), d, 0, DataType::Type::kInt32); in BuildLoopNest() 142 HPhi* select_phi = new (GetAllocator()) HPhi(GetAllocator(), -1, 0, DataType::Type::kInt32); in BuildIf() 155 HPhi* phi = new (GetAllocator()) HPhi(GetAllocator(), vreg, 0, DataType::Type::kInt32); in InsertLoopPhi() [all …]
|
H A D | loop_optimization_test.cc | 36 iva_ = new (GetAllocator()) HInductionVarAnalysis(graph_); in SetUp() 41 loop_opt_ = new (GetAllocator()) HLoopOptimization( in SetUp() 58 entry_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph() 59 return_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph() 60 exit_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph() 89 body->AddInstruction(new (GetAllocator()) HGoto()); in AddLoop() 236 body->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 238 HPhi* phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in TEST_F() 287 preheader0->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 288 preheader1->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() [all …]
|
H A D | licm_test.cc | 50 entry_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 51 loop_preheader_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 52 loop_header_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 53 loop_body_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 54 return_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 55 exit_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 85 loop_body_->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoop() 87 exit_->AddInstruction(new (GetAllocator()) HExit()); in BuildLoop() 182 HInstruction* get_array = new (GetAllocator()) HArrayGet( in TEST_F() 185 HInstruction* set_array = new (GetAllocator()) HArraySet( in TEST_F() [all …]
|
H A D | load_store_elimination_test.cc | 116 phi_ = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in CreateTestControlFlowGraph() 183 new (GetAllocator()) HVecLoad(GetAllocator(), in AddVecLoad() 208 vdata = new (GetAllocator()) in AddVecStore() 213 new (GetAllocator()) HVecStore(GetAllocator(), in AddVecStore() 1146 HInstruction* const_fence = new (GetAllocator()) HConstructorFence(new_inst, 0, GetAllocator()); in TEST_F() 1272 HPhi* i_phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in TEST_F() 1273 HPhi* t_phi = new (GetAllocator()) HPhi(GetAllocator(), 1, 0, DataType::Type::kInt32); in TEST_F() 1401 HPhi* i_phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in TEST_F() 1402 HPhi* t_phi = new (GetAllocator()) HPhi(GetAllocator(), 1, 0, DataType::Type::kInt32); in TEST_F() 1732 HPhi* i_phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in TEST_F() [all …]
|
H A D | scheduler_test.cc | 74 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph_); in TestBuildDependencyGraphAndSchedule() 75 HBasicBlock* block1 = new (GetAllocator()) HBasicBlock(graph_); in TestBuildDependencyGraphAndSchedule() 104 HInstruction* div_check = new (GetAllocator()) HDivZeroCheck(add2, 0); in TestBuildDependencyGraphAndSchedule() 107 new (GetAllocator()) HArrayGet(array, add1, DataType::Type::kInt32, 0); in TestBuildDependencyGraphAndSchedule() 111 new (GetAllocator()) HArrayGet(array, add1, DataType::Type::kInt32, 0); in TestBuildDependencyGraphAndSchedule() 132 HEnvironment* environment = new (GetAllocator()) HEnvironment(GetAllocator(), in TestBuildDependencyGraphAndSchedule() 202 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph_); in TestDependencyGraphOnAliasingArrayAccesses() 211 HInstruction* i = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in TestDependencyGraphOnAliasingArrayAccesses() 215 HInstruction* j = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in TestDependencyGraphOnAliasingArrayAccesses() 230 new (GetAllocator()) HArraySet(arr, c0, c0, DataType::Type::kInt32, 0); in TestDependencyGraphOnAliasingArrayAccesses() [all …]
|
H A D | codegen_test.cc | 420 entry->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 457 HParallelMove* move = new (graph_in->GetAllocator()) HParallelMove(graph_in->GetAllocator()); in TEST_F() 504 new (graph_in->GetAllocator()) HParallelMove(graph_in->GetAllocator()); in TEST_F() 573 new (graph_in->GetAllocator()) HParallelMove(graph_in->GetAllocator()); in TEST_F() 621 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TestComparison() 643 comparison = new (GetAllocator()) HEqual(op1, op2); in TestComparison() 667 comparison = new (GetAllocator()) HBelow(op1, op2); in TestComparison() 675 comparison = new (GetAllocator()) HAbove(op1, op2); in TestComparison() 731 HParallelMove* move = new (graph->GetAllocator()) HParallelMove(graph->GetAllocator()); in TEST_F() 777 HParallelMove* move = new (graph->GetAllocator()) HParallelMove(graph->GetAllocator()); in TEST_F() [all …]
|
H A D | select_generator_test.cc | 31 AddParameter(new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in InitGraphAndParameters() 49 HParameterValue* bool_param = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in ConstructBasicGraphForSelect() 56 if_block->AddInstruction(new (GetAllocator()) HIf(bool_param)); in ConstructBasicGraphForSelect() 59 then_block->AddInstruction(new (GetAllocator()) HGoto()); in ConstructBasicGraphForSelect() 61 else_block->AddInstruction(new (GetAllocator()) HGoto()); in ConstructBasicGraphForSelect() 63 HPhi* phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in ConstructBasicGraphForSelect() 82 HDivZeroCheck* instr = new (GetAllocator()) HDivZeroCheck(parameters_[0], 0); in TEST_F() 86 GetAllocator()->Adapter(kArenaAllocInstruction)); in TEST_F() 95 HAdd* instr = new (GetAllocator()) HAdd(DataType::Type::kInt32, in TEST_F()
|
H A D | register_allocator_test.cc | 525 then->AddInstruction(new (GetAllocator()) HGoto()); in BuildIfElseWithPhi() 526 else_->AddInstruction(new (GetAllocator()) HGoto()); in BuildIfElseWithPhi() 528 *phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in BuildIfElseWithPhi() 550 join->AddInstruction(new (GetAllocator()) HExit()); in BuildIfElseWithPhi() 663 *ret = new (GetAllocator()) HReturn(*field); in BuildFieldReturn() 669 exit->AddInstruction(new (GetAllocator()) HExit()); in BuildFieldReturn() 737 block->AddInstruction(new (GetAllocator()) HExit()); in BuildTwoSubs() 804 *div = new (GetAllocator()) HDiv( in BuildDiv() 808 block->AddInstruction(new (GetAllocator()) HExit()); in BuildDiv() 862 block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() [all …]
|
H A D | instruction_simplifier_test.cc | 164 HInstruction* goto_c1 = new (GetAllocator()) HGoto(); in TEST_F() 167 HInstruction* goto_c2 = new (GetAllocator()) HGoto(); in TEST_F() 171 HInstruction* goto_c3 = new (GetAllocator()) HGoto(); in TEST_F() 178 new (GetAllocator()) HPredicatedInstanceFieldGet(obj_phi, in TEST_F() 256 HInstruction* goto_c1 = new (GetAllocator()) HGoto(); in TEST_F() 259 HInstruction* goto_c2 = new (GetAllocator()) HGoto(); in TEST_F() 263 HInstruction* goto_c3 = new (GetAllocator()) HGoto(); in TEST_F() 342 HInstruction* goto_left = new (GetAllocator()) HGoto(); in TEST_F() 347 HInstruction* goto_right = new (GetAllocator()) HGoto(); in TEST_F() 450 HInstruction* goto_left = new (GetAllocator()) HGoto(); in TEST_P() [all …]
|
H A D | constant_folding_test.cc | 737 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 740 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 742 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 749 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F() 752 entry_block->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 757 block->AddInstruction(last = new (GetAllocator()) HAbove(zero, parameter)); in TEST_F() 759 block->AddInstruction(last = new (GetAllocator()) HAbove(parameter, zero)); in TEST_F() 765 block->AddInstruction(last = new (GetAllocator()) HBelow(zero, parameter)); in TEST_F() 767 block->AddInstruction(last = new (GetAllocator()) HBelow(parameter, zero)); in TEST_F() 773 block->AddInstruction(new (GetAllocator()) HReturn(zero)); in TEST_F() [all …]
|
H A D | superblock_cloner_test.cc | 37 AddParameter(new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in InitGraphAndParameters() 72 HPhi* phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in CreateBasicLoopDataFlow() 73 HInstruction* suspend_check = new (GetAllocator()) HSuspendCheck(); in CreateBasicLoopDataFlow() 79 loop_header->AddInstruction(new (GetAllocator()) HIf(loop_check)); in CreateBasicLoopDataFlow() 88 HInstruction* array_set = new (GetAllocator()) HArraySet( in CreateBasicLoopDataFlow() 99 loop_body->AddInstruction(new (GetAllocator()) HGoto()); in CreateBasicLoopDataFlow() 150 ArenaAllocator* arena = GetAllocator(); in TEST_F() 231 ArenaAllocator* arena = GetAllocator(); in TEST_F() 270 ArenaAllocator* arena = GetAllocator(); in TEST_F() 439 temp1->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() [all …]
|
H A D | optimizing_unit_test.h | 130 ArenaAllocator* GetAllocator() { return &allocator_; } in GetAllocator() function 226 ArenaAllocator* GetAllocator() { return pool_and_allocator_->GetAllocator(); } in GetAllocator() function 276 new (graph->GetAllocator()) DexCompilationUnit( 345 (GetAllocator()), in ManuallyBuildEnvFor() 424 return new (GetAllocator()) HNewInstance(cls, 436 return new (GetAllocator()) HInstanceFieldSet(inst, 452 return new (GetAllocator()) HInstanceFieldGet(inst, 466 HInvokeStaticOrDirect* res = new (GetAllocator()) in MakeInvoke() 467 HInvokeStaticOrDirect(GetAllocator(), in MakeInvoke() 486 new (GetAllocator()) HPhi(GetAllocator(), kNoRegNumber, ins.size(), ins[0]->GetType()); in MakePhi() [all …]
|
H A D | graph_test.cc | 37 HBasicBlock* if_block = new (GetAllocator()) HBasicBlock(graph); in CreateIfBlock() 40 HInstruction* equal = new (GetAllocator()) HEqual(instr, instr); in CreateIfBlock() 42 instr = new (GetAllocator()) HIf(equal); in CreateIfBlock() 48 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in CreateGotoBlock() 50 HInstruction* got = new (GetAllocator()) HGoto(); in CreateGotoBlock() 62 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in CreateReturnBlock() 64 HInstruction* return_instr = new (GetAllocator()) HReturnVoid(); in CreateReturnBlock() 70 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in CreateExitBlock() 72 HInstruction* exit_instr = new (GetAllocator()) HExit(); in CreateExitBlock() 284 HInstruction* first_instruction = new (GetAllocator()) HIntConstant(4); in TEST_F() [all …]
|
H A D | code_generator_vector_arm_vixl.cc | 131 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecReduce() 160 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecCnv() 168 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNeg() 197 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecAbs() 224 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNot() 271 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecAdd() 301 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecSaturationAdd() 333 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecHalvingAdd() 373 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecSub() 403 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecSaturationSub() [all …]
|
H A D | code_generator_vector_x86.cc | 206 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecReduce() 258 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecCnv() 276 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNeg() 323 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecAbs() 364 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNot() 506 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecSaturationAdd() 538 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecHalvingAdd() 613 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecSaturationSub() 714 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecMin() 763 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecMax() [all …]
|
/aosp12/packages/apps/Test/connectivity/sl4n/facades/test/ |
H A D | test_facade.cpp | 74 doc.AddMember(sl4n::kResultStr, false, doc.GetAllocator()); in test_bool_true_return_wrapper() 78 doc.AddMember(sl4n::kErrorStr, NULL, doc.GetAllocator()); in test_bool_true_return_wrapper() 91 doc.AddMember(sl4n::kResultStr, false, doc.GetAllocator()); in test_bool_false_return_wrapper() 95 doc.AddMember(sl4n::kErrorStr, NULL, doc.GetAllocator()); in test_bool_false_return_wrapper() 112 doc.AddMember(sl4n::kErrorStr, NULL, doc.GetAllocator()); in test_null_return_wrapper() 129 tmp.SetString(result.c_str(), doc.GetAllocator()); in test_string_empty_return_wrapper() 130 doc.AddMember(sl4n::kResultStr, tmp, doc.GetAllocator()); in test_string_empty_return_wrapper() 131 doc.AddMember(sl4n::kErrorStr, NULL, doc.GetAllocator()); in test_string_empty_return_wrapper() 157 tmp.SetString(result.c_str(), doc.GetAllocator()); in test_string_max_return_wrapper() 158 doc.AddMember(sl4n::kResultStr, tmp, doc.GetAllocator()); in test_string_max_return_wrapper() [all …]
|
/aosp12/packages/apps/Test/connectivity/sl4n/facades/bluetooth/ |
H A D | bt_binder_facade.cpp | 222 tmp.SetString(name.c_str(), doc.GetAllocator()); in bt_binder_get_local_name_wrapper() 223 doc.AddMember(sl4n::kResultStr, tmp, doc.GetAllocator()); in bt_binder_get_local_name_wrapper() 224 doc.AddMember(sl4n::kErrorStr, NULL, doc.GetAllocator()); in bt_binder_get_local_name_wrapper() 239 doc.AddMember(sl4n::kErrorStr, NULL, doc.GetAllocator()); in bt_binder_init_interface_wapper() 267 doc.AddMember(sl4n::kErrorStr, NULL, doc.GetAllocator()); in bt_binder_set_local_name_wrapper() 286 tmp.SetString(address.c_str(), doc.GetAllocator()); in bt_binder_get_local_address_wrapper() 287 doc.AddMember(sl4n::kResultStr, tmp, doc.GetAllocator()); in bt_binder_get_local_address_wrapper() 288 doc.AddMember(sl4n::kErrorStr, NULL, doc.GetAllocator()); in bt_binder_get_local_address_wrapper() 306 doc.AddMember(sl4n::kErrorStr, NULL, doc.GetAllocator()); in bt_binder_enable_wrapper() 324 doc.AddMember(sl4n::kErrorStr, NULL, doc.GetAllocator()); in bt_binder_register_ble_wrapper() [all …]
|
/aosp12/packages/apps/Test/connectivity/sl4n/facades/wifi/ |
H A D | wifi_facade.cpp | 166 doc.AddMember(sl4n::kResultStr, false, doc.GetAllocator()); in wifi_init_wrapper() 167 doc.AddMember(sl4n::kErrorStr, sl4n::kFailStr, doc.GetAllocator()); in wifi_init_wrapper() 169 doc.AddMember(sl4n::kResultStr, result, doc.GetAllocator()); in wifi_init_wrapper() 170 doc.AddMember(sl4n::kErrorStr, NULL, doc.GetAllocator()); in wifi_init_wrapper() 183 doc.AddMember(sl4n::kResultStr, false, doc.GetAllocator()); in wifi_get_supported_feature_set_wrapper() 184 doc.AddMember(sl4n::kErrorStr, sl4n::kFailStr, doc.GetAllocator()); in wifi_get_supported_feature_set_wrapper() 186 doc.AddMember(sl4n::kResultStr, result, doc.GetAllocator()); in wifi_get_supported_feature_set_wrapper() 187 doc.AddMember(sl4n::kErrorStr, NULL, doc.GetAllocator()); in wifi_get_supported_feature_set_wrapper()
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
H A D | documenttest.cpp | 217 EXPECT_EQ(&d2.GetAllocator(), &a); in TEST() 226 EXPECT_NE(&d2.GetAllocator(), &a); in TEST() 362 EXPECT_EQ(&a.GetAllocator(), &allocator); in TYPED_TEST() 369 EXPECT_EQ(&a.GetAllocator(), (void*)0); in TYPED_TEST() 370 EXPECT_EQ(&b.GetAllocator(), &allocator); in TYPED_TEST() 382 EXPECT_EQ(&b.GetAllocator(), (void*)0); in TYPED_TEST() 383 EXPECT_EQ(&c.GetAllocator(), &allocator); in TYPED_TEST() 429 Reader reader(&a.GetAllocator()); 463 EXPECT_EQ(&a.GetAllocator(), (void*)0); in TYPED_TEST() 477 EXPECT_EQ(&b.GetAllocator(), (void*)0); in TYPED_TEST() [all …]
|