Home | History | Annotate | Download | only in IR

Lines Matching refs:Slot

723   // Now add the attribute into the correct slot. There may already be an
776 // Now remove the attribute from the correct slot. There may already be an
898 AttributeSet::iterator AttributeSet::begin(unsigned Slot) const {
901 return pImpl->begin(Slot);
904 AttributeSet::iterator AttributeSet::end(unsigned Slot) const {
907 return pImpl->end(Slot);
921 unsigned AttributeSet::getSlotIndex(unsigned Slot) const {
922 assert(pImpl && Slot < pImpl->getNumAttributes() &&
923 "Slot # out of range!");
924 return pImpl->getSlotIndex(Slot);
927 AttributeSet AttributeSet::getSlotAttributes(unsigned Slot) const {
928 assert(pImpl && Slot < pImpl->getNumAttributes() &&
929 "Slot # out of range!");
930 return pImpl->getSlotAttributes(Slot);
1021 unsigned Slot = ~0U;
1024 Slot = I;
1028 assert(Slot != ~0U && "Couldn't find index in AttributeSet!");
1030 for (AttributeSet::iterator I = A.begin(Slot), E = A.end(Slot); I != E; ++I) {
1108 unsigned Slot = ~0U;
1111 Slot = I;
1115 assert(Slot != ~0U && "Couldn't find the index!");
1117 for (AttributeSet::iterator I = A.begin(Slot), E = A.end(Slot);