Searched refs:changeset_ty (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/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;
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | DeltaAlgorithm.cpp | 16 bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) { in GetTestResult() 27 void DeltaAlgorithm::Split(const changeset_ty &S, changesetlist_ty &Res) { in Split() 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() 67 bool DeltaAlgorithm::Search(const changeset_ty &Changes, in Search() 69 changeset_ty &Res) { in Search() [all …]
|
| H A D | DAGDeltaAlgorithm.cpp | 52 typedef DAGDeltaAlgorithm::changeset_ty changeset_ty; typedef in __anoncf29fe990111::DAGDeltaAlgorithmImpl 70 mutable std::set<changeset_ty> FailedTestsCache; 116 void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() 118 const changeset_ty &Required) { in UpdatedSearchState() 123 bool ExecuteOneTest(const changeset_ty &S) { in ExecuteOneTest() 126 for (changeset_ty::const_iterator it = S.begin(), ie = S.end(); it != ie; in ExecuteOneTest() 137 DAGDeltaAlgorithmImpl(DAGDeltaAlgorithm &DDA, const changeset_ty &Changes, 140 changeset_ty Run(); 150 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required); 157 const changeset_ty &Required; [all …]
|