Home
last modified time | relevance | path

Searched refs:SwitchStack (Results 1 – 10 of 10) sorted by relevance

/external/clang/lib/Sema/
DSemaStmtAttr.cpp40 if (S.getCurFunction()->SwitchStack.empty()) { in handleFallThroughAttr()
DScopeInfo.cpp30 SwitchStack.clear(); in Clear()
DSemaStmt.cpp346 if (getCurFunction()->SwitchStack.empty()) { in ActOnCaseStmt()
376 getCurFunction()->SwitchStack.back()->addSwitchCase(CS); in ActOnCaseStmt()
393 if (getCurFunction()->SwitchStack.empty()) { in ActOnDefaultStmt()
399 getCurFunction()->SwitchStack.back()->addSwitchCase(DS); in ActOnDefaultStmt()
654 getCurFunction()->SwitchStack.push_back(SS); in ActOnStartOfSwitchStmt()
670 assert(SS == getCurFunction()->SwitchStack.back() && in ActOnFinishSwitchStmt()
674 getCurFunction()->SwitchStack.pop_back(); in ActOnFinishSwitchStmt()
DSemaCodeComplete.cpp1707 if (!SemaRef.getCurFunction()->SwitchStack.empty()) { in AddOrdinaryNameResults()
3740 if (getCurFunction()->SwitchStack.empty() || !CodeCompleter) in CodeCompleteCase()
3743 SwitchStmt *Switch = getCurFunction()->SwitchStack.back(); in CodeCompleteCase()
DSemaLookup.cpp3792 if (!SemaRef.getCurFunction()->SwitchStack.empty()) { in AddKeywordsToConsumer()
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_exec.h314 struct tgsi_switch_record SwitchStack[TGSI_EXEC_MAX_SWITCH_NESTING]; member
Dtgsi_exec.c3059 mach->SwitchStack[mach->SwitchStackTop++] = mach->Switch; in exec_switch()
3074 uint prevMask = mach->SwitchStack[mach->SwitchStackTop - 1].mask; in exec_case()
3103 uint prevMask = mach->SwitchStack[mach->SwitchStackTop - 1].mask; in exec_default()
3113 mach->Switch = mach->SwitchStack[--mach->SwitchStackTop]; in exec_endswitch()
3754 mach->SwitchStack[mach->SwitchStackTop++] = mach->Switch; in exec_instruction()
3791 mach->Switch = mach->SwitchStack[mach->SwitchStackTop]; in exec_instruction()
4018 mach->Switch = mach->SwitchStack[mach->SwitchStackTop]; in exec_instruction()
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
Dtgsi_exec.h314 struct tgsi_switch_record SwitchStack[TGSI_EXEC_MAX_SWITCH_NESTING]; member
Dtgsi_exec.c3059 mach->SwitchStack[mach->SwitchStackTop++] = mach->Switch; in exec_switch()
3074 uint prevMask = mach->SwitchStack[mach->SwitchStackTop - 1].mask; in exec_case()
3103 uint prevMask = mach->SwitchStack[mach->SwitchStackTop - 1].mask; in exec_default()
3113 mach->Switch = mach->SwitchStack[--mach->SwitchStackTop]; in exec_endswitch()
3754 mach->SwitchStack[mach->SwitchStackTop++] = mach->Switch; in exec_instruction()
3791 mach->Switch = mach->SwitchStack[mach->SwitchStackTop]; in exec_instruction()
4018 mach->Switch = mach->SwitchStack[mach->SwitchStackTop]; in exec_instruction()
/external/clang/include/clang/Sema/
DScopeInfo.h112 SmallVector<SwitchStmt*, 8> SwitchStack; variable