Home | History | Annotate | Download | only in Sema

Lines Matching refs:Decls

32 /// IdentifierResolver - Keeps track of shadowed decls on enclosing
37 /// IdDeclInfo - Keeps track of information about decls associated
45 inline DeclsTy::iterator decls_begin() { return Decls.begin(); }
46 inline DeclsTy::iterator decls_end() { return Decls.end(); }
48 void AddDecl(NamedDecl *D) { Decls.push_back(D); }
61 Decls.insert(Pos, D);
65 DeclsTy Decls;
70 /// iterator - Iterate over the decls of a specified declaration name.
83 /// 2) A IdDeclInfo::DeclsTy::iterator that traverses only the decls of the
85 /// 3) A IdDeclInfo::DeclsTy::iterator that traverses the decls of parent
146 /// begin - Returns an iterator for decls with the name 'Name'.