Home
last modified time | relevance | path

Searched refs:lst (Results 1 – 8 of 8) sorted by relevance

/art/compiler/optimizing/
Dreference_type_propagation_test.cc113 void MutateList(std::vector<HInstruction*>& lst, ShuffleOrder type);
442 void ParamReferenceTypePropagationTest<Param>::MutateList(std::vector<HInstruction*>& lst, in MutateList() argument
444 DCHECK(std::none_of(lst.begin(), lst.end(), [](auto* i) { return i == nullptr; })); in MutateList()
452 std::reverse(lst.begin(), lst.end()); in MutateList()
456 std::swap(lst.front(), lst.back()); in MutateList()
461 std::shuffle(lst.begin(), lst.end(), g); in MutateList()
472 RunVisitListTest([&](std::vector<HInstruction*>& lst, HInstruction* null_input) { in TEST_P() argument
488 HPhi* nulled_phi = lo.null_insertion_ >= 0 ? lst[lo.null_insertion_]->AsPhi() : nullptr; in TEST_P()
492 MutateList(lst, lo.shuffle_); in TEST_P()
493 std::for_each(lst.begin(), lst.end(), [&](HInstruction* ins) { in TEST_P()
[all …]
Dnodes.cc1987 std::ostream& operator<<(std::ostream& os, const HUseList<HInstruction*>& lst) { in operator <<() argument
1990 for (const auto& hi : lst) { in operator <<()
2002 std::ostream& operator<<(std::ostream& os, const HUseList<HEnvironment*>& lst) { in operator <<() argument
2005 for (const auto& hi : lst) { in operator <<()
Dnodes.h2780 std::ostream& operator<<(std::ostream& os, const HUseList<HInstruction*>& lst);
2781 std::ostream& operator<<(std::ostream& os, const HUseList<HEnvironment*>& lst);
/art/test/988-method-trace/
Dgen_srcs.py122 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/
Dbisect_profile.py46 lst = getattr(namespace, self.dest)
47 if lst is None:
49 lst = getattr(namespace, self.dest)
53 lst.append(ApkEntry(*values))
Dcompile-jar.py28 def run_print(lst): argument
29 return " ".join(map(shlex.quote, lst))
/art/test/dexdump/
Drun-all-tests47 SUFFIX_COMMAND_MAP[lst]="${DEXLIST}"
/art/cmdline/
Dcmdline_parser.h768 for (auto [cat, lst] : args) { in DumpHelp()