OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TIntermAggregate
(Results
1 - 25
of
37
) sorted by null
1
2
/external/chromium_org/third_party/angle/src/compiler/
DetectDiscontinuity.h
27
bool visitAggregate(Visit visit,
TIntermAggregate
*node);
43
bool visitAggregate(Visit visit,
TIntermAggregate
*node);
RemoveTree.cpp
27
bool visitAggregate(Visit visit,
TIntermAggregate
*);
49
bool RemoveTree::visitAggregate(Visit visit,
TIntermAggregate
* node)
InitializeGLPosition.h
24
virtual bool visitAggregate(Visit visit,
TIntermAggregate
* node);
RenameFunction.h
23
virtual bool visitAggregate(Visit visit,
TIntermAggregate
* node)
VersionGLSL.h
44
virtual bool visitAggregate(Visit,
TIntermAggregate
*);
InitializeGLPosition.cpp
10
bool InitializeGLPosition::visitAggregate(Visit visit,
TIntermAggregate
* node)
24
TIntermAggregate
*body = NULL;
27
body = new
TIntermAggregate
(EOpSequence);
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&);
VariableInfo.h
37
virtual bool visitAggregate(Visit,
TIntermAggregate
*);
DetectDiscontinuity.cpp
66
bool DetectLoopDiscontinuity::visitAggregate(Visit visit,
TIntermAggregate
*node)
103
bool DetectGradientOperation::visitAggregate(Visit visit,
TIntermAggregate
*node)
ValidateLimitations.h
30
virtual bool visitAggregate(Visit,
TIntermAggregate
*);
45
bool validateFunctionCall(
TIntermAggregate
* node);
intermediate.h
193
class
TIntermAggregate
;
223
virtual
TIntermAggregate
* getAsAggregate() { return 0; }
487
class
TIntermAggregate
: public TIntermOperator {
489
TIntermAggregate
() : TIntermOperator(EOpNull), userDefined(false), useEmulatedFunction(false) { }
490
TIntermAggregate
(TOperator o) : TIntermOperator(o), useEmulatedFunction(false) { }
491
~
TIntermAggregate
() { }
493
virtual
TIntermAggregate
* getAsAggregate() { return this; }
518
TIntermAggregate
(const
TIntermAggregate
&); // disallow copy constructor
519
TIntermAggregate
& operator=(const TIntermAggregate&); // disallow assignment operato
[
all
...]
DetectCallDepth.h
31
virtual bool visitAggregate(Visit,
TIntermAggregate
*);
OutputGLSLBase.h
39
virtual bool visitAggregate(Visit visit,
TIntermAggregate
* node);
VersionGLSL.cpp
69
bool TVersionGLSL::visitAggregate(Visit,
TIntermAggregate
* node)
Intermediate.cpp
373
TIntermAggregate
* TIntermediate::setAggregateOperator(TIntermNode* node, TOperator op, const TSourceLoc& line)
375
TIntermAggregate
* aggNode;
386
aggNode = new
TIntermAggregate
();
390
aggNode = new
TIntermAggregate
();
528
TIntermAggregate
* TIntermediate::growAggregate(TIntermNode* left, TIntermNode* right, const TSourceLoc& line)
533
TIntermAggregate
* aggNode = 0;
537
aggNode = new
TIntermAggregate
;
555
TIntermAggregate
* TIntermediate::makeAggregate(TIntermNode* node, const TSourceLoc& line)
560
TIntermAggregate
* aggNode = new
TIntermAggregate
;
[
all
...]
glslang_tab.h
174
TIntermAggregate
* intermAggregate;
ForLoopUnroll.cpp
22
TIntermAggregate
* decl = node->getInit()->getAsAggregate();
49
TIntermAggregate
* decl = init->getAsAggregate();
ParseContext.h
107
bool areAllChildConst(
TIntermAggregate
* aggrNode);
113
TIntermTyped* foldConstConstructor(
TIntermAggregate
* aggrNode, const TType& type);
parseConst.cpp
37
bool visitAggregate(Visit visit,
TIntermAggregate
*);
97
bool TConstTraverser::visitAggregate(Visit visit,
TIntermAggregate
* node)
/external/chromium_org/third_party/angle/src/compiler/depgraph/
DependencyGraph.h
61
TGraphArgument(
TIntermAggregate
* intermFunctionCall, int argumentNumber)
65
const
TIntermAggregate
* getIntermFunctionCall() const { return intermNode->getAsAggregate(); }
77
TGraphFunctionCall(
TIntermAggregate
* intermFunctionCall)
80
const
TIntermAggregate
* getIntermFunctionCall() const { return intermNode->getAsAggregate(); }
166
TGraphArgument* createArgument(
TIntermAggregate
* intermFunctionCall, int argumentNumber);
167
TGraphFunctionCall* createFunctionCall(
TIntermAggregate
* intermFunctionCall);
DependencyGraphBuilder.h
23
virtual bool visitAggregate(Visit visit,
TIntermAggregate
*);
169
void visitFunctionDefinition(
TIntermAggregate
*);
170
void visitFunctionCall(
TIntermAggregate
* intermFunctionCall);
171
void visitAggregateChildren(
TIntermAggregate
*);
DependencyGraph.cpp
26
TGraphArgument* TDependencyGraph::createArgument(
TIntermAggregate
* intermFunctionCall,
34
TGraphFunctionCall* TDependencyGraph::createFunctionCall(
TIntermAggregate
* intermFunctionCall)
DependencyGraphBuilder.cpp
15
bool TDependencyGraphBuilder::visitAggregate(Visit visit,
TIntermAggregate
* intermAggregate)
26
void TDependencyGraphBuilder::visitFunctionDefinition(
TIntermAggregate
* intermAggregate)
37
void TDependencyGraphBuilder::visitFunctionCall(
TIntermAggregate
* intermFunctionCall)
69
void TDependencyGraphBuilder::visitAggregateChildren(
TIntermAggregate
* intermAggregate)
/external/chromium_org/third_party/angle/src/compiler/timing/
RestrictFragmentShaderTiming.h
31
bool isSamplingOp(const
TIntermAggregate
* intermFunctionCall) const;
RestrictFragmentShaderTiming.cpp
77
bool RestrictFragmentShaderTiming::isSamplingOp(const
TIntermAggregate
* intermFunctionCall) const
Completed in 39 milliseconds
1
2