Searched refs:lst (Results 1 – 8 of 8) sorted by relevance
/art/compiler/optimizing/ |
D | reference_type_propagation_test.cc | 113 void MutateList(std::vector<HInstruction*>& lst, ShuffleOrder type); 440 void ParamReferenceTypePropagationTest<Param>::MutateList(std::vector<HInstruction*>& lst, in MutateList() argument 442 DCHECK(std::none_of(lst.begin(), lst.end(), [](auto* i) { return i == nullptr; })); in MutateList() 450 std::reverse(lst.begin(), lst.end()); in MutateList() 454 std::swap(lst.front(), lst.back()); in MutateList() 459 std::shuffle(lst.begin(), lst.end(), g); in MutateList() 470 RunVisitListTest([&](std::vector<HInstruction*>& lst, HInstruction* null_input) { in TEST_P() argument 486 HPhi* nulled_phi = lo.null_insertion_ >= 0 ? lst[lo.null_insertion_]->AsPhi() : nullptr; in TEST_P() 490 MutateList(lst, lo.shuffle_); in TEST_P() 491 std::for_each(lst.begin(), lst.end(), [&](HInstruction* ins) { in TEST_P() [all …]
|
D | nodes.cc | 1933 std::ostream& operator<<(std::ostream& os, const HUseList<HInstruction*>& lst) { in operator <<() argument 1936 for (const auto& hi : lst) { in operator <<() 1948 std::ostream& operator<<(std::ostream& os, const HUseList<HEnvironment*>& lst) { in operator <<() argument 1951 for (const auto& hi : lst) { in operator <<()
|
D | nodes.h | 2855 std::ostream& operator<<(std::ostream& os, const HUseList<HInstruction*>& lst); 2856 std::ostream& operator<<(std::ostream& os, const HUseList<HEnvironment*>& lst);
|
/art/test/988-method-trace/ |
D | gen_srcs.py | 122 lst = [] 131 lst.append(obj) 137 lst.append(obj) 147 lst.append(x) 149 return lst 277 def indent_list(lst, indent): argument 278 return [' ' * indent + i for i in lst]
|
/art/tools/ |
D | bisect_profile.py | 46 lst = getattr(namespace, self.dest) 47 if lst is None: 49 lst = getattr(namespace, self.dest) 53 lst.append(ApkEntry(*values))
|
D | compile-jar.py | 28 def run_print(lst): argument 29 return " ".join(map(shlex.quote, lst))
|
/art/test/dexdump/ |
D | run-all-tests | 47 SUFFIX_COMMAND_MAP[lst]="${DEXLIST}"
|
/art/cmdline/ |
D | cmdline_parser.h | 768 for (auto [cat, lst] : args) { in DumpHelp()
|