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 508 llvm::PointerUnion<TypeSourceInfo*, ExtInfo*> DeclInfo;
514 bool hasExtInfo() const { return DeclInfo.is<ExtInfo*>(); }
515 ExtInfo *getExtInfo() { return DeclInfo.get<ExtInfo*>(); }
516 const ExtInfo *getExtInfo() const { return DeclInfo.get<ExtInfo*>(); }
522 : ValueDecl(DK, DC, L, N, T), DeclInfo(TInfo), InnerLocStart(StartL) {
529 : DeclInfo.get<TypeSourceInfo*>();
535 DeclInfo = TI;
    [all...]
Comment.h 951 struct DeclInfo {
963 /// The information in the DeclInfo corresponds to CurrentDecl.
1064 DeclInfo *ThisDeclInfo;
1067 FullComment(ArrayRef<BlockContentComment *> Blocks, DeclInfo *D) :
1094 const DeclInfo *getDeclInfo() const LLVM_READONLY {
1100 DeclInfo *getThisDeclInfo() const LLVM_READONLY {
  /external/clang/tools/libclang/
IndexingContext.h 62 struct DeclInfo : public CXIdxDeclInfo {
83 DeclInfo(bool isRedeclaration, bool isDefinition, bool isContainer)
93 DeclInfo(DInfoKind K,
106 struct ObjCContainerDeclInfo : public DeclInfo {
112 : DeclInfo(Info_ObjCContainer, isRedeclaration,
120 : DeclInfo(K, isRedeclaration, /*isDefinition=*/!isForwardRef,
125 static bool classof(const DeclInfo *D) {
150 static bool classof(const DeclInfo *D) {
164 static bool classof(const DeclInfo *D) {
179 static bool classof(const DeclInfo *D)
    [all...]

Completed in 33 milliseconds