Searched refs:UnfoldSelect (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DUnfoldSelect.h6 // UnfoldSelect is an AST traverser to output the select operator ?: as if-else statements
19 class UnfoldSelect : public TIntermTraverser class in namespace:sh
22 UnfoldSelect(TParseContext &context, OutputHLSL *outputHLSL);
H A DUnfoldSelect.cpp6 // UnfoldSelect is an AST traverser to output the select operator ?: as if-else statements
9 #include "compiler/UnfoldSelect.h"
16 UnfoldSelect::UnfoldSelect(TParseContext &context, OutputHLSL *outputHLSL) : mContext(context), mOutputHLSL(outputHLSL) function in class:sh::UnfoldSelect
21 void UnfoldSelect::traverse(TIntermNode *node)
27 bool UnfoldSelect::visitSelection(Visit visit, TIntermSelection *node)
61 int UnfoldSelect::getTemporaryIndex()
H A DOutputHLSL.h18 class UnfoldSelect;
63 UnfoldSelect *mUnfoldSelect;
H A DOutputHLSL.cpp11 #include "compiler/UnfoldSelect.h"
29 mUnfoldSelect = new UnfoldSelect(context, this);

Completed in 499 milliseconds