HomeSort by relevance Sort by last modified time
    Searched refs:TVariable (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/angle/src/compiler/translator/
SymbolTable.h 103 class TVariable : public TSymbol
106 TVariable(const TString *name, const TType &t, bool uT = false)
113 virtual ~TVariable()
160 DISALLOW_COPY_AND_ASSIGN(TVariable);
365 TVariable *constant = new TVariable(
ParseContext.h 81 const TVariable *getNamedVariable(const TSourceLoc &location, const TString *name, const TSymbol *symbol);
99 bool arrayErrorCheck(const TSourceLoc& line, const TString& identifier, const TPublicType &type, TVariable*& variable);
108 bool nonInitErrorCheck(const TSourceLoc& line, const TString& identifier, const TPublicType& type, TVariable*& variable);
125 TIntermTyped* initializer, TIntermNode*& intermNode, TVariable* variable = 0);
ParseContext.cpp 788 bool TParseContext::arrayErrorCheck(const TSourceLoc& line, const TString& identifier, const TPublicType &type, TVariable*& variable)
802 variable = new TVariable(&identifier, TType(type));
818 variable = static_cast<TVariable*>(symbol);
880 bool TParseContext::nonInitErrorCheck(const TSourceLoc& line, const TString& identifier, const TPublicType& type, TVariable*& variable)
885 variable = new TVariable(&identifier, TType(type));
1021 const TVariable *TParseContext::getNamedVariable(const TSourceLoc &location,
1025 const TVariable *variable = NULL;
1039 variable = static_cast<const TVariable*>(symbol);
1052 TVariable *fakeVariable = new TVariable(name, type)
    [all...]
Initialize.cpp     [all...]
glslang.l 404 TVariable* variable = static_cast<TVariable*>(symbol);
glslang.y 212 const TVariable *variable = context->getNamedVariable(@1, $1.string, $1.symbol);
772 TVariable variable(param.name, *param.type);
    [all...]
glslang_tab.cpp     [all...]
glslang_lex.cpp     [all...]

Completed in 47 milliseconds