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

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
SymbolTable.cpp 160 TSymbol::TSymbol(const TSymbol& copyOf)
166 TVariable::TVariable(const TVariable& copyOf, TStructureMap& remapper) : TSymbol(copyOf)
190 TFunction::TFunction(const TFunction& copyOf, TStructureMap& remapper) : TSymbol(copyOf)
SymbolTable.h 41 class TSymbol {
44 TSymbol(const TString *n) : name(n) { }
45 virtual ~TSymbol() { /* don't delete name, it's from the pool */ }
53 TSymbol(const TSymbol&);
54 virtual TSymbol* clone(TStructureMap& remapper) = 0;
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) { }
132 class TFunction : public TSymbol {
135 TSymbol(0)
    [all...]

Completed in 33 milliseconds