Home
last modified time | relevance | path

Searched refs:Primary (Results 1 – 25 of 37) sorted by relevance

12

/NextBSD/contrib/llvm/tools/clang/include/clang/Frontend/
HDChainedDiagnosticConsumer.h26 DiagnosticConsumer *Primary; variable
30 ChainedDiagnosticConsumer(std::unique_ptr<DiagnosticConsumer> Primary, in ChainedDiagnosticConsumer() argument
32 : OwningPrimary(std::move(Primary)), Primary(OwningPrimary.get()), in ChainedDiagnosticConsumer()
36 ChainedDiagnosticConsumer(DiagnosticConsumer *Primary, in ChainedDiagnosticConsumer() argument
38 : Primary(Primary), Secondary(std::move(Secondary)) {} in ChainedDiagnosticConsumer()
42 Primary->BeginSourceFile(LO, PP); in BeginSourceFile()
48 Primary->EndSourceFile(); in EndSourceFile()
53 Primary->finish(); in finish()
57 return Primary->IncludeInDiagnosticCounts(); in IncludeInDiagnosticCounts()
65 Primary->HandleDiagnostic(DiagLevel, Info); in HandleDiagnostic()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDDeclLookups.h72 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext(); in lookups() local
73 if (Primary->hasExternalVisibleStorage()) in lookups()
74 getParentASTContext().getExternalSource()->completeVisibleDeclsMap(Primary); in lookups()
75 if (StoredDeclsMap *Map = Primary->buildLookup()) in lookups()
93 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext(); in noload_lookups() local
94 if (StoredDeclsMap *Map = Primary->getLookupPtr()) in noload_lookups()
/NextBSD/contrib/llvm/lib/DebugInfo/DWARF/
HDDWARFDebugFrame.cpp105 uint8_t Primary = Opcode & DWARF_CFI_PRIMARY_OPCODE_MASK; in parseInstructions() local
107 if (Primary) { in parseInstructions()
111 switch (Primary) { in parseInstructions()
115 addInstruction(Primary, Op1); in parseInstructions()
118 addInstruction(Primary, Op1, Data.getULEB128(Offset)); in parseInstructions()
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDSymbolManager.cpp347 void SymbolManager::addSymbolDependency(const SymbolRef Primary, in addSymbolDependency() argument
349 SymbolDependTy::iterator I = SymbolDependencies.find(Primary); in addSymbolDependency()
353 SymbolDependencies[Primary] = dependencies; in addSymbolDependency()
361 const SymbolRef Primary) { in getDependentSymbols() argument
362 SymbolDependTy::const_iterator I = SymbolDependencies.find(Primary); in getDependentSymbols()
HDPathDiagnostic.cpp67 void PathPieces::flattenTo(PathPieces &Primary, PathPieces &Current, in flattenTo() argument
79 Call->path.flattenTo(Primary, Primary, ShouldFlattenMacros); in flattenTo()
89 Macro->subPieces.flattenTo(Primary, Primary, ShouldFlattenMacros); in flattenTo()
93 Macro->subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros); in flattenTo()
/NextBSD/contrib/dialog/
HDdialog.lsm17 Primary-site: http://invisible-island.net/dialog/
/NextBSD/contrib/llvm/lib/Target/X86/
HDX86FrameLowering.cpp1473 GetScratchRegister(bool Is64Bit, bool IsLP64, const MachineFunction &MF, bool Primary) { in GetScratchRegister() argument
1479 return Primary ? X86::R14 : X86::R13; in GetScratchRegister()
1481 return Primary ? X86::EBX : X86::EDI; in GetScratchRegister()
1486 return Primary ? X86::R11 : X86::R12; in GetScratchRegister()
1488 return Primary ? X86::R11D : X86::R12D; in GetScratchRegister()
1498 return Primary ? X86::EAX : X86::ECX; in GetScratchRegister()
1501 return Primary ? X86::EDX : X86::EAX; in GetScratchRegister()
1502 return Primary ? X86::ECX : X86::EAX; in GetScratchRegister()
/NextBSD/contrib/gdb/gdb/
HDjv-exp.y362 Primary:
442 Primary '.' SimpleName
452 | Primary '.' SimpleName '(' ArgumentList_opt ')'
483 Primary
/NextBSD/contrib/amd/
HDMIRRORS.txt9 New York (Stony Brook, Primary Site):
/NextBSD/contrib/ofed/libibverbs/fixes/
HDXRC_man_pages.patch192 +struct ibv_ah_attr ah_attr; /* Primary path address vector (valid only for RC/…
194 +uint16_t pkey_index; /* Primary P_Key index */
201 +uint8_t port_num; /* Primary port number */
457 +struct ibv_ah_attr ah_attr; /* Primary path address vector (valid only for RC/UC …
459 +uint16_t pkey_index; /* Primary P_Key index */
466 +uint8_t port_num; /* Primary port number */
/NextBSD/crypto/openssl/crypto/des/
HDREADME13 libdes is now also shipped with SSLeay. Primary ftp site of
/NextBSD/contrib/llvm/lib/Target/PowerPC/
HDPPCScheduleA2.td10 // Primary reference:
HDPPCScheduleP7.td14 // Primary reference:
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDASTDumper.cpp749 const DeclContext *Primary = DC->getPrimaryContext(); in dumpLookups() local
750 if (Primary != DC) { in dumpLookups()
752 dumpPointer(cast<Decl>(Primary)); in dumpLookups()
755 bool HasUndeserializedLookups = Primary->hasExternalVisibleStorage(); in dumpLookups()
757 DeclContext::all_lookups_iterator I = Primary->noload_lookups_begin(), in dumpLookups()
758 E = Primary->noload_lookups_end(); in dumpLookups()
HDDeclCXX.cpp580 NamedDecl *Primary = in addedMember() local
582 if (Primary->getPreviousDecl()) in addedMember()
583 Conversions.replace(cast<NamedDecl>(Primary->getPreviousDecl()), in addedMember()
584 Primary, AS); in addedMember()
586 Conversions.addDecl(Ctx, Primary, AS); in addedMember()
HDDecl.cpp3044 if (FunctionTemplateDecl *Primary = getPrimaryTemplate()) { in getTemplateInstantiationPattern() local
3045 while (Primary->getInstantiatedFromMemberTemplate()) { in getTemplateInstantiationPattern()
3048 if (Primary->isMemberSpecialization()) in getTemplateInstantiationPattern()
3050 Primary = Primary->getInstantiatedFromMemberTemplate(); in getTemplateInstantiationPattern()
3053 return Primary->getTemplatedDecl(); in getTemplateInstantiationPattern()
/NextBSD/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
HDSymbolManager.h548 void addSymbolDependency(const SymbolRef Primary, const SymbolRef Dependent);
550 const SymbolRefSmallVectorTy *getDependentSymbols(const SymbolRef Primary);
/NextBSD/share/misc/
HDorganization.dot35 re [label="Primary Release Engineering Team\nre@FreeBSD.org\nkib, blackend, jpaetzel, hrs, kensmith…
/NextBSD/sys/teken/
HDsequences51 DA1 Primary Device Attributes ^[ [ c r
/NextBSD/usr.sbin/bsdconfig/usermgmt/include/
HDmessages.subr50 msg_delete_primary_group="Delete Primary Group"
/NextBSD/crypto/heimdal/lib/wind/
HDCompositionExclusions-3.2.0.txt11 # http://www.unicode.org/unicode/reports/tr15/#Primary Exclusion List Table
/NextBSD/sys/boot/pc98/cdboot/
HDcdboot.S377 cmpb $VD_PRIMARY,%es:(%bx) # Primary VD?
385 have_vd: # Have Primary VD
/NextBSD/sys/gnu/dts/arm/
HDarm-realview-pb1176.dts181 /* Primary DevChip GIC synthesized with the CPU */
/NextBSD/tools/tools/nanobsd/gateworks/
HDcommon349 echo "Primary partition: ${IMG1}"
/NextBSD/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/
HDPathDiagnostic.h422 void flattenTo(PathPieces &Primary, PathPieces &Current,

12