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

  /external/clang/include/clang/Sema/
LocInfoType.h 36 TypeSourceInfo *DeclInfo;
43 DeclInfo(TInfo) {
50 TypeSourceInfo *getTypeSourceInfo() const { return DeclInfo; }
  /external/clang/include/clang/AST/
Decl.h 525 llvm::PointerUnion<TypeSourceInfo*, ExtInfo*> DeclInfo;
531 bool hasExtInfo() const { return DeclInfo.is<ExtInfo*>(); }
532 ExtInfo *getExtInfo() { return DeclInfo.get<ExtInfo*>(); }
533 const ExtInfo *getExtInfo() const { return DeclInfo.get<ExtInfo*>(); }
539 : ValueDecl(DK, DC, L, N, T), DeclInfo(TInfo), InnerLocStart(StartL) {
546 : DeclInfo.get<TypeSourceInfo*>();
552 DeclInfo = TI;
    [all...]
Comment.h 965 struct DeclInfo {
977 /// The information in the DeclInfo corresponds to CurrentDecl.
1078 DeclInfo *ThisDeclInfo;
1081 FullComment(ArrayRef<BlockContentComment *> Blocks, DeclInfo *D) :
1108 const DeclInfo *getDeclInfo() const LLVM_READONLY {
  /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...]

Completed in 39 milliseconds