Searched defs:Primary (Results 1 - 7 of 7) sorted by relevance

/external/clang/include/clang/Frontend/
H A DChainedDiagnosticConsumer.h26 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 DDeclLookups.h72 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 DASTContext.h865 void setPrimaryMergedDecl(Decl *D, Decl *Primary) { argument
866 MergedDecls[D] = Primary;
/external/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp347 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 DPathDiagnostic.cpp64 void PathPieces::flattenTo(PathPieces &Primary, PathPieces &Current, argument
76 Call->path.flattenTo(Primary, Primary, ShouldFlattenMacros);
86 Macro->subPieces.flattenTo(Primary, Primary, ShouldFlattenMacros);
90 Macro->subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros);
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp108 uint8_t Primary = Opcode & DWARF_CFI_PRIMARY_OPCODE_MASK; local
110 if (Primary) {
114 switch (Primary) {
118 addInstruction(Primary, Op1);
121 addInstruction(Primary, Op1, Data.getULEB128(Offset));
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp13102 const FunctionDecl *Primary = MD; local
13106 Primary = Pattern;
13111 if (Primary->getCanonicalDecl()->isDefaulted())

Completed in 513 milliseconds