Home | History | Annotate | Download | only in IR

Lines Matching refs:AttrList

161   SmallVector<Attribute, 4> AttrList;
164 : AttrList(Attrs.begin(), Attrs.end()) {}
174 bool hasAttributes() const { return !AttrList.empty(); }
186 iterator begin() { return AttrList.begin(); }
187 iterator end() { return AttrList.end(); }
189 const_iterator begin() const { return AttrList.begin(); }
190 const_iterator end() const { return AttrList.end(); }
193 Profile(ID, AttrList);
195 static void Profile(FoldingSetNodeID &ID, ArrayRef<Attribute> AttrList) {
196 for (unsigned I = 0, E = AttrList.size(); I != E; ++I)
197 AttrList[I].Profile(ID);