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);
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 …]
Dnodes.cc1933 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 <<()
Dnodes.h2855 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/
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()