Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
DSemaInternal.h107 ValidatedCorrections.push_back(TypoCorrection()); in TypoCorrectionConsumer()
120 return CorrectionResults.empty() && ValidatedCorrections.size() == 1; in empty()
155 return CurrentTCIndex < ValidatedCorrections.size() in getCurrentCorrection()
156 ? ValidatedCorrections[CurrentTCIndex] in getCurrentCorrection()
157 : ValidatedCorrections[0]; // The empty correction. in getCurrentCorrection()
187 CurrentTCIndex >= ValidatedCorrections.size(); in finished()
305 SmallVector<TypoCorrection, 4> ValidatedCorrections; variable
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaLookup.cpp4361 if (++CurrentTCIndex < ValidatedCorrections.size()) in getNextCorrection()
4362 return ValidatedCorrections[CurrentTCIndex]; in getNextCorrection()
4364 CurrentTCIndex = ValidatedCorrections.size(); in getNextCorrection()
4381 ValidatedCorrections.push_back(TC); in getNextCorrection()
4382 return ValidatedCorrections[CurrentTCIndex]; in getNextCorrection()
4385 return ValidatedCorrections[0]; // The empty correction. in getNextCorrection()