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

  /external/clang/include/clang/AST/
CanonicalType.h 40 /// BuiltinType, etc.). The type stored within @c CanQual<T> will be of that
55 QualType Stored;
59 CanQual() : Stored() { }
71 const T *getTypePtr() const { return cast<T>(Stored.getTypePtr()); }
77 return cast_or_null<T>(Stored.getTypePtrOrNull());
81 operator QualType() const { return Stored; }
87 return Stored.isNull();
90 SplitQualType split() const { return Stored.split(); }
118 Qualifiers getQualifiers() const { return Stored.getLocalQualifiers(); }
121 unsigned getCVRQualifiers() const { return Stored.getLocalCVRQualifiers();
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp     [all...]
Stmt.cpp     [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 92 /// stored in the stream, the ID number is shifted by 2 bits to
127 /// offset table where information about that input file is stored.
133 DeclOrType(Decl *D) : Stored(D), IsType(false) { }
134 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) { }
141 return QualType::getFromOpaquePtr(Stored);
146 return static_cast<Decl *>(Stored);
150 void *Stored;
203 /// stored in the stream, the ID number is shifted by 2 bits to
306 /// headers. The declarations themselves are stored as declaration
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp     [all...]

Completed in 5013 milliseconds