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

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
SymbolTable.cpp 78 void TVariable::dump(TInfoSink& infoSink) const
166 TVariable::TVariable(const TVariable& copyOf, TStructureMap& remapper) : TSymbol(copyOf)
183 TVariable* TVariable::clone(TStructureMap& remapper)
185 TVariable *variable = new TVariable(*this, remapper);
SymbolTable.h 71 class TVariable : public TSymbol {
73 TVariable(const TString *name, const TType& t, bool uT = false ) : TSymbol(name), type(t), userType(uT), unionArray(0), arrayInformationType(0) { }
74 virtual ~TVariable() { }
103 TVariable(const TVariable&, TStructureMap& remapper); // copy constructor
104 virtual TVariable* clone(TStructureMap& remapper);

Completed in 28 milliseconds