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

12

/freebsd-13-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.cpp1577 auto &Ids = File.ids();
1594 Ids, Types);
1655 auto &Ids = File.ids();
1660 MinimalSymbolDumper Dumper(P, opts::dump::DumpSymRecordBytes, Ids, Types);
1695 auto &Ids = File.ids();
1699 MinimalSymbolDumper Dumper(P, opts::dump::DumpSymRecordBytes, Ids, Types);
1791 auto &Ids = File.ids();
1805 MinimalSymbolDumper Dumper(P, opts::dump::DumpSymRecordBytes, Ids, Types);
H A Dllvm-pdbutil.cpp996 void diaDumpChildren(PDBSymbol &Outer, PdbSymbolIdField Ids, argument
1005 Child->defaultDump(outs(), 4, Ids, Recurse); local
1037 PdbSymbolIdField Ids = opts::diadump::NoSymIndexIds ? PdbSymbolIdField::None local
1044 Ids &= ~(PdbSymbolIdField::ClassParent | PdbSymbolIdField::LexicalParent);
1050 Child->defaultDump(outs(), 2, Ids, Recurse); local
1052 diaDumpChildren<PDBSymbolTypeEnum, PDBSymbolData>(*Child, Ids, Recurse);
/freebsd-13-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-13-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-13-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);
441 const CVTypeArray &Ids) {
443 return M.mergeIdRecords(Dest, TypeSourceToDest, Ids);
475 const CVTypeArray &Ids,
478 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-13-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-13-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-13-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-13-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-13-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-13-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DPPCallbacks.h252 ArrayRef<int> Ids) {
503 ArrayRef<int> Ids) override {
504 First->PragmaWarning(Loc, WarningSpec, Ids);
505 Second->PragmaWarning(Loc, WarningSpec, Ids);
251 PragmaWarning(SourceLocation Loc, StringRef WarningSpec, ArrayRef<int> Ids) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DNSAPI.cpp597 Selector NSAPI::getOrInitSelector(ArrayRef<StringRef> Ids, argument
602 I = Ids.begin(), E = Ids.end(); I != E; ++I)
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp296 std::vector<NodeId> Ids; local
298 Ids.push_back(Root);
299 while (Expanded < Ids.size())
300 for (NodeId Child : Tree.getNode(Ids[Expanded++]).Children)
301 Ids.push_back(Child);
302 return Ids;
/freebsd-13-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-13-stable/sys/contrib/dev/acpica/components/events/
H A Devrgnini.c528 if (AcpiUtIsPciRootBridge (Cid->Ids[i].String))
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp1862 std::map<Action *, unsigned> &Ids,
1864 if (Ids.count(A)) // A was already visited.
1865 return Ids[A];
1881 << PrintActions1(C, *BIA->input_begin(), Ids, SibIndent, SibKind) << "}";
1901 os << " {" << PrintActions1(C, A, Ids, SibIndent, SibKind) << "}";
1911 os << Prefix << PrintActions1(C, PreRequisite, Ids, SibIndent, SibKind);
1938 unsigned Id = Ids.size();
1939 Ids[A] = Id;
1949 std::map<Action *, unsigned> Ids; local
1951 PrintActions1(C, A, Ids);
1861 PrintActions1(const Compilation &C, Action *A, std::map<Action *, unsigned> &Ids, Twine Indent = {}, int Kind = TopLevelAction) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPragma.cpp1354 SmallVector<int, 4> Ids; local
1363 Ids.push_back(int(Value));
1366 Callbacks->PragmaWarning(DiagLoc, Specifier, Ids);
/freebsd-13-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbdisply.c850 Info->CompatibleIdList.Ids[i].String);

Completed in 129 milliseconds

12