HomeSort by relevance Sort by last modified time
    Searched refs:LastFD (Results 1 - 7 of 7) sorted by null

  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 760 const FieldDecl *LastFD = 0;
768 if (Types.getContext().ZeroBitfieldFollowsNonBitfield(FD, LastFD)) {
772 LastFD = FD;
    [all...]
CGExprConstant.cpp 346 const FieldDecl *LastFD = 0;
354 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((*Field), LastFD)) {
358 LastFD = (*Field);
367 LastFD = (*Field);
    [all...]
CGDebugInfo.cpp 675 const FieldDecl *LastFD = 0;
685 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((field), LastFD)) {
689 LastFD = field;
697 LastFD = field;
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp     [all...]
ASTContext.cpp 615 const FieldDecl *LastFD) const {
616 return (FD->isBitField() && LastFD && !LastFD->isBitField() &&
621 const FieldDecl *LastFD) const {
622 return (FD->isBitField() && LastFD && LastFD->isBitField() &&
624 LastFD->getBitWidthValue(*this) != 0);
628 const FieldDecl *LastFD) const {
629 return (FD->isBitField() && LastFD && LastFD->isBitField() &
    [all...]
Decl.cpp     [all...]
  /external/clang/include/clang/AST/
ASTContext.h 442 /// bitfield which follows the non-bitfield 'LastFD'.
444 const FieldDecl *LastFD) const;
447 /// bitfield which follows the bitfield 'LastFD'.
449 const FieldDecl *LastFD) const;
452 /// bitfield which follows the bitfield 'LastFD'.
454 const FieldDecl *LastFD) const;
457 /// bitfield which follows the bitfield 'LastFD'.
459 const FieldDecl *LastFD) const;
462 /// bitfield which follows the none bitfield 'LastFD'.
464 const FieldDecl *LastFD) const
    [all...]

Completed in 521 milliseconds