Searched refs:changeset_ty (Results 1 – 6 of 6) sorted by relevance
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | DeltaAlgorithm.h | 39 using changeset_ty = std::set<change_ty>; variable 40 using changesetlist_ty = std::vector<changeset_ty>; 45 std::set<changeset_ty> FailedTestsCache; 52 bool GetTestResult(const changeset_ty &Changes); 55 void Split(const changeset_ty &S, changesetlist_ty &Res); 59 changeset_ty Delta(const changeset_ty &Changes, 68 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets, 69 changeset_ty &Res); 73 virtual void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() 77 virtual bool ExecuteOneTest(const changeset_ty &S) = 0; [all …]
|
| H A D | DAGDeltaAlgorithm.h | 46 using changeset_ty = std::set<change_ty>; variable 47 using changesetlist_ty = std::vector<changeset_ty>; 64 changeset_ty Run(const changeset_ty &Changes, 68 virtual void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() 70 const changeset_ty &Required) {} in UpdatedSearchState() 73 virtual bool ExecuteOneTest(const changeset_ty &S) = 0;
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | DeltaAlgorithm.cpp | 31 changeset_ty LHS, RHS; in Split() 33 for (changeset_ty::const_iterator it = S.begin(), in Split() 42 DeltaAlgorithm::changeset_ty 43 DeltaAlgorithm::Delta(const changeset_ty &Changes, in Delta() 53 changeset_ty Res; in Delta() 59 for (const changeset_ty &Set : Sets) in Delta() 69 changeset_ty &Res) { in Search() 85 changeset_ty Complement; in Search() 102 DeltaAlgorithm::changeset_ty DeltaAlgorithm::Run(const changeset_ty &Changes) { in Run() 104 if (GetTestResult(changeset_ty())) in Run() [all …]
|
| H A D | DAGDeltaAlgorithm.cpp | 52 typedef DAGDeltaAlgorithm::changeset_ty changeset_ty; typedef in __anona2548bc90111::DAGDeltaAlgorithmImpl 70 mutable std::set<changeset_ty> FailedTestsCache; 123 bool ExecuteOneTest(const changeset_ty &S) { in ExecuteOneTest() 140 changeset_ty Run(); 150 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required); 157 const changeset_ty &Required; 172 const changeset_ty &Required) in DeltaActiveSetHelper() 285 changeset_ty Extended(Required); in GetTestResult() 300 DAGDeltaAlgorithm::changeset_ty 306 changeset_ty Required; in Run() [all …]
|
| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | DeltaAlgorithmTest.cpp | 35 changeset_ty FailingSet; 39 bool ExecuteOneTest(const changeset_ty &Changes) override { in ExecuteOneTest() 46 FixedDeltaAlgorithm(const changeset_ty &_FailingSet) in FixedDeltaAlgorithm()
|
| H A D | DAGDeltaAlgorithmTest.cpp | 20 changeset_ty FailingSet; 24 bool ExecuteOneTest(const changeset_ty &Changes) override { in ExecuteOneTest() 31 FixedDAGDeltaAlgorithm(const changeset_ty &_FailingSet) in FixedDAGDeltaAlgorithm()
|