Searched refs:DInfo (Results 1 – 6 of 6) sorted by relevance
/external/clang/tools/libclang/ |
D | CXIndexDataConsumer.cpp | 531 DeclInfo &DInfo, in handleDecl() argument 540 getEntityInfo(D, DInfo.EntInfo, SA); in handleDecl() 541 if ((!shouldIndexFunctionLocalSymbols() && !DInfo.EntInfo.USR) in handleDecl() 551 DInfo.entityInfo = &DInfo.EntInfo; in handleDecl() 552 DInfo.cursor = Cursor; in handleDecl() 553 DInfo.loc = getIndexLoc(Loc); in handleDecl() 554 DInfo.isImplicit = D->isImplicit(); in handleDecl() 556 DInfo.attributes = DInfo.EntInfo.attributes; in handleDecl() 557 DInfo.numAttributes = DInfo.EntInfo.numAttributes; in handleDecl() 561 getContainerInfo(SemaDC, DInfo.SemanticContainer); in handleDecl() [all …]
|
D | Indexing.cpp | 697 clang_index_getObjCContainerDeclInfo(const CXIdxDeclInfo *DInfo) { in clang_index_getObjCContainerDeclInfo() argument 698 if (!DInfo) in clang_index_getObjCContainerDeclInfo() 701 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo); in clang_index_getObjCContainerDeclInfo() 710 clang_index_getObjCInterfaceDeclInfo(const CXIdxDeclInfo *DInfo) { in clang_index_getObjCInterfaceDeclInfo() argument 711 if (!DInfo) in clang_index_getObjCInterfaceDeclInfo() 714 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo); in clang_index_getObjCInterfaceDeclInfo() 723 clang_index_getObjCCategoryDeclInfo(const CXIdxDeclInfo *DInfo){ in clang_index_getObjCCategoryDeclInfo() argument 724 if (!DInfo) in clang_index_getObjCCategoryDeclInfo() 727 const DeclInfo *DI = static_cast<const DeclInfo *>(DInfo); in clang_index_getObjCCategoryDeclInfo() 736 clang_index_getObjCProtocolRefListInfo(const CXIdxDeclInfo *DInfo) { in clang_index_getObjCProtocolRefListInfo() argument [all …]
|
D | CXIndexDataConsumer.h | 478 DeclInfo &DInfo,
|
/external/abi-compliance-checker/modules/Internals/ |
D | SysCheck.pm | 1147 my %DInfo = (); 1155 $DInfo{$Tag} = []; 1161 push(@{$DInfo{$Tag}}, $Item); 1167 $DInfo{$Tag} = $TContent; 1173 $DInfo{$Tag}{$Item}=1; 1179 if(defined $DInfo{"non_self_compiled"}) 1181 $DInfo{"skip_including"} = $DInfo{"non_self_compiled"}; 1184 return \%DInfo;
|
/external/clang/lib/Basic/ |
D | Diagnostic.cpp | 449 static void HandleSelectModifier(const Diagnostic &DInfo, unsigned ValNo, in HandleSelectModifier() argument 467 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr); in HandleSelectModifier() 591 static void HandlePluralModifier(const Diagnostic &DInfo, unsigned ValNo, in HandlePluralModifier() argument 608 DInfo.FormatDiagnostic(Argument, ExprEnd, OutStr); in HandlePluralModifier()
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 6605 FileDeclsInfo &DInfo = I->second; in FindFileRegionDecls() local 6606 if (DInfo.Decls.empty()) in FindFileRegionDecls() 6613 DeclIDComp DIDComp(*this, *DInfo.Mod); in FindFileRegionDecls() 6615 BeginIt = std::lower_bound(DInfo.Decls.begin(), DInfo.Decls.end(), in FindFileRegionDecls() 6617 if (BeginIt != DInfo.Decls.begin()) in FindFileRegionDecls() 6623 while (BeginIt != DInfo.Decls.begin() && in FindFileRegionDecls() 6624 GetDecl(getGlobalDeclID(*DInfo.Mod, *BeginIt)) in FindFileRegionDecls() 6629 EndIt = std::upper_bound(DInfo.Decls.begin(), DInfo.Decls.end(), in FindFileRegionDecls() 6631 if (EndIt != DInfo.Decls.end()) in FindFileRegionDecls() 6636 Decls.push_back(GetDecl(getGlobalDeclID(*DInfo.Mod, *DIt))); in FindFileRegionDecls()
|