HomeSort by: relevance | last modified time | path
    Searched refs:DeclInfo (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
LocInfoType.h 35 TypeSourceInfo *DeclInfo;
38 : Type((TypeClass)LocInfo, ty, ty->getDependence()), DeclInfo(TInfo) {
45 TypeSourceInfo *getTypeSourceInfo() const { return DeclInfo; }
Comment.h 980 struct DeclInfo {
992 /// The information in the DeclInfo corresponds to CurrentDecl.
1093 DeclInfo *ThisDeclInfo;
1096 FullComment(ArrayRef<BlockContentComment *> Blocks, DeclInfo *D) :
1123 const DeclInfo *getDeclInfo() const LLVM_READONLY {
CommentSema.h 49 DeclInfo *ThisDeclInfo;
54 /// Contains a valid value if \c DeclInfo->IsFilled is true.
Decl.h 709 llvm::PointerUnion<TypeSourceInfo *, ExtInfo *> DeclInfo;
715 bool hasExtInfo() const { return DeclInfo.is<ExtInfo*>(); }
716 ExtInfo *getExtInfo() { return DeclInfo.get<ExtInfo*>(); }
717 const ExtInfo *getExtInfo() const { return DeclInfo.get<ExtInfo*>(); }
723 : ValueDecl(DK, DC, L, N, T), DeclInfo(TInfo), InnerLocStart(StartL) {}
732 : DeclInfo.get<TypeSourceInfo*>();
739 DeclInfo = TI;
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXIndexDataConsumer.h 65 struct DeclInfo : public CXIdxDeclInfo {
86 DeclInfo(bool isRedeclaration, bool isDefinition, bool isContainer)
96 DeclInfo(DInfoKind K,
109 struct ObjCContainerDeclInfo : public DeclInfo {
115 : DeclInfo(Info_ObjCContainer, isRedeclaration,
123 : DeclInfo(K, isRedeclaration, /*isDefinition=*/!isForwardRef,
128 static bool classof(const DeclInfo *D) {
153 static bool classof(const DeclInfo *D) {
167 static bool classof(const DeclInfo *D) {
182 static bool classof(const DeclInfo *D)
    [all...]
Indexing.cpp 729 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
742 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
755 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
768 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo);
789 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo)
    [all...]
CXIndexDataConsumer.cpp 543 DeclInfo &DInfo,
603 ContDInfo.ObjCContDeclInfo.declInfo = &ContDInfo;
617 DeclInfo DInfo(!D->isFirstDecl(), isDef, isContainer);
624 DeclInfo DInfo(!D->isFirstDecl(), D->isThisDeclarationADefinition(),
630 DeclInfo DInfo(/*isRedeclaration=*/false, /*isDefinition=*/true,
636 DeclInfo DInfo(/*isRedeclaration=*/false, /*isDefinition=*/true,
645 DeclInfo DInfo(!D->isFirstDecl(), D->isThisDeclarationADefinition(),
651 DeclInfo DInfo(!D->isFirstDecl(), /*isDefinition=*/true,
813 DeclInfo DInfo(!D->isCanonicalDecl(), isDef, isContainer);
830 DeclInfo DInfo(/*isRedeclaration=*/true, /*isDefinition=*/true
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
Comment.cpp 31 // DeclInfo is also allocated with a BumpPtrAllocator.
32 static_assert(std::is_trivially_destructible<DeclInfo>::value,
33 "DeclInfo should be trivially destructible!");
204 void DeclInfo::fill() {
CommentSema.cpp 40 ThisDeclInfo = new (Allocator) DeclInfo;
826 return ThisDeclInfo->getKind() == DeclInfo::FunctionKind;
867 if (ThisDeclInfo->getKind() == DeclInfo::VariableKind) {
881 if (ThisDeclInfo->getKind() != DeclInfo::VariableKind ||
919 return ThisDeclInfo->getTemplateKind() != DeclInfo::NotTemplate;
Decl.cpp 1871 auto *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1873 DeclInfo = new (getASTContext()) ExtInfo;
1890 auto *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1892 DeclInfo = new (getASTContext()) ExtInfo;
1906 auto *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1908 DeclInfo = new (getASTContext()) ExtInfo;
ASTContext.cpp 533 auto *ThisDeclInfo = new (*this) comments::DeclInfo;
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 835 DD->DeclInfo = Info;

Completed in 63 milliseconds