HomeSort by relevance Sort by last modified time
    Searched refs:TIntermSelection (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/angle/src/compiler/translator/
QualifierAlive.cpp 22 bool visitSelection(Visit, TIntermSelection*);
52 bool TAliveTraverser::visitSelection(Visit preVisit, TIntermSelection* node)
RewriteElseBlocks.h 30 TIntermNode *rewriteSelection(TIntermSelection *selection);
UnfoldShortCircuitAST.cpp 13 TIntermSelection *UnfoldOR(TIntermTyped *x, TIntermTyped *y)
20 return new TIntermSelection(x, trueNode, y, boolType);
24 TIntermSelection *UnfoldAND(TIntermTyped *x, TIntermTyped *y)
31 return new TIntermSelection(x, y, falseNode, boolType);
38 TIntermSelection *replacement = NULL;
UnfoldShortCircuit.h 26 bool visitSelection(Visit visit, TIntermSelection *node);
VersionGLSL.h 43 virtual bool visitSelection(Visit, TIntermSelection*);
RewriteElseBlocks.cpp 55 TIntermSelection *selection = statement->getAsSelectionNode();
59 TIntermSelection *elseIfBranch = selection->getFalseBlock()->getAsSelectionNode();
84 TIntermNode *ElseBlockRewriter::rewriteSelection(TIntermSelection *selection)
111 TIntermSelection *falseBlock = new TIntermSelection(negatedCondition,
113 TIntermSelection *newIfElse = new TIntermSelection(conditionSymbolC,
InitializeVariables.h 37 virtual bool visitSelection(Visit visit, TIntermSelection* node) { return false; }
VersionGLSL.cpp 64 bool TVersionGLSL::visitSelection(Visit, TIntermSelection*)
intermediate.h 209 class TIntermSelection;
239 virtual TIntermSelection* getAsSelectionNode() { return 0; }
590 class TIntermSelection : public TIntermTyped {
592 TIntermSelection(TIntermTyped* cond, TIntermNode* trueB, TIntermNode* falseB) :
594 TIntermSelection(TIntermTyped* cond, TIntermNode* trueB, TIntermNode* falseB, const TType& type) :
608 TIntermSelection* getAsSelectionNode() { return this; }
651 virtual bool visitSelection(Visit visit, TIntermSelection*) {return true;}
708 virtual bool visitSelection(Visit visit, TIntermSelection*) { return depthCheck(); }
OutputGLSLBase.h 39 virtual bool visitSelection(Visit visit, TIntermSelection *node);
UnfoldShortCircuit.cpp 111 bool UnfoldShortCircuit::visitSelection(Visit visit, TIntermSelection *node)
parseConst.cpp 36 bool visitSelection(Visit visit, TIntermSelection*);
147 bool TConstTraverser::visitSelection(Visit visit, TIntermSelection* node)
IntermTraverse.cpp 161 void TIntermSelection::traverse(TIntermTraverser *it)
intermOut.cpp 33 bool visitSelection(Visit visit, TIntermSelection*);
293 bool TOutputTraverser::visitSelection(Visit visit, TIntermSelection* node)
Intermediate.cpp 614 TIntermSelection* node = new TIntermSelection(cond, nodePair.node1, nodePair.node2);
671 TIntermSelection* node = new TIntermSelection(cond, trueBlock, falseBlock, trueBlock->getType());
877 bool TIntermSelection::replaceChildNode(
886 void TIntermSelection::enqueueChildren(std::queue<TIntermNode*> *nodeQueue) const
    [all...]
OutputHLSL.h 62 bool visitSelection(Visit visit, TIntermSelection*);
OutputGLSLBase.cpp 29 else if (const TIntermSelection *selection = node->getAsSelectionNode())
557 bool TOutputGLSLBase::visitSelection(Visit visit, TIntermSelection *node)
OutputHLSL.cpp     [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/depgraph/
DependencyGraph.h 100 TGraphSelection(TIntermSelection* intermSelection) : TGraphNode(intermSelection) {}
102 const TIntermSelection* getIntermSelection() const { return intermNode->getAsSelectionNode(); }
169 TGraphSelection* createSelection(TIntermSelection* intermSelection);
DependencyGraph.cpp 67 TGraphSelection* TDependencyGraph::createSelection(TIntermSelection* intermSelection)
DependencyGraphBuilder.h 22 virtual bool visitSelection(Visit visit, TIntermSelection*);
DependencyGraphBuilder.cpp 176 bool TDependencyGraphBuilder::visitSelection(Visit visit, TIntermSelection* intermSelection)

Completed in 684 milliseconds