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

  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
SymbolTable.cpp 143 void TVariable::dump(TInfoSink& infoSink) const
252 TVariable::TVariable(const TVariable& copyOf) : TSymbol(copyOf)
271 TVariable* TVariable::clone() const
273 TVariable *variable = new TVariable(*this);
327 TVariable* container = anon->getAnonContainer().clone();
SymbolTable.h 77 class TVariable;
93 virtual TVariable* getAsVariable() { return 0; }
94 virtual const TVariable* getAsVariable() const { return 0; }
145 class TVariable : public TSymbol {
147 TVariable(const TString *name, const TType& t, bool uT = false )
151 virtual TVariable* clone() const;
152 virtual ~TVariable() { }
154 virtual TVariable* getAsVariable() { return this; }
155 virtual const TVariable* getAsVariable() const { return this; }
168 explicit TVariable(const TVariable&)
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
SymbolTable.h 84 class TVariable : public TSymbol
87 TVariable(const TString *name, const TType& t, bool uT = false ) : TSymbol(name), type(t), userType(uT), unionArray(0), arrayInformationType(0) { }
88 virtual ~TVariable() { }
363 TVariable *constant = new TVariable(NewPoolTString(name), TType(EbtInt, EbpUndefined, EvqConstExpr, 1));

Completed in 49 milliseconds