Home
last modified time | relevance | path

Searched refs:functionBody (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/
DReplaceShadowingVariables.cpp41 TIntermBlock *functionBody; // function body where replacement occurs member
110 if (!ReplaceVariable(compiler, replace.functionBody, replace.originalVariable, in executeReplacements()
DIntermNode_util.cpp43 TIntermBlock *functionBody) in CreateInternalFunctionDefinitionNode() argument
45 return new TIntermFunctionDefinition(new TIntermFunctionPrototype(&func), functionBody); in CreateInternalFunctionDefinitionNode()
DIntermNode_util.h23 TIntermBlock *functionBody);
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/
DCollectVariables_test.cpp199 const std::string &functionBody) in compileGeometryShaderWithInputPrimitive() argument
206 << inputVarying << functionBody; in compileGeometryShaderWithInputPrimitive()
1100 const std::string &functionBody = in TEST_F() local
1108 compileGeometryShaderWithInputPrimitive(kInputPrimitives[i], "", functionBody); in TEST_F()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
DParseHelper.cpp1880 …ion &function, TIntermAggregate *functionPrototype, TIntermAggregate *functionBody, const TSourceL… in addFunctionDefinition() argument
1890 …TIntermAggregate *aggregate = intermediate.growAggregate(functionPrototype, functionBody, location… in addFunctionDefinition()
1900 if(functionBody && functionBody->getAsAggregate()) in addFunctionDefinition()
1901 aggregate->setEndLine(functionBody->getAsAggregate()->getEndLine()); in addFunctionDefinition()
DParseHelper.h192 …ion &function, TIntermAggregate *functionPrototype, TIntermAggregate *functionBody, const TSourceL…
/third_party/glslang/glslang/HLSL/
DhlslParseHelper.h87 …void handleFunctionBody(const TSourceLoc&, TFunction&, TIntermNode* functionBody, TIntermNode*& no…
DhlslGrammar.cpp2986 TIntermNode* functionBody = nullptr; in acceptFunctionBody() local
2987 if (! acceptCompoundStatement(functionBody)) in acceptFunctionBody()
2991 … parseContext.handleFunctionBody(declarator.loc, *declarator.function, functionBody, functionNode); in acceptFunctionBody()
DhlslParseHelper.cpp2292 …eContext::handleFunctionBody(const TSourceLoc& loc, TFunction& function, TIntermNode* functionBody, in handleFunctionBody() argument
2295 node = intermediate.growAggregate(node, functionBody); in handleFunctionBody()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DParseContext.h305 TIntermBlock *functionBody,
DParseContext.cpp3893 TIntermBlock *functionBody, in addFunctionDefinition() argument
3910 if (functionBody == nullptr) in addFunctionDefinition()
3912 functionBody = new TIntermBlock(); in addFunctionDefinition()
3913 functionBody->setLine(location); in addFunctionDefinition()
3916 new TIntermFunctionDefinition(functionPrototype, functionBody); in addFunctionDefinition()