HomeSort by relevance Sort by last modified time
    Searched refs: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/include/clang/Sema/
Template.h 46 /// \brief The template argument lists, stored from the innermost template
208 /// set of instantiated parameters. This is stored as a DeclArgumentPack
290 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored =
293 Stored = I->second.get<Decl *>();
297 Stored = NewPack;
432 // will be stored in LA.
  /external/clang/include/clang/Serialization/
ASTWriter.h 86 /// stored in the stream, the ID number is shifted by 2 bits to
119 DeclOrType(Decl *D) : Stored(D), IsType(false) { }
120 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) { }
127 return QualType::getFromOpaquePtr(Stored);
132 return static_cast<Decl *>(Stored);
136 void *Stored;
190 /// stored in the stream, the ID number is shifted by 2 bits to
285 /// headers. The declarations themselves are stored as declaration
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp     [all...]
  /external/clang/lib/AST/
ExprCXX.cpp     [all...]

Completed in 472 milliseconds