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

References

tools/clang/include/clang/Sema/SemaInternal.h
  107     ValidatedCorrections.push_back(TypoCorrection());
  120     return CorrectionResults.empty() && ValidatedCorrections.size() == 1;
  155     return CurrentTCIndex < ValidatedCorrections.size()
  156                ? ValidatedCorrections[CurrentTCIndex]
  157                : ValidatedCorrections[0];  // The empty correction.
  182            CurrentTCIndex >= ValidatedCorrections.size();
tools/clang/lib/Sema/SemaLookup.cpp
 4318   if (++CurrentTCIndex < ValidatedCorrections.size())
 4319     return ValidatedCorrections[CurrentTCIndex];
 4321   CurrentTCIndex = ValidatedCorrections.size();
 4338       ValidatedCorrections.push_back(TC);
 4339       return ValidatedCorrections[CurrentTCIndex];
 4342   return ValidatedCorrections[0];  // The empty correction.