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

References

tools/clang/include/clang/Sema/TypoCorrection.h
   65       CorrectionDecls.push_back(NameDecl);
   73       CorrectionDecls.push_back(Name);
  147     return hasCorrectionDecl() ? *(CorrectionDecls.begin()) : nullptr;
  162     CorrectionDecls.clear();
  167     CorrectionDecls.clear();
  173     CorrectionDecls.clear();
  174     CorrectionDecls.insert(CorrectionDecls.begin(), Decls.begin(), Decls.end());
  174     CorrectionDecls.insert(CorrectionDecls.begin(), Decls.begin(), Decls.end());
  195     CorrectionDecls.clear();
  196     CorrectionDecls.push_back(nullptr);
  203     return !CorrectionDecls.empty() && CorrectionDecls.front() == nullptr;
  203     return !CorrectionDecls.empty() && CorrectionDecls.front() == nullptr;
  213   bool isResolved() const { return !CorrectionDecls.empty(); }
  216     return CorrectionDecls.size() > 1;
  233     return isKeyword() ? CorrectionDecls.end() : CorrectionDecls.begin();
  233     return isKeyword() ? CorrectionDecls.end() : CorrectionDecls.begin();
  236   decl_iterator end() { return CorrectionDecls.end(); }
  241     return isKeyword() ? CorrectionDecls.end() : CorrectionDecls.begin();
  241     return isKeyword() ? CorrectionDecls.end() : CorrectionDecls.begin();
  244   const_decl_iterator end() const { return CorrectionDecls.end(); }
  262     return (!isKeyword() && !CorrectionDecls.empty());
tools/clang/lib/Sema/SemaLookup.cpp
 5145     CorrectionDecls.clear();
 5147   CorrectionDecls.push_back(CDecl);