/external/chromium_org/third_party/angle/src/compiler/ |
D | intermediate.h | 193 class TIntermAggregate; variable 223 virtual TIntermAggregate* getAsAggregate() { return 0; } in getAsAggregate() 487 class TIntermAggregate : public TIntermOperator { 489 … TIntermAggregate() : TIntermOperator(EOpNull), userDefined(false), useEmulatedFunction(false) { } in TIntermAggregate() function 490 TIntermAggregate(TOperator o) : TIntermOperator(o), useEmulatedFunction(false) { } in TIntermAggregate() function 491 ~TIntermAggregate() { } in ~TIntermAggregate() 493 virtual TIntermAggregate* getAsAggregate() { return this; } in getAsAggregate() 518 TIntermAggregate(const TIntermAggregate&); // disallow copy constructor 519 TIntermAggregate& operator=(const TIntermAggregate&); // disallow assignment operator 594 virtual bool visitAggregate(Visit visit, TIntermAggregate*) {return true;} in visitAggregate() argument
|
D | InitializeGLPosition.cpp | 10 bool InitializeGLPosition::visitAggregate(Visit visit, TIntermAggregate* node) in visitAggregate() 24 TIntermAggregate *body = NULL; in visitAggregate() 27 body = new TIntermAggregate(EOpSequence); in visitAggregate()
|
D | localintermediate.h | 34 TIntermAggregate* growAggregate(TIntermNode* left, TIntermNode* right, const TSourceLoc&); 35 TIntermAggregate* makeAggregate(TIntermNode* node, const TSourceLoc&); 36 TIntermAggregate* setAggregateOperator(TIntermNode*, TOperator, const TSourceLoc&);
|
D | DetectDiscontinuity.h | 27 bool visitAggregate(Visit visit, TIntermAggregate *node); 43 bool visitAggregate(Visit visit, TIntermAggregate *node);
|
D | RemoveTree.cpp | 27 bool visitAggregate(Visit visit, TIntermAggregate*); 49 bool RemoveTree::visitAggregate(Visit visit, TIntermAggregate* node) in visitAggregate()
|
D | ValidateLimitations.h | 30 virtual bool visitAggregate(Visit, TIntermAggregate*); 45 bool validateFunctionCall(TIntermAggregate* node);
|
D | DetectDiscontinuity.cpp | 66 bool DetectLoopDiscontinuity::visitAggregate(Visit visit, TIntermAggregate *node) in visitAggregate() 103 bool DetectGradientOperation::visitAggregate(Visit visit, TIntermAggregate *node) in visitAggregate()
|
D | Intermediate.cpp | 373 TIntermAggregate* TIntermediate::setAggregateOperator(TIntermNode* node, TOperator op, const TSourc… in setAggregateOperator() 375 TIntermAggregate* aggNode; in setAggregateOperator() 386 aggNode = new TIntermAggregate(); in setAggregateOperator() 390 aggNode = new TIntermAggregate(); in setAggregateOperator() 528 TIntermAggregate* TIntermediate::growAggregate(TIntermNode* left, TIntermNode* right, const TSource… in growAggregate() 533 TIntermAggregate* aggNode = 0; in growAggregate() 537 aggNode = new TIntermAggregate; in growAggregate() 555 TIntermAggregate* TIntermediate::makeAggregate(TIntermNode* node, const TSourceLoc& line) in makeAggregate() 560 TIntermAggregate* aggNode = new TIntermAggregate; in makeAggregate() 669 TIntermAggregate* node = new TIntermAggregate(EOpSequence); in addSwizzle() [all …]
|
D | RenameFunction.h | 23 virtual bool visitAggregate(Visit visit, TIntermAggregate* node) in visitAggregate()
|
D | VersionGLSL.h | 44 virtual bool visitAggregate(Visit, TIntermAggregate*);
|
D | InitializeGLPosition.h | 24 virtual bool visitAggregate(Visit visit, TIntermAggregate* node);
|
D | VariableInfo.h | 37 virtual bool visitAggregate(Visit, TIntermAggregate*);
|
D | ParseContext.h | 107 bool areAllChildConst(TIntermAggregate* aggrNode); 113 TIntermTyped* foldConstConstructor(TIntermAggregate* aggrNode, const TType& type);
|
D | OutputGLSLBase.cpp | 23 if (const TIntermAggregate* aggregate = node->getAsAggregate()) in isSingleStatement() 270 TIntermAggregate* rightChild = node->getRight()->getAsAggregate(); in visitBinary() 451 bool TOutputGLSLBase::visitAggregate(Visit visit, TIntermAggregate* node) in visitAggregate() 510 TIntermAggregate* params = (*seqIter)->getAsAggregate(); in visitAggregate() 516 TIntermAggregate* body = ++seqIter != sequence.end() ? in visitAggregate()
|
D | DetectCallDepth.h | 31 virtual bool visitAggregate(Visit, TIntermAggregate*);
|
D | ValidateLimitations.cpp | 152 bool ValidateLimitations::visitAggregate(Visit, TIntermAggregate* node) in visitAggregate() 249 TIntermAggregate* decl = init->getAsAggregate(); in validateForLoopInit() 415 bool ValidateLimitations::validateFunctionCall(TIntermAggregate* node) in validateFunctionCall()
|
D | ForLoopUnroll.cpp | 22 TIntermAggregate* decl = node->getInit()->getAsAggregate(); in visitLoop() 49 TIntermAggregate* decl = init->getAsAggregate(); in FillLoopIndexInfo()
|
D | parseConst.cpp | 37 bool visitAggregate(Visit visit, TIntermAggregate*); 97 bool TConstTraverser::visitAggregate(Visit visit, TIntermAggregate* node) in visitAggregate()
|
D | VersionGLSL.cpp | 69 bool TVersionGLSL::visitAggregate(Visit, TIntermAggregate* node) in visitAggregate()
|
D | OutputGLSLBase.h | 39 virtual bool visitAggregate(Visit visit, TIntermAggregate* node);
|
/external/chromium_org/third_party/angle/src/compiler/depgraph/ |
D | DependencyGraph.h | 61 TGraphArgument(TIntermAggregate* intermFunctionCall, int argumentNumber) in TGraphArgument() 65 const TIntermAggregate* getIntermFunctionCall() const { return intermNode->getAsAggregate(); } in getIntermFunctionCall() 77 TGraphFunctionCall(TIntermAggregate* intermFunctionCall) in TGraphFunctionCall() 80 const TIntermAggregate* getIntermFunctionCall() const { return intermNode->getAsAggregate(); } in getIntermFunctionCall() 166 TGraphArgument* createArgument(TIntermAggregate* intermFunctionCall, int argumentNumber); 167 TGraphFunctionCall* createFunctionCall(TIntermAggregate* intermFunctionCall);
|
D | DependencyGraphBuilder.h | 23 virtual bool visitAggregate(Visit visit, TIntermAggregate*); 169 void visitFunctionDefinition(TIntermAggregate*); 170 void visitFunctionCall(TIntermAggregate* intermFunctionCall); 171 void visitAggregateChildren(TIntermAggregate*);
|
D | DependencyGraphBuilder.cpp | 15 bool TDependencyGraphBuilder::visitAggregate(Visit visit, TIntermAggregate* intermAggregate) in visitAggregate() 26 void TDependencyGraphBuilder::visitFunctionDefinition(TIntermAggregate* intermAggregate) in visitFunctionDefinition() 37 void TDependencyGraphBuilder::visitFunctionCall(TIntermAggregate* intermFunctionCall) in visitFunctionCall() 69 void TDependencyGraphBuilder::visitAggregateChildren(TIntermAggregate* intermAggregate) in visitAggregateChildren()
|
D | DependencyGraph.cpp | 26 TGraphArgument* TDependencyGraph::createArgument(TIntermAggregate* intermFunctionCall, in createArgument() 34 TGraphFunctionCall* TDependencyGraph::createFunctionCall(TIntermAggregate* intermFunctionCall) in createFunctionCall()
|
/external/chromium_org/third_party/angle/src/compiler/timing/ |
D | RestrictFragmentShaderTiming.h | 31 bool isSamplingOp(const TIntermAggregate* intermFunctionCall) const;
|