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

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
RemoveTree.cpp 27 bool visitAggregate(Visit visit, TIntermAggregate*);
49 bool RemoveTree::visitAggregate(Visit visit, TIntermAggregate* node)
VersionGLSL.h 38 virtual bool visitAggregate(Visit, TIntermAggregate*);
intermediate.h 190 class TIntermAggregate;
215 virtual TIntermAggregate* getAsAggregate() { return 0; }
421 class TIntermAggregate : public TIntermOperator {
423 TIntermAggregate() : TIntermOperator(EOpNull), userDefined(false), pragmaTable(0) { }
424 TIntermAggregate(TOperator o) : TIntermOperator(o), pragmaTable(0) { }
425 ~TIntermAggregate() { delete pragmaTable; }
427 virtual TIntermAggregate* getAsAggregate() { return this; }
446 TIntermAggregate(const TIntermAggregate&); // disallow copy constructor
447 TIntermAggregate& operator=(const TIntermAggregate&); // disallow assignment operato
    [all...]
localintermediate.h 34 TIntermAggregate* growAggregate(TIntermNode* left, TIntermNode* right, TSourceLoc);
35 TIntermAggregate* makeAggregate(TIntermNode* node, TSourceLoc);
36 TIntermAggregate* setAggregateOperator(TIntermNode*, TOperator, TSourceLoc);
VariableInfo.h 30 virtual bool visitAggregate(Visit, TIntermAggregate*);
ValidateLimitations.h 32 virtual bool visitAggregate(Visit, TIntermAggregate*);
48 bool validateFunctionCall(TIntermAggregate* node);
OutputGLSL.h 32 virtual bool visitAggregate(Visit visit, TIntermAggregate* node);
VersionGLSL.cpp 66 bool TVersionGLSL::visitAggregate(Visit, TIntermAggregate* node)
ParseHelper.h 88 bool areAllChildConst(TIntermAggregate* aggrNode);
90 TIntermTyped* foldConstConstructor(TIntermAggregate* aggrNode, const TType& type);
ValidateLimitations.cpp 49 virtual bool visitAggregate(Visit, TIntermAggregate*) { return true; }
104 bool ValidateLimitations::visitAggregate(Visit, TIntermAggregate* node)
205 TIntermAggregate* decl = init->getAsAggregate();
371 bool ValidateLimitations::validateFunctionCall(TIntermAggregate* node)
Intermediate.cpp 378 TIntermAggregate* TIntermediate::setAggregateOperator(TIntermNode* node, TOperator op, TSourceLoc line)
380 TIntermAggregate* aggNode;
391 aggNode = new TIntermAggregate();
397 aggNode = new TIntermAggregate();
536 TIntermAggregate* TIntermediate::growAggregate(TIntermNode* left, TIntermNode* right, TSourceLoc line)
541 TIntermAggregate* aggNode = 0;
545 aggNode = new TIntermAggregate;
564 TIntermAggregate* TIntermediate::makeAggregate(TIntermNode* node, TSourceLoc line)
569 TIntermAggregate* aggNode = new TIntermAggregate;
    [all...]
OutputHLSL.h 45 bool visitAggregate(Visit visit, TIntermAggregate*);
parseConst.cpp 37 bool visitAggregate(Visit visit, TIntermAggregate*);
97 bool TConstTraverser::visitAggregate(Visit visit, TIntermAggregate* node)
OutputGLSL.cpp 50 if (const TIntermAggregate* aggregate = node->getAsAggregate())
253 TIntermAggregate* rightChild = node->getRight()->getAsAggregate();
427 bool TOutputGLSL::visitAggregate(Visit visit, TIntermAggregate* node)
485 TIntermAggregate* params = (*seqIter)->getAsAggregate();
491 TIntermAggregate* body = ++seqIter != sequence.end() ?
IntermTraverse.cpp 129 void TIntermAggregate::traverse(TIntermTraverser* it)
VariableInfo.cpp 162 bool CollectAttribsUniforms::visitAggregate(Visit, TIntermAggregate* node)
glslang_tab.h 252 TIntermAggregate* intermAggregate;
intermOut.cpp 33 bool visitAggregate(Visit visit, TIntermAggregate*);
202 bool TOutputTraverser::visitAggregate(Visit visit, TIntermAggregate* node)
ParseHelper.cpp 306 TIntermAggregate *aggrNode = rightNode->getAsAggregate();
    [all...]
OutputHLSL.cpp 744 TIntermAggregate *swizzle = node->getRight()->getAsAggregate();
981 bool OutputHLSL::visitAggregate(Visit visit, TIntermAggregate *node)
    [all...]
glslang.y 54 TIntermAggregate* intermAggregate;
    [all...]
glslang_tab.cpp 315 TIntermAggregate* intermAggregate;
    [all...]

Completed in 47 milliseconds