Searched refs:Ids (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.h26 codeview::LazyRandomTypeCollection &Ids,
28 : P(P), RecordBytes(RecordBytes), Ids(Ids), Types(Types) {}
31 codeview::LazyRandomTypeCollection &Ids,
33 : P(P), RecordBytes(RecordBytes), SymGroup(&SymGroup), Ids(Ids),
62 codeview::LazyRandomTypeCollection &Ids; member in class:llvm::pdb::MinimalSymbolDumper
25 MinimalSymbolDumper(LinePrinter &P, bool RecordBytes, codeview::LazyRandomTypeCollection &Ids, codeview::LazyRandomTypeCollection &Types) argument
29 MinimalSymbolDumper(LinePrinter &P, bool RecordBytes, const SymbolGroup &SymGroup, codeview::LazyRandomTypeCollection &Ids, codeview::LazyRandomTypeCollection &Types) argument
H A DTypeReferenceTracker.cpp32 Ids(File.isPdb() ? &File.ids() : nullptr) {
37 if (Ids) {
38 NumIdRecords = getNumRecordsInCollection(*Ids);
85 // FIXME: Should we walk Ids?
91 (Ids && RefKind == TiRefKind::IndexRef) ? IdReferenced : TypeReferenced;
130 Optional<CVType> Rec = (Ids && RefKind == TiRefKind::IndexRef)
131 ? Ids->tryGetType(RefTI)
H A DTypeReferenceTracker.h56 codeview::LazyRandomTypeCollection *Ids = nullptr; member in class:llvm::pdb::TypeReferenceTracker
H A DInputFile.cpp370 if (Ids && Kind == kIds)
371 return *Ids;
380 TypeCollectionPtr &Collection = (Kind == kIds) ? Ids : Types;
H A DInputFile.h51 TypeCollectionPtr Ids; member in class:llvm::pdb::InputFile
H A DDumpOutputStyle.cpp1578 auto &Ids = File.ids();
1595 Ids, Types);
1656 auto &Ids = File.ids();
1661 MinimalSymbolDumper Dumper(P, opts::dump::DumpSymRecordBytes, Ids, Types);
1696 auto &Ids = File.ids();
1700 MinimalSymbolDumper Dumper(P, opts::dump::DumpSymRecordBytes, Ids, Types);
1792 auto &Ids = File.ids();
1806 MinimalSymbolDumper Dumper(P, opts::dump::DumpSymRecordBytes, Ids, Types);
H A Dllvm-pdbutil.cpp992 void diaDumpChildren(PDBSymbol &Outer, PdbSymbolIdField Ids, argument
1001 Child->defaultDump(outs(), 4, Ids, Recurse); local
1033 PdbSymbolIdField Ids = opts::diadump::NoSymIndexIds ? PdbSymbolIdField::None local
1040 Ids &= ~(PdbSymbolIdField::ClassParent | PdbSymbolIdField::LexicalParent);
1046 Child->defaultDump(outs(), 2, Ids, Recurse); local
1048 diaDumpChildren<PDBSymbolTypeEnum, PDBSymbolData>(*Child, Ids, Recurse);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Option/
H A DArgList.h46 OptSpecifier Ids[NumOptSpecifiers ? NumOptSpecifiers : 1]; member in class:llvm::opt::arg_iterator
60 for (auto Id : Ids) {
80 const OptSpecifier (&Ids)[NumOptSpecifiers ? NumOptSpecifiers : 1] = {})
83 this->Ids[I] = Ids[I];
142 OptRange getRange(std::initializer_list<OptSpecifier> Ids) const;
205 filtered(OptSpecifiers ...Ids) const {
206 OptRange Range = getRange({toOptSpecifier(Ids)...});
210 return make_range(Iterator(B, E, {toOptSpecifier(Ids)...}),
211 Iterator(E, E, {toOptSpecifier(Ids)
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransGCCalls.cpp29 IdentifierTable &Ids = MigrateCtx.Pass.Ctx.Idents; local
30 NSMakeCollectableII = &Ids.get("NSMakeCollectable");
31 CFMakeCollectableII = &Ids.get("CFMakeCollectable");
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossImpSubsection.cpp75 std::vector<T> Ids;
76 Ids.reserve(Mappings.size());
79 Ids.push_back(&M);
81 llvm::sort(Ids, [this](const T &L1, const T &L2) {
86 for (const auto &Item : Ids) {
H A DTypeStreamMerger.cpp83 const CVTypeArray &Ids);
95 const CVTypeArray &Ids,
251 const CVTypeArray &Ids) {
256 return doit(Ids);
286 const CVTypeArray &Ids,
293 return doit(Ids);
442 const CVTypeArray &Ids) {
444 return M.mergeIdRecords(Dest, TypeSourceToDest, Ids);
476 const CVTypeArray &Ids,
479 return M.mergeIdRecords(Dest, Types, Ids, Hashe
249 mergeIdRecords(MergingTypeTableBuilder &Dest, ArrayRef<TypeIndex> TypeSourceToDest, const CVTypeArray &Ids) argument
284 mergeIdRecords(GlobalTypeTableBuilder &Dest, ArrayRef<TypeIndex> TypeSourceToDest, const CVTypeArray &Ids, ArrayRef<GloballyHashedType> Hashes) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeStreamMerger.h59 /// \param Ids The collection of id records to merge in.
65 const CVTypeArray &Ids);
103 const CVTypeArray &Ids,
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DNSAPI.h150 StringRef Ids[] = { "setObject", "forKeyedSubscript" }; local
151 return getOrInitSelector(Ids, setObjectForKeyedSubscriptSel);
156 StringRef Ids[] = { "setObject", "atIndexedSubscript" }; local
157 return getOrInitSelector(Ids, setObjectAtIndexedSubscriptSel);
235 Selector getOrInitSelector(ArrayRef<StringRef> Ids, Selector &Sel) const;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Option/
H A DArgList.cpp58 ArgList::getRange(std::initializer_list<OptSpecifier> Ids) const {
60 for (auto Id : Ids) {
99 ArrayRef<OptSpecifier> Ids,
110 for (OptSpecifier Id : Ids) {
121 /// This is a nicer interface when you don't have a list of Ids to exclude.
123 ArrayRef<OptSpecifier> Ids) const {
125 AddAllArgsExcept(Output, Ids, Exclude);
98 AddAllArgsExcept(ArgStringList &Output, ArrayRef<OptSpecifier> Ids, ArrayRef<OptSpecifier> ExcludeIds) const argument
/freebsd-12-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsxfname.c562 NextIdString = ACPI_CAST_PTR (char, Info->CompatibleIdList.Ids);
602 NextIdString = AcpiNsCopyDeviceId (&Info->CompatibleIdList.Ids[i],
603 &CidList->Ids[i], NextIdString);
605 if (AcpiUtIsPciRootBridge (CidList->Ids[i].String))
H A Dnsxfeval.c924 if (strcmp (Cid->Ids[i].String, Info->Hid) == 0)
/freebsd-12-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutids.c450 NextIdString = ACPI_CAST_PTR (char, CidList->Ids) +
473 CidList->Ids[i].String = NextIdString;
474 CidList->Ids[i].Length = Length;
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DPPCallbacks.h252 ArrayRef<int> Ids) {
505 ArrayRef<int> Ids) override {
506 First->PragmaWarning(Loc, WarningSpec, Ids);
507 Second->PragmaWarning(Loc, WarningSpec, Ids);
251 PragmaWarning(SourceLocation Loc, StringRef WarningSpec, ArrayRef<int> Ids) argument
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DNSAPI.cpp593 Selector NSAPI::getOrInitSelector(ArrayRef<StringRef> Ids, argument
598 I = Ids.begin(), E = Ids.end(); I != E; ++I)
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp295 std::vector<NodeId> Ids; local
297 Ids.push_back(Root);
298 while (Expanded < Ids.size())
299 for (NodeId Child : Tree.getNode(Ids[Expanded++]).Children)
300 Ids.push_back(Child);
301 return Ids;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp143 ArrayRef<int> Ids) override;
530 ArrayRef<int> Ids) {
534 for (ArrayRef<int>::iterator I = Ids.begin(), E = Ids.end(); I != E; ++I)
528 PragmaWarning(SourceLocation Loc, StringRef WarningSpec, ArrayRef<int> Ids) argument
/freebsd-12-stable/sys/contrib/dev/acpica/components/events/
H A Devrgnini.c525 if (AcpiUtIsPciRootBridge (Cid->Ids[i].String))
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp1828 std::map<Action *, unsigned> &Ids,
1830 if (Ids.count(A)) // A was already visited.
1831 return Ids[A];
1847 << PrintActions1(C, *BIA->input_begin(), Ids, SibIndent, SibKind) << "}";
1870 os << " {" << PrintActions1(C, A, Ids, SibIndent, SibKind) << "}";
1880 os << Prefix << PrintActions1(C, PreRequisite, Ids, SibIndent, SibKind);
1907 unsigned Id = Ids.size();
1908 Ids[A] = Id;
1918 std::map<Action *, unsigned> Ids; local
1920 PrintActions1(C, A, Ids);
1827 PrintActions1(const Compilation &C, Action *A, std::map<Action *, unsigned> &Ids, Twine Indent = {}, int Kind = TopLevelAction) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
H A DPragma.cpp1349 SmallVector<int, 4> Ids; local
1358 Ids.push_back(int(Value));
1361 Callbacks->PragmaWarning(DiagLoc, Specifier, Ids);
/freebsd-12-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbdisply.c848 Info->CompatibleIdList.Ids[i].String);

Completed in 301 milliseconds

12