Home
last modified time | relevance | path

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

/external/clang/include/clang/Sema/
DSemaInternal.h125 ValidatedCorrections.push_back(TypoCorrection()); in TypoCorrectionConsumer()
138 return CorrectionResults.empty() && ValidatedCorrections.size() == 1; in empty()
173 return CurrentTCIndex < ValidatedCorrections.size() in getCurrentCorrection()
174 ? ValidatedCorrections[CurrentTCIndex] in getCurrentCorrection()
175 : ValidatedCorrections[0]; // The empty correction. in getCurrentCorrection()
200 CurrentTCIndex >= ValidatedCorrections.size(); in finished()
318 SmallVector<TypoCorrection, 4> ValidatedCorrections; variable
/external/clang/lib/Sema/
DSemaLookup.cpp3987 if (++CurrentTCIndex < ValidatedCorrections.size()) in getNextCorrection()
3988 return ValidatedCorrections[CurrentTCIndex]; in getNextCorrection()
3990 CurrentTCIndex = ValidatedCorrections.size(); in getNextCorrection()
4007 ValidatedCorrections.push_back(TC); in getNextCorrection()
4008 return ValidatedCorrections[CurrentTCIndex]; in getNextCorrection()
4011 return ValidatedCorrections[0]; // The empty correction. in getNextCorrection()