Home
last modified time | relevance | path

Searched refs:TFunction (Results 1 – 10 of 10) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DParseHelper.h126 bool constructorErrorCheck(const TSourceLoc &line, TIntermNode*, TFunction&, TOperator, TType*);
143 bool functionCallLValueErrorCheck(const TFunction *fnCandidate, TIntermAggregate *);
155 const TFunction* findFunction(const TSourceLoc &line, TFunction* pfnCall, bool *builtIn = 0);
190 …TIntermAggregate *addFunctionPrototypeDeclaration(const TFunction &function, const TSourceLoc &loc…
191 …TIntermAggregate *addFunctionDefinition(const TFunction &function, TIntermAggregate *functionProto…
192 …void parseFunctionPrototype(const TSourceLoc &location, TFunction *function, TIntermAggregate **ag…
193 TFunction *parseFunctionDeclarator(const TSourceLoc &location, TFunction *function);
194 TFunction *addConstructorFunc(const TPublicType &publicType);
195 TIntermTyped* addConstructor(TIntermNode*, const TType*, TOperator, TFunction*, const TSourceLoc&);
237 …TIntermTyped *addFunctionCallOrMethod(TFunction *fnCall, TIntermNode *paramNode, TIntermNode *this…
DSymbolTable.h139 class TFunction : public TSymbol
142 TFunction(TOperator o) : in TFunction() function
148TFunction(const TString *name, const TType& retType, TOperator tOp = EOpNull, const char *ext = ""…
151 mangledName(TFunction::mangleName(*name)), in TSymbol()
156 virtual ~TFunction();
421 TFunction *function = new TFunction(NewPoolTString(name), *rvalue, op, ext);
DParseHelper.cpp537 bool TParseContext::constructorErrorCheck(const TSourceLoc &line, TIntermNode* node, TFunction& fun… in constructorErrorCheck()
1123 bool TParseContext::functionCallLValueErrorCheck(const TFunction *fnCandidate, TIntermAggregate *ag… in functionCallLValueErrorCheck()
1249 const TFunction* TParseContext::findFunction(const TSourceLoc &line, TFunction* call, bool *builtIn) in findFunction()
1268 return static_cast<const TFunction*>(symbol); in findFunction()
1869 TIntermAggregate *TParseContext::addFunctionPrototypeDeclaration(const TFunction &function, const T… in addFunctionPrototypeDeclaration()
1874 TFunction *symbolTableFunction = in addFunctionPrototypeDeclaration()
1875 static_cast<TFunction *>(symbolTable.find(function.getMangledName(), getShaderVersion())); in addFunctionPrototypeDeclaration()
1921 TIntermAggregate *TParseContext::addFunctionDefinition(const TFunction &function, TIntermAggregate … in addFunctionDefinition()
1948 void TParseContext::parseFunctionPrototype(const TSourceLoc &location, TFunction *function, TInterm… in parseFunctionPrototype()
1958TFunction *prevDec = static_cast<TFunction *>(symbolTable.find(function->getMangledName(), getShad… in parseFunctionPrototype()
[all …]
DSymbolTable.cpp183 TFunction::~TFunction() in ~TFunction()
Dglslang.y95 TFunction* function;
382 TFunction *function = new TFunction($1.string, type);
389 TFunction *function = new TFunction($1.string, type);
701 TFunction *function;
703 function = new TFunction($2.string, type);
Dglslang_tab.h215 TFunction* function;
DValidateLimitations.cpp434 TFunction* function = static_cast<TFunction*>(symbol); in validateFunctionCall()
Dglslang_tab.cpp302 TFunction* function;
2615 TFunction *function = new TFunction((yyvsp[0].lex).string, type); in yyparse()
2627 TFunction *function = new TFunction((yyvsp[0].lex).string, type); in yyparse()
3214 TFunction *function; in yyparse()
3216 function = new TFunction((yyvsp[-1].lex).string, type); in yyparse()
DOutputASM.cpp229 TString name = TFunction::unmangleName(nodeName); in TextureFunction()
/external/mesa3d/src/compiler/glsl/
Dlower_variable_index_to_cond_assign.cpp235 typedef assignment_generator TFunction; typedef
236 const TFunction& generator;
244 switch_generator(const TFunction& generator, ir_variable *index, in switch_generator()