Home
last modified time | relevance | path

Searched refs:intermNode (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/angle/src/compiler/depgraph/
DDependencyGraph.h36 TGraphNode(TIntermNode* node) : intermNode(node) {} in TGraphNode()
40 TIntermNode* intermNode;
65 const TIntermAggregate* getIntermFunctionCall() const { return intermNode->getAsAggregate(); } in getIntermFunctionCall()
80 const TIntermAggregate* getIntermFunctionCall() const { return intermNode->getAsAggregate(); } in getIntermFunctionCall()
91 const TIntermSymbol* getIntermSymbol() const { return intermNode->getAsSymbolNode(); } in getIntermSymbol()
102 const TIntermSelection* getIntermSelection() const { return intermNode->getAsSelectionNode(); } in getIntermSelection()
113 const TIntermLoop* getIntermLoop() const { return intermNode->getAsLoopNode(); } in getIntermLoop()
124 const TIntermBinary* getIntermLogicalOp() const { return intermNode->getAsBinaryNode(); } in getIntermLogicalOp()
141 TDependencyGraph(TIntermNode* intermNode);
DDependencyGraph.cpp12 TDependencyGraph::TDependencyGraph(TIntermNode* intermNode) in TDependencyGraph() argument
14 TDependencyGraphBuilder::build(intermNode, this); in TDependencyGraph()
DDependencyGraphBuilder.h162 void build(TIntermNode* intermNode) { intermNode->traverse(this); } in build() argument
/external/chromium_org/third_party/angle/src/compiler/
Dglslang_tab.cpp253 TIntermNode* intermNode; member
2503 …t->constructorErrorCheck((yylsp[(1) - (1)]), (yyvsp[(1) - (1)].interm).intermNode, *fnCall, op, &t…
2509 …m.intermTypedNode) = context->addConstructor((yyvsp[(1) - (1)].interm).intermNode, &type, op, fnCa…
2541 …de) = context->intermediate.addUnaryMath(op, (yyvsp[(1) - (1)].interm).intermNode, (yylsp[(1) - (1…
2544 …tion. Type: " << static_cast<TIntermTyped*>((yyvsp[(1) - (1)].interm).intermNode)->getCompleteStr…
2546 …context->error((yyvsp[(1) - (1)].interm).intermNode->getLine(), " wrong operand type", "Internal E…
2570 …context->error((yyvsp[(1) - (1)].interm).intermNode->getLine(), "Constant value cannot be passed f…
2624 (yyval.interm).intermNode = 0;
2632 (yyval.interm).intermNode = 0;
2642 (yyval.interm).intermNode = (yyvsp[(2) - (2)].interm.intermTypedNode);
[all …]
Dglslang.y70 TIntermNode* intermNode; member
152 %type <interm.intermNode> translation_unit function_definition
153 %type <interm.intermNode> statement simple_statement
155 %type <interm.intermNode> declaration_statement selection_statement expression_statement
156 %type <interm.intermNode> declaration external_declaration
157 %type <interm.intermNode> for_init_statement compound_statement_no_new_scope
159 %type <interm.intermNode> iteration_statement jump_statement statement_no_new_scope statement_with_…
398 if (context->constructorErrorCheck(@1, $1.intermNode, *fnCall, op, &type)) {
404 $$ = context->addConstructor($1.intermNode, &type, op, fnCall, @1);
436 … $$ = context->intermediate.addUnaryMath(op, $1.intermNode, @1, context->symbolTable);
[all …]
Dglslang_tab.h171 TIntermNode* intermNode; member
DParseContext.h110 … TIntermTyped* initializer, TIntermNode*& intermNode, TVariable* variable = 0);
DParseContext.cpp947 … TIntermTyped* initializer, TIntermNode*& intermNode, TVariable* variable) in executeInitializer() argument
1017 intermNode = intermediate.addAssign(EOpInitialize, intermSymbol, initializer, line); in executeInitializer()
1018 if (intermNode == 0) { in executeInitializer()
1023 intermNode = 0; in executeInitializer()