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

/external/swiftshader/src/OpenGL/compiler/
H A DValidateSwitch.cpp20 TIntermAggregate *statementList, const TSourceLoc &loc)
23 ASSERT(statementList);
24 statementList->traverse(&validate);
166 // This is not the statementList node, but some other node.
19 validate(TBasicType switchType, TParseContext *context, TIntermAggregate *statementList, const TSourceLoc &loc) argument
H A DValidateSwitch.h29 TIntermAggregate *statementList, const TSourceLoc &loc);
H A Dlocalintermediate.h44 TIntermSwitch *addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const TSourceLoc &line);
H A Dintermediate.h640 TIntermSwitch(TIntermTyped *init, TIntermAggregate *statementList) argument
641 : TIntermNode(), mInit(init), mStatementList(statementList)
650 void setStatementList(TIntermAggregate *statementList) { mStatementList = statementList; } argument
H A DParseHelper.h222 TIntermSwitch *addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const TSourceLoc &loc);
H A DIntermediate.cpp689 TIntermSwitch *TIntermediate::addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const TSourceLoc &line) argument
691 TIntermSwitch *node = new TIntermSwitch(init, statementList);
H A DParseHelper.cpp3274 TIntermSwitch *TParseContext::addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const TSourceLoc &loc) argument
3287 if(statementList)
3289 if(!ValidateSwitch::validate(switchType, this, statementList, loc))
3296 TIntermSwitch *node = intermediate.addSwitch(init, statementList, loc);

Completed in 1056 milliseconds