Home | History | Annotate | Download | only in Sema

Lines Matching refs:CorrectionDecls

47       CorrectionDecls.push_back(NameDecl);
55 CorrectionDecls.push_back(Name);
119 return hasCorrectionDecl() ? *(CorrectionDecls.begin()) : 0;
128 CorrectionDecls.clear();
149 CorrectionDecls.clear();
150 CorrectionDecls.push_back(0);
154 // item in CorrectionDecls is NULL.
156 return !CorrectionDecls.empty() &&
157 CorrectionDecls.front() == 0;
167 bool isResolved() const { return !CorrectionDecls.empty(); }
170 return CorrectionDecls.size() > 1;
175 return isKeyword() ? CorrectionDecls.end() : CorrectionDecls.begin();
177 decl_iterator end() { return CorrectionDecls.end(); }
180 return isKeyword() ? CorrectionDecls.end() : CorrectionDecls.begin();
182 const_decl_iterator end() const { return CorrectionDecls.end(); }
186 return (!isKeyword() && !CorrectionDecls.empty());
192 llvm::SmallVector<NamedDecl*, 1> CorrectionDecls;