Home
last modified time | relevance | path

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

/external/swiftshader/src/OpenGL/compiler/
DValidateSwitch.cpp20 TIntermAggregate *statementList, const TSourceLoc &loc) in validate() argument
23 ASSERT(statementList); in validate()
24 statementList->traverse(&validate); in validate()
Dintermediate.h640 TIntermSwitch(TIntermTyped *init, TIntermAggregate *statementList) in TIntermSwitch() argument
641 : TIntermNode(), mInit(init), mStatementList(statementList) in TIntermSwitch()
650 void setStatementList(TIntermAggregate *statementList) { mStatementList = statementList; } in setStatementList() argument
DValidateSwitch.h29 TIntermAggregate *statementList, const TSourceLoc &loc);
Dlocalintermediate.h44 …TIntermSwitch *addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const TSourceLoc &li…
DParseHelper.h224 …TIntermSwitch *addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const TSourceLoc &lo…
DParseHelper.cpp3282 TIntermSwitch *TParseContext::addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const … in addSwitch() argument
3295 if(statementList) in addSwitch()
3297 if(!ValidateSwitch::validate(switchType, this, statementList, loc)) in addSwitch()
3304 TIntermSwitch *node = intermediate.addSwitch(init, statementList, loc); in addSwitch()
DIntermediate.cpp689 TIntermSwitch *TIntermediate::addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const … in addSwitch() argument
691 TIntermSwitch *node = new TIntermSwitch(init, statementList); in addSwitch()