Searched refs:Stored (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DCanonicalType.h55 QualType Stored; member in class:clang::CanQual
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(); }
124 bool hasQualifiers() const { return Stored
228 CanQual<T> Stored; member in class:clang::CanProxyBase
340 CanProxy(CanQual<T> Stored) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DTemplate.h298 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored =
301 Stored = I->second.get<Decl *>();
305 Stored = NewPack;
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Serialization/
H A DASTWriter.h133 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; member in class:clang::ASTWriter::DeclOrType
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp2701 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D]; local
2702 if (Stored.isNull())
2703 Stored = Inst;
2704 else if (DeclArgumentPack *Pack = Stored.dyn_cast<DeclArgumentPack *>())
2707 assert(Stored.get<Decl *>() == Inst && "Already instantiated this local");
2719 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D]; local
2720 assert(Stored.isNull() && "Already instantiated this local");
2722 Stored = Pack;
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp1064 Stmt **Stored = getStoredStmts(); local
1066 *Stored++ = CaptureInits[I];
1069 *Stored = S;
H A DExprCXX.cpp883 Stmt **Stored = getStoredStmts(); local
885 *Stored++ = CaptureInits[I];
888 *Stored++ = getCallOperator()->getBody();
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_wc/
H A Dwc-metadata.sql169 texts. Stored in a column to allow storing them in the pristine store */

Completed in 211 milliseconds