Home
last modified time | relevance | path

Searched refs:ValidatedCorrections (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaInternal.h103 ValidatedCorrections.push_back(TypoCorrection()); in TypoCorrectionConsumer()
116 return CorrectionResults.empty() && ValidatedCorrections.size() == 1; in empty()
151 return CurrentTCIndex < ValidatedCorrections.size() in getCurrentCorrection()
152 ? ValidatedCorrections[CurrentTCIndex] in getCurrentCorrection()
153 : ValidatedCorrections[0]; // The empty correction. in getCurrentCorrection()
183 CurrentTCIndex >= ValidatedCorrections.size(); in finished()
301 SmallVector<TypoCorrection, 4> ValidatedCorrections; variable
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaLookup.cpp4640 if (++CurrentTCIndex < ValidatedCorrections.size()) in getNextCorrection()
4641 return ValidatedCorrections[CurrentTCIndex]; in getNextCorrection()
4643 CurrentTCIndex = ValidatedCorrections.size(); in getNextCorrection()
4660 ValidatedCorrections.push_back(TC); in getNextCorrection()
4661 return ValidatedCorrections[CurrentTCIndex]; in getNextCorrection()
4664 return ValidatedCorrections[0]; // The empty correction. in getNextCorrection()