Home | History | Annotate | Download | only in compiler

Lines Matching defs:TType

17 class TType;
23 TField(TType* type, TString* name) : mType(type), mName(name) {}
27 TType* type() { return mType; }
28 const TType* type() const { return mType; }
34 TType* mType;
93 class TType
97 TType() {}
98 TType(TBasicType t, TPrecision p, TQualifier q = EvqTemporary, int s = 1, bool m = false, bool a = false) :
102 explicit TType(const TPublicType &p);
103 TType(TStructure* userDef, TPrecision p = EbpUndefined) :
181 bool sameElementType(const TType& right) const {
187 bool operator==(const TType& right) const {
195 bool operator!=(const TType& right) const {
198 bool operator<(const TType& right) const {
268 TType* userDef;