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

  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
SymbolTable.cpp 171 void TVariable::dump(TInfoSink& infoSink) const
280 TVariable::TVariable(const TVariable& copyOf) : TSymbol(copyOf)
299 TVariable* TVariable::clone() const
301 TVariable *variable = new TVariable(*this);
359 TVariable* container = anon->getAnonContainer().clone();
SymbolTable.h 77 class TVariable;
99 virtual TVariable* getAsVariable() { return 0; }
100 virtual const TVariable* getAsVariable() const { return 0; }
151 class TVariable : public TSymbol {
153 TVariable(const TString *name, const TType& t, bool uT = false )
158 virtual TVariable* clone() const;
159 virtual ~TVariable() { }
161 virtual TVariable* getAsVariable() { return this; }
162 virtual const TVariable* getAsVariable() const { return this; }
177 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() { }
348 TVariable *constant = new TVariable(NewPoolTString(name), TType(EbtInt, EbpUndefined, EvqConstExpr, 1));

Completed in 692 milliseconds