Home
last modified time | relevance | path

Searched refs:PSK_Pop (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/Sema/
DSemaAttr.cpp43 S.VtorDispStack.SentinelAction(PSK_Pop, SlotLabel); in ~PragmaStackSentinelRAII()
44 S.DataSegStack.SentinelAction(PSK_Pop, SlotLabel); in ~PragmaStackSentinelRAII()
45 S.BSSSegStack.SentinelAction(PSK_Pop, SlotLabel); in ~PragmaStackSentinelRAII()
46 S.ConstSegStack.SentinelAction(PSK_Pop, SlotLabel); in ~PragmaStackSentinelRAII()
47 S.CodeSegStack.SentinelAction(PSK_Pop, SlotLabel); in ~PragmaStackSentinelRAII()
113 Action = Sema::PSK_Pop; in ActOnPragmaOptionsAlign()
165 if (Action & Sema::PSK_Pop) { in ActOnPragmaPack()
205 if (Action & PSK_Pop && VtorDispStack.Stack.empty()) in ActOnPragmaMSVtorDisp()
222 else if (Action & PSK_Pop) { in Act()
306 if (Action & PSK_Pop && Stack->Stack.empty()) in ActOnPragmaMSSeg()
/external/clang/lib/Parse/
DParsePragma.cpp641 Action = Sema::PSK_Pop; in HandlePragmaMSSegment()
1003 Action = Sema::PSK_Pop; in HandlePragma()
1045 Action = Sema::PSK_Pop; in HandlePragma()
1638 Action = Sema::PSK_Pop; in HandlePragma()
/external/clang/include/clang/Sema/
DSema.h336 PSK_Pop = 0x4, // #pragma (pop[, id]) enumerator
339 PSK_Pop_Set = PSK_Pop | PSK_Set, // #pragma (pop[, id], value)
374 assert((Action == PSK_Push || Action == PSK_Pop) && in SentinelAction()