Lines Matching defs:FD
112 const FieldDecl *FD,
196 bool containsFieldDecl(const FieldDecl *FD) const {
197 return FieldInfo.count(FD) != 0;
201 /// field FD.
202 unsigned getLLVMFieldNo(const FieldDecl *FD) const {
203 FD = FD->getCanonicalDecl();
204 assert(FieldInfo.count(FD) && "Invalid field for record!");
205 return FieldInfo.lookup(FD);
226 /// Return the BitFieldInfo that corresponds to the field FD.
227 const CGBitFieldInfo &getBitFieldInfo(const FieldDecl *FD) const {
228 FD = FD->getCanonicalDecl();
229 assert(FD->isBitField() && "Invalid call for non-bit-field decl!");
231 it = BitFields.find(FD);