Home
last modified time | relevance | path

Searched refs:TField (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DTypes.h27 class TField
31 TField(TType *type, TString *name, const TSourceLoc &line) in TField() function
64 typedef TVector<TField *> TFieldList;
DInitialize.cpp447TField *near = new TField(new TType(EbtFloat, EbpHigh, EvqGlobal, 1), NewPoolTString("near"), zero… in InsertBuiltInFunctions()
448TField *far = new TField(new TType(EbtFloat, EbpHigh, EvqGlobal, 1), NewPoolTString("far"), zeroSo… in InsertBuiltInFunctions()
449TField *diff = new TField(new TType(EbtFloat, EbpHigh, EvqGlobal, 1), NewPoolTString("diff"), zero… in InsertBuiltInFunctions()
Dglslang_tab.h217 TField* field;
Dglslang.y97 TField* field;
1341 TField* field = (*$2)[i];
1381 $$ = new TField(type, $1.string, @1);
1393 $$ = new TField(type, $1.string, @1);
DParseHelper.h222 bool structNestingErrorCheck(const TSourceLoc &line, const TField &field);
Dglslang_tab.cpp304 TField* field;
4336 TField* field = (*(yyvsp[0].interm.fieldList))[i]; in yyparse()
4392 (yyval.interm.field) = new TField(type, (yyvsp[0].lex).string, (yylsp[0])); in yyparse()
4409 (yyval.interm.field) = new TField(type, (yyvsp[-3].lex).string, (yylsp[-3])); in yyparse()
DParseHelper.cpp3038 bool TParseContext::structNestingErrorCheck(const TSourceLoc &line, const TField &field) in structNestingErrorCheck()