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.
195 // pack(0) is like pack(), which just works out since that is what
215 case Sema::PPK_Default: // pack([n])
219 case Sema::PPK_Show: // pack(show)
232 case Sema::PPK_Push: // pack(push [, id] [, [n])
239 case Sema::PPK_Pop: // pack(pop [, id] [, n])
240 // MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
241 // "#pragma pack(pop, identifier, n) is undefined"