Searched refs:TIntermSwitch (Results 1 – 15 of 15) sorted by relevance
/external/swiftshader/src/OpenGL/compiler/ |
D | intermediate.h | 255 class TIntermSwitch; variable 286 virtual TIntermSwitch *getAsSwitchNode() { return 0; } in getAsSwitchNode() 637 class TIntermSwitch : public TIntermNode 640 TIntermSwitch(TIntermTyped *init, TIntermAggregate *statementList) in TIntermSwitch() function 646 TIntermSwitch *getAsSwitchNode() { return this; } in getAsSwitchNode() 713 virtual bool visitSwitch(Visit, TIntermSwitch*) { return true; } in visitSwitch() argument
|
D | AnalyzeCallDepth.h | 30 virtual bool visitSwitch(Visit, TIntermSwitch*);
|
D | ValidateSwitch.h | 36 bool visitSwitch(Visit, TIntermSwitch *) override;
|
D | localintermediate.h | 44 …TIntermSwitch *addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const TSourceLoc &li…
|
D | glslang_tab.h | 207 TIntermSwitch* intermSwitch;
|
D | ValidateSwitch.cpp | 86 bool ValidateSwitch::visitSwitch(Visit, TIntermSwitch *) in visitSwitch() argument
|
D | AnalyzeCallDepth.cpp | 121 bool AnalyzeCallDepth::visitSwitch(Visit visit, TIntermSwitch *node) in visitSwitch()
|
D | IntermTraverse.cpp | 225 void TIntermSwitch::traverse(TIntermTraverser *it) in traverse()
|
D | OutputASM.h | 261 virtual bool visitSwitch(Visit, TIntermSwitch*);
|
D | ParseHelper.h | 223 …TIntermSwitch *addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const TSourceLoc &lo…
|
D | Intermediate.cpp | 686 TIntermSwitch *TIntermediate::addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const … in addSwitch() 688 TIntermSwitch *node = new TIntermSwitch(init, statementList); in addSwitch()
|
D | ParseHelper.cpp | 3353 TIntermSwitch *TParseContext::addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const … in addSwitch() 3375 TIntermSwitch *node = intermediate.addSwitch(init, statementList, loc); in addSwitch()
|
D | glslang.y | 87 TIntermSwitch* intermSwitch;
|
D | glslang_tab.cpp | 294 TIntermSwitch* intermSwitch;
|
D | OutputASM.cpp | 1779 bool OutputASM::visitSwitch(Visit visit, TIntermSwitch *node) in visitSwitch()
|