Home
last modified time | relevance | path

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

/external/clang/include/clang/Sema/
DSemaInternal.h124 ValidatedCorrections.push_back(TypoCorrection()); in TypoCorrectionConsumer()
137 return CorrectionResults.empty() && ValidatedCorrections.size() == 1; in empty()
172 return CurrentTCIndex < ValidatedCorrections.size() in getCurrentCorrection()
173 ? ValidatedCorrections[CurrentTCIndex] in getCurrentCorrection()
174 : ValidatedCorrections[0]; // The empty correction. in getCurrentCorrection()
199 CurrentTCIndex >= ValidatedCorrections.size(); in finished()
314 SmallVector<TypoCorrection, 4> ValidatedCorrections; variable
/external/clang/lib/Sema/
DSemaLookup.cpp3901 if (++CurrentTCIndex < ValidatedCorrections.size()) in getNextCorrection()
3902 return ValidatedCorrections[CurrentTCIndex]; in getNextCorrection()
3904 CurrentTCIndex = ValidatedCorrections.size(); in getNextCorrection()
3921 ValidatedCorrections.push_back(TC); in getNextCorrection()
3922 return ValidatedCorrections[CurrentTCIndex]; in getNextCorrection()
3925 return ValidatedCorrections[0]; // The empty correction. in getNextCorrection()