reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/DeltaAlgorithm.h
   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,
   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,
   77   virtual bool ExecuteOneTest(const changeset_ty &S) = 0;
   87   changeset_ty Run(const changeset_ty &Changes);
   87   changeset_ty Run(const changeset_ty &Changes);
lib/Support/DAGDeltaAlgorithm.cpp
  158   const changeset_ty &Required;
  162   void UpdatedSearchState(const changeset_ty &Changes,
  167   bool ExecuteOneTest(const changeset_ty &S) override {
  173                        const changeset_ty &Required)
lib/Support/DeltaAlgorithm.cpp
   17 bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) {
   28 void DeltaAlgorithm::Split(const changeset_ty &S, changesetlist_ty &Res) {
   32   changeset_ty LHS, RHS;
   34   for (changeset_ty::const_iterator it = S.begin(),
   43 DeltaAlgorithm::changeset_ty
   44 DeltaAlgorithm::Delta(const changeset_ty &Changes,
   54   changeset_ty Res;
   69 bool DeltaAlgorithm::Search(const changeset_ty &Changes,
   71                             changeset_ty &Res) {
   87       changeset_ty Complement;
  104 DeltaAlgorithm::changeset_ty DeltaAlgorithm::Run(const changeset_ty &Changes) {
  104 DeltaAlgorithm::changeset_ty DeltaAlgorithm::Run(const changeset_ty &Changes) {
unittests/ADT/DeltaAlgorithmTest.cpp
   35   changeset_ty FailingSet;
   39   bool ExecuteOneTest(const changeset_ty &Changes) override {
   46   FixedDeltaAlgorithm(const changeset_ty &_FailingSet)