Home
last modified time | relevance | path

Searched refs:changeset_ty (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDeltaAlgorithm.h40 using changeset_ty = std::set<change_ty>; variable
41 using changesetlist_ty = std::vector<changeset_ty>;
46 std::set<changeset_ty> FailedTestsCache;
53 bool GetTestResult(const changeset_ty &Changes);
56 void Split(const changeset_ty &S, changesetlist_ty &Res);
60 changeset_ty Delta(const changeset_ty &Changes,
69 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets,
70 changeset_ty &Res);
74 virtual void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState()
78 virtual bool ExecuteOneTest(const changeset_ty &S) = 0;
[all …]
H A DDAGDeltaAlgorithm.h47 using changeset_ty = std::set<change_ty>; variable
48 using changesetlist_ty = std::vector<changeset_ty>;
65 changeset_ty Run(const changeset_ty &Changes,
69 virtual void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState()
71 const changeset_ty &Required) {} in UpdatedSearchState()
74 virtual bool ExecuteOneTest(const changeset_ty &S) = 0;
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDeltaAlgorithm.cpp16 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 DDAGDeltaAlgorithm.cpp51 typedef DAGDeltaAlgorithm::changeset_ty changeset_ty; typedef in __anoncf29fe990111::DAGDeltaAlgorithmImpl
69 mutable std::set<changeset_ty> FailedTestsCache;
115 void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState()
117 const changeset_ty &Required) { in UpdatedSearchState()
122 bool ExecuteOneTest(const changeset_ty &S) { in ExecuteOneTest()
125 for (changeset_ty::const_iterator it = S.begin(), ie = S.end(); it != ie; in ExecuteOneTest()
136 DAGDeltaAlgorithmImpl(DAGDeltaAlgorithm &DDA, const changeset_ty &Changes,
139 changeset_ty Run();
149 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required);
156 const changeset_ty &Required;
[all …]