Home | History | Annotate | Download | only in Sema

Lines Matching full:pack

25 // Pragma 'pack' and 'options align'
39 /// pack.
46 /// Stack - Entries in the #pragma pack stack, consisting of saved
116 // If there is no pack context, we don't need any attributes.
200 // pack(0) is like pack(), which just works out since that is what
220 case Sema::PPK_Default: // pack([n])
224 case Sema::PPK_Show: // pack(show)
237 case Sema::PPK_Push: // pack(push [, id] [, [n])
244 case Sema::PPK_Pop: // pack(pop [, id] [, n])
245 // MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
246 // "#pragma pack(pop, identifier, n) is undefined"
256 << "pack" << (Name ? "no record matching name" : "stack empty");