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

References

tools/clang/include/clang/Sema/Lookup.h
  186         Paths(std::move(Other.Paths)),
  199     Other.Paths = nullptr;
  207     Paths = std::move(Other.Paths);
  207     Paths = std::move(Other.Paths);
  222     Other.Paths = nullptr;
  229     if (Paths) deletePaths(Paths);
  229     if (Paths) deletePaths(Paths);
  344     return Paths;
  479       if (Paths) {
  480         deletePaths(Paths);
  481         Paths = nullptr;
  499       } else if (Paths) {
  500         deletePaths(Paths);
  501         Paths = nullptr;
  557     if (Paths) deletePaths(Paths);
  557     if (Paths) deletePaths(Paths);
  558     Paths = nullptr;
tools/clang/lib/Sema/SemaLookup.cpp
  337   assert((Paths != nullptr) == (ResultKind == Ambiguous &&
  643   Paths = new CXXBasePaths;
  644   Paths->swap(P);
  645   addDeclsFromBasePaths(*Paths);
  651   Paths = new CXXBasePaths;
  652   Paths->swap(P);
  653   addDeclsFromBasePaths(*Paths);
  661   if (Paths) Out << ", base paths present";