Searched refs:changeset_ty (Results 1 – 6 of 6) sorted by relevance
/external/llvm/include/llvm/ADT/ |
D | DeltaAlgorithm.h | 40 typedef std::set<change_ty> changeset_ty; typedef 41 typedef std::vector<changeset_ty> changesetlist_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 …]
|
D | DAGDeltaAlgorithm.h | 45 typedef std::set<change_ty> changeset_ty; typedef 46 typedef std::vector<changeset_ty> changesetlist_ty; 62 changeset_ty Run(const changeset_ty &Changes, 66 virtual void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() 68 const changeset_ty &Required) {} in UpdatedSearchState() 71 virtual bool ExecuteOneTest(const changeset_ty &S) = 0;
|
/external/llvm/lib/Support/ |
D | DAGDeltaAlgorithm.cpp | 52 typedef DAGDeltaAlgorithm::changeset_ty changeset_ty; typedef in __anon099b60bf0111::DAGDeltaAlgorithmImpl 64 const changeset_ty &Changes; 73 mutable std::set<changeset_ty> FailedTestsCache; 119 void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() 121 const changeset_ty &Required) { in UpdatedSearchState() 126 bool ExecuteOneTest(const changeset_ty &S) { in ExecuteOneTest() 129 for (changeset_ty::const_iterator it = S.begin(), in ExecuteOneTest() 141 const changeset_ty &_Changes, 144 changeset_ty Run(); 154 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required); [all …]
|
D | DeltaAlgorithm.cpp | 17 bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) { in GetTestResult() 28 void DeltaAlgorithm::Split(const changeset_ty &S, changesetlist_ty &Res) { in Split() 32 changeset_ty LHS, RHS; in Split() 34 for (changeset_ty::const_iterator it = S.begin(), in Split() 43 DeltaAlgorithm::changeset_ty 44 DeltaAlgorithm::Delta(const changeset_ty &Changes, in Delta() 54 changeset_ty Res; in Delta() 69 bool DeltaAlgorithm::Search(const changeset_ty &Changes, in Search() 71 changeset_ty &Res) { in Search() 87 changeset_ty Complement; in Search() [all …]
|
/external/llvm/unittests/ADT/ |
D | DeltaAlgorithmTest.cpp | 36 changeset_ty FailingSet; 40 virtual bool ExecuteOneTest(const changeset_ty &Changes) { in ExecuteOneTest() 47 FixedDeltaAlgorithm(const changeset_ty &_FailingSet) in FixedDeltaAlgorithm()
|
D | DAGDeltaAlgorithmTest.cpp | 21 changeset_ty FailingSet; 25 virtual bool ExecuteOneTest(const changeset_ty &Changes) { in ExecuteOneTest() 32 FixedDAGDeltaAlgorithm(const changeset_ty &_FailingSet) in FixedDAGDeltaAlgorithm()
|