HomeSort by relevance Sort by last modified time
    Searched refs:DeclInfo (Results 1 - 12 of 12) sorted by null

  /external/clang/include/clang/Sema/
LocInfoType.h 36 TypeSourceInfo *DeclInfo;
43 DeclInfo(TInfo) {
50 TypeSourceInfo *getTypeSourceInfo() const { return DeclInfo; }
  /external/clang/tools/libclang/
IndexingContext.h 63 struct DeclInfo : public CXIdxDeclInfo {
84 DeclInfo(bool isRedeclaration, bool isDefinition, bool isContainer)
94 DeclInfo(DInfoKind K,
107 struct ObjCContainerDeclInfo : public DeclInfo {
113 : DeclInfo(Info_ObjCContainer, isRedeclaration,
121 : DeclInfo(K, isRedeclaration, /*isDefinition=*/!isForwardRef,
126 static bool classof(const DeclInfo *D) {
151 static bool classof(const DeclInfo *D) {
165 static bool classof(const DeclInfo *D) {
180 static bool classof(const DeclInfo *D)
    [all...]
Indexing.cpp 829 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
842 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
855 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
868 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
889 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo)
    [all...]
IndexingContext.cpp 311 DeclInfo &DInfo,
368 ContDInfo.ObjCContDeclInfo.declInfo = &ContDInfo;
382 DeclInfo DInfo(!D->isFirstDecl(), isDef, isContainer);
389 DeclInfo DInfo(!D->isFirstDecl(), D->isThisDeclarationADefinition(),
395 DeclInfo DInfo(/*isRedeclaration=*/false, /*isDefinition=*/true,
401 DeclInfo DInfo(/*isRedeclaration=*/false, /*isDefinition=*/true,
407 DeclInfo DInfo(/*isRedeclaration=*/false, /*isDefinition=*/true,
416 DeclInfo DInfo(!D->isFirstDecl(), D->isThisDeclarationADefinition(),
422 DeclInfo DInfo(!D->isFirstDecl(), /*isDefinition=*/true,
583 DeclInfo DInfo(!D->isCanonicalDecl(), isDef, isContainer)
    [all...]
  /external/clang/include/clang/AST/
Comment.h 984 struct DeclInfo {
996 /// The information in the DeclInfo corresponds to CurrentDecl.
1097 DeclInfo *ThisDeclInfo;
1100 FullComment(ArrayRef<BlockContentComment *> Blocks, DeclInfo *D) :
1127 const DeclInfo *getDeclInfo() const LLVM_READONLY {
CommentSema.h 50 DeclInfo *ThisDeclInfo;
55 /// Contains a valid value if \c DeclInfo->IsFilled is true.
Decl.h 534 llvm::PointerUnion<TypeSourceInfo*, ExtInfo*> DeclInfo;
540 bool hasExtInfo() const { return DeclInfo.is<ExtInfo*>(); }
541 ExtInfo *getExtInfo() { return DeclInfo.get<ExtInfo*>(); }
542 const ExtInfo *getExtInfo() const { return DeclInfo.get<ExtInfo*>(); }
548 : ValueDecl(DK, DC, L, N, T), DeclInfo(TInfo), InnerLocStart(StartL) {
555 : DeclInfo.get<TypeSourceInfo*>();
561 DeclInfo = TI;
    [all...]
  /external/clang/lib/AST/
CommentSema.cpp 40 ThisDeclInfo = new (Allocator) DeclInfo;
807 return ThisDeclInfo->getKind() == DeclInfo::FunctionKind;
840 if (ThisDeclInfo->getKind() == DeclInfo::VariableKind) {
862 return ThisDeclInfo->getTemplateKind() != DeclInfo::NotTemplate;
    [all...]
Comment.cpp 129 void DeclInfo::fill() {
Decl.cpp     [all...]
ASTContext.cpp 420 comments::DeclInfo *ThisDeclInfo = new (*this) comments::DeclInfo;
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 348 if (DD->DeclInfo) {
350 DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
355 DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
566 DD->DeclInfo = Info;
    [all...]

Completed in 260 milliseconds