Home
last modified time | relevance | path

Searched refs:loopNestingLevel (Results 1 – 7 of 7) sorted by relevance

/third_party/glslang/glslang/HLSL/
DhlslParseHelper.h168 void nestLooping() { ++loopNestingLevel; } in nestLooping()
169 void unnestLooping() { --loopNestingLevel; } in unnestLooping()
DhlslGrammar.cpp4174 if (parseContext.loopNestingLevel == 0) { in acceptJumpStatement()
4181 if (parseContext.loopNestingLevel == 0 && parseContext.switchSequenceStack.size() == 0) { in acceptJumpStatement()
DhlslParseHelper.cpp1741 loopNestingLevel = 0; in handleFunctionDefinition()
/third_party/glslang/glslang/MachineIndependent/
DParseHelper.h86 …statementNestingLevel(0), loopNestingLevel(0), structNestingLevel(0), blockNestingLevel(0), contro… in TParseVersions()
185 int loopNestingLevel; // 0 if outside all loops variable
Dglslang.y3957 ++parseContext.loopNestingLevel;
3964 --parseContext.loopNestingLevel;
3970 ++parseContext.loopNestingLevel;
3982 --parseContext.loopNestingLevel;
3988 ++parseContext.loopNestingLevel;
4000 --parseContext.loopNestingLevel;
4037 if (parseContext.loopNestingLevel <= 0)
4042 if (parseContext.loopNestingLevel + parseContext.switchSequenceStack.size() <= 0)
Dglslang_tab.cpp11568 ++parseContext.loopNestingLevel; in yyparse()
11580 --parseContext.loopNestingLevel; in yyparse()
11591 ++parseContext.loopNestingLevel; in yyparse()
11608 --parseContext.loopNestingLevel; in yyparse()
11619 ++parseContext.loopNestingLevel; in yyparse()
11636 --parseContext.loopNestingLevel; in yyparse()
11696 if (parseContext.loopNestingLevel <= 0) in yyparse()
11706 if (parseContext.loopNestingLevel + parseContext.switchSequenceStack.size() <= 0) in yyparse()
DParseHelper.cpp1294 loopNestingLevel = 0; in handleFunctionDefinition()