Searched defs:Primary (Results 1 - 8 of 8) sorted by relevance
/external/clang/include/clang/Frontend/ |
H A D | ChainedDiagnosticConsumer.h | 26 DiagnosticConsumer *Primary; member in class:clang::ChainedDiagnosticConsumer 30 ChainedDiagnosticConsumer(std::unique_ptr<DiagnosticConsumer> Primary, argument 32 : OwningPrimary(std::move(Primary)), Primary(OwningPrimary.get()), 35 /// \brief Construct without taking ownership of \c Primary. 36 ChainedDiagnosticConsumer(DiagnosticConsumer *Primary, argument 38 : Primary(Primary), Secondary(std::move(Secondary)) {} 42 Primary->BeginSourceFile(LO, PP); 48 Primary [all...] |
/external/clang/include/clang/AST/ |
H A D | DeclLookups.h | 72 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext(); local 73 if (Primary->hasExternalVisibleStorage()) 74 getParentASTContext().getExternalSource()->completeVisibleDeclsMap(Primary); 75 if (StoredDeclsMap *Map = Primary->buildLookup()) 93 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext(); local 94 if (StoredDeclsMap *Map = Primary->getLookupPtr())
|
H A D | ASTContext.h | 780 void setPrimaryMergedDecl(Decl *D, Decl *Primary) { argument 781 MergedDecls[D] = Primary;
|
/external/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugFrame.cpp | 105 uint8_t Primary = Opcode & DWARF_CFI_PRIMARY_OPCODE_MASK; local 107 if (Primary) { 111 switch (Primary) { 115 addInstruction(Primary, Op1); 118 addInstruction(Primary, Op1, Data.getULEB128(Offset));
|
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | SymbolManager.cpp | 347 void SymbolManager::addSymbolDependency(const SymbolRef Primary, argument 349 SymbolDependTy::iterator I = SymbolDependencies.find(Primary); 353 SymbolDependencies[Primary] = dependencies; 361 const SymbolRef Primary) { 362 SymbolDependTy::const_iterator I = SymbolDependencies.find(Primary); 360 getDependentSymbols( const SymbolRef Primary) argument
|
H A D | PathDiagnostic.cpp | 67 void PathPieces::flattenTo(PathPieces &Primary, PathPieces &Current, argument 79 Call->path.flattenTo(Primary, Primary, ShouldFlattenMacros); 89 Macro->subPieces.flattenTo(Primary, Primary, ShouldFlattenMacros); 93 Macro->subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros);
|
/external/clang/lib/AST/ |
H A D | DeclCXX.cpp | 580 NamedDecl *Primary = local 582 if (Primary->getPreviousDecl()) 583 Conversions.replace(cast<NamedDecl>(Primary->getPreviousDecl()), 584 Primary, AS); 586 Conversions.addDecl(Ctx, Primary, AS);
|
/external/clang/lib/Sema/ |
H A D | SemaDeclCXX.cpp | 12806 const FunctionDecl *Primary = MD; local 12810 Pattern->isDefined(Primary); 12815 if (Primary == Primary->getCanonicalDecl())
|
Completed in 409 milliseconds