OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:intermAggregate
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/angle/src/compiler/depgraph/
DependencyGraphBuilder.cpp
15
bool TDependencyGraphBuilder::visitAggregate(Visit visit, TIntermAggregate*
intermAggregate
)
17
switch (
intermAggregate
->getOp()) {
18
case EOpFunction: visitFunctionDefinition(
intermAggregate
); break;
19
case EOpFunctionCall: visitFunctionCall(
intermAggregate
); break;
20
default: visitAggregateChildren(
intermAggregate
); break;
26
void TDependencyGraphBuilder::visitFunctionDefinition(TIntermAggregate*
intermAggregate
)
29
if (
intermAggregate
->getName() != "main(")
32
visitAggregateChildren(
intermAggregate
);
69
void TDependencyGraphBuilder::visitAggregateChildren(TIntermAggregate*
intermAggregate
)
71
TIntermSequence& sequence =
intermAggregate
->getSequence()
[
all
...]
/external/chromium_org/third_party/angle/src/compiler/
glslang.y
73
TIntermAggregate*
intermAggregate
;
154
%type <interm.
intermAggregate
> statement_list compound_statement
445
$$ = context->intermediate.setAggregateOperator($1.
intermAggregate
, op, @1);
450
$$ = context->intermediate.setAggregateOperator($1.
intermAggregate
, EOpFunctionCall, @1);
[
all
...]
glslang_tab.cpp
256
TIntermAggregate*
intermAggregate
;
[
all
...]
glslang_tab.h
174
TIntermAggregate*
intermAggregate
;
Completed in 28 milliseconds