OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TVariable
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/angle/src/compiler/
SymbolTable.h
76
class
TVariable
: public TSymbol {
78
TVariable
(const TString *name, const TType& t, bool uT = false ) : TSymbol(name), type(t), userType(uT), unionArray(0) { }
79
virtual ~
TVariable
() { }
108
DISALLOW_COPY_AND_ASSIGN(
TVariable
);
278
TVariable
*constant = new
TVariable
(NewPoolTString(name), TType(EbtInt, EbpUndefined, EvqConst, 1));
Initialize.cpp
398
TVariable
*depthRangeParameters = new
TVariable
(&depthRangeStruct->name(), depthRangeStruct, true);
400
TVariable
*depthRange = new
TVariable
(NewPoolTString("gl_DepthRange"), TType(depthRangeStruct));
431
symbolTable.insert(*new
TVariable
(NewPoolTString("gl_FragCoord"), TType(EbtFloat, EbpMedium, EvqFragCoord, 4)));
432
symbolTable.insert(*new
TVariable
(NewPoolTString("gl_FrontFacing"), TType(EbtBool, EbpUndefined, EvqFrontFacing, 1)));
433
symbolTable.insert(*new
TVariable
(NewPoolTString("gl_PointCoord"), TType(EbtFloat, EbpMedium, EvqPointCoord, 2)));
440
symbolTable.insert(*new
TVariable
(NewPoolTString("gl_FragColor"), TType(EbtFloat, EbpMedium, EvqFragColor, 4)));
441
symbolTable.insert(*new
TVariable
(NewPoolTString("gl_FragData[gl_MaxDrawBuffers]"), TType(EbtFloat, EbpMedium, EvqFragData, 4)));
443
symbolTable.insert(*new
TVariable
(NewPoolTString("gl_FragDepthEXT"), TType(EbtFloat, resources.FragmentPrecisionHigh ? Eb (…)
[
all
...]
ParseContext.h
89
bool arrayErrorCheck(const TSourceLoc& line, TString& identifier, TPublicType type,
TVariable
*& variable);
97
bool nonInitErrorCheck(const TSourceLoc& line, TString& identifier, TPublicType& type,
TVariable
*& variable);
110
TIntermTyped* initializer, TIntermNode*& intermNode,
TVariable
* variable = 0);
glslang.y
187
const
TVariable
* variable;
192
TVariable
* fakeVariable = new
TVariable
($1.string, type);
202
variable = static_cast<const
TVariable
*>(symbol);
[
all
...]
ParseContext.cpp
736
bool TParseContext::arrayErrorCheck(const TSourceLoc& line, TString& identifier, TPublicType type,
TVariable
*& variable)
750
variable = new
TVariable
(&identifier, TType(type));
766
variable = static_cast<
TVariable
*>(symbol);
828
bool TParseContext::nonInitErrorCheck(const TSourceLoc& line, TString& identifier, TPublicType& type,
TVariable
*& variable)
833
variable = new
TVariable
(&identifier, TType(type));
947
TIntermTyped* initializer, TIntermNode*& intermNode,
TVariable
* variable)
961
variable = new
TVariable
(&identifier, type);
1001
const
TVariable
* tVar = static_cast<const
TVariable
*>(symbol);
[
all
...]
glslang.l
277
TVariable
* variable = static_cast<
TVariable
*>(symbol);
SymbolTable.cpp
130
void
TVariable
::dump(TInfoSink& infoSink) const
glslang_tab.cpp
[
all
...]
glslang_lex.cpp
[
all
...]
Completed in 851 milliseconds