Searched refs:TFunction (Results 1 – 10 of 10) sorted by relevance
/external/swiftshader/src/OpenGL/compiler/ |
D | ParseHelper.h | 126 bool constructorErrorCheck(const TSourceLoc &line, TIntermNode*, TFunction&, TOperator, TType*); 143 bool functionCallLValueErrorCheck(const TFunction *fnCandidate, TIntermAggregate *); 154 const TFunction* findFunction(const TSourceLoc &line, TFunction* pfnCall, bool *builtIn = 0); 189 …TIntermAggregate *addFunctionPrototypeDeclaration(const TFunction &function, const TSourceLoc &loc… 190 …TIntermAggregate *addFunctionDefinition(const TFunction &function, TIntermAggregate *functionProto… 191 …void parseFunctionPrototype(const TSourceLoc &location, TFunction *function, TIntermAggregate **ag… 192 TFunction *parseFunctionDeclarator(const TSourceLoc &location, TFunction *function); 193 TFunction *addConstructorFunc(const TPublicType &publicType); 194 TIntermTyped* addConstructor(TIntermNode*, const TType*, TOperator, TFunction*, const TSourceLoc&); 236 …TIntermTyped *addFunctionCallOrMethod(TFunction *fnCall, TIntermNode *paramNode, TIntermNode *this…
|
D | SymbolTable.h | 139 class TFunction : public TSymbol 142 TFunction(TOperator o) : in TFunction() function 148 …TFunction(const TString *name, const TType& retType, TOperator tOp = EOpNull, const char *ext = ""… 151 mangledName(TFunction::mangleName(*name)), in TSymbol() 156 virtual ~TFunction(); 415 TFunction *function = new TFunction(NewPoolTString(name), *rvalue, op, ext);
|
D | ParseHelper.cpp | 465 bool TParseContext::constructorErrorCheck(const TSourceLoc &line, TIntermNode* node, TFunction& fun… in constructorErrorCheck() 1038 bool TParseContext::functionCallLValueErrorCheck(const TFunction *fnCandidate, TIntermAggregate *ag… in functionCallLValueErrorCheck() 1164 const TFunction* TParseContext::findFunction(const TSourceLoc &line, TFunction* call, bool *builtIn) in findFunction() 1183 return static_cast<const TFunction*>(symbol); in findFunction() 1733 TIntermAggregate *TParseContext::addFunctionPrototypeDeclaration(const TFunction &function, const T… in addFunctionPrototypeDeclaration() 1738 TFunction *symbolTableFunction = in addFunctionPrototypeDeclaration() 1739 static_cast<TFunction *>(symbolTable.find(function.getMangledName(), getShaderVersion())); in addFunctionPrototypeDeclaration() 1785 TIntermAggregate *TParseContext::addFunctionDefinition(const TFunction &function, TIntermAggregate … in addFunctionDefinition() 1812 void TParseContext::parseFunctionPrototype(const TSourceLoc &location, TFunction *function, TInterm… in parseFunctionPrototype() 1822 …TFunction *prevDec = static_cast<TFunction *>(symbolTable.find(function->getMangledName(), getShad… in parseFunctionPrototype() [all …]
|
D | SymbolTable.cpp | 172 TFunction::~TFunction() in ~TFunction()
|
D | glslang.y | 95 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);
|
D | glslang_tab.h | 215 TFunction* function;
|
D | ValidateLimitations.cpp | 434 TFunction* function = static_cast<TFunction*>(symbol); in validateFunctionCall()
|
D | glslang_tab.cpp | 302 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()
|
D | OutputASM.cpp | 227 TString name = TFunction::unmangleName(nodeName); in TextureFunction()
|
/external/mesa3d/src/glsl/ |
D | lower_variable_index_to_cond_assign.cpp | 228 typedef assignment_generator TFunction; typedef 229 const TFunction& generator; 237 switch_generator(const TFunction& generator, ir_variable *index, in switch_generator()
|