Home | History | Annotate | Download | only in Serialization

Lines Matching defs:IsType

155     DeclOrType(Decl *D) : Stored(D), IsType(false) { }
156 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) { }
158 bool isType() const { return IsType; }
159 bool isDecl() const { return !IsType; }
162 assert(isType() && "Not a type!");
173 bool IsType;