Home
last modified time | relevance | path

Searched refs:Doc (Results 1 – 25 of 77) sorted by relevance

1234

/openbsd/gnu/llvm/llvm/lib/ObjectYAML/
H A Dyaml2obj.cpp28 yaml::YamlObjectFile Doc; in convertYAML() local
29 YIn >> Doc; in convertYAML()
35 if (Doc.Arch) in convertYAML()
37 if (Doc.Elf) in convertYAML()
39 if (Doc.Coff) in convertYAML()
41 if (Doc.MachO || Doc.FatMachO) in convertYAML()
43 if (Doc.Minidump) in convertYAML()
45 if (Doc.Offload) in convertYAML()
47 if (Doc.Wasm) in convertYAML()
49 if (Doc.Xcoff) in convertYAML()
[all …]
H A DOffloadEmitter.cpp21 bool yaml2offload(Binary &Doc, raw_ostream &Out, ErrorHandler EH) { in yaml2offload() argument
22 for (const auto &Member : Doc.Members) { in yaml2offload()
52 if (Doc.Version) in yaml2offload()
53 TheHeader->Version = *Doc.Version; in yaml2offload()
54 if (Doc.Size) in yaml2offload()
55 TheHeader->Size = *Doc.Size; in yaml2offload()
56 if (Doc.EntryOffset) in yaml2offload()
57 TheHeader->EntryOffset = *Doc.EntryOffset; in yaml2offload()
58 if (Doc.EntrySize) in yaml2offload()
59 TheHeader->EntrySize = *Doc.EntrySize; in yaml2offload()
H A DArchiveEmitter.cpp20 bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH) { in yaml2archive() argument
21 Out.write(Doc.Magic.data(), Doc.Magic.size()); in yaml2archive()
23 if (Doc.Content) { in yaml2archive()
24 Doc.Content->writeAsBinary(Out); in yaml2archive()
28 if (!Doc.Members) in yaml2archive()
37 for (const Archive::Child &C : *Doc.Members) { in yaml2archive()
H A DELFEmitter.cpp203 ELFYAML::Object &Doc; member in __anon7f56f2470111::ELFState
356 Doc.Chunks.insert( in ELFState()
397 if (Doc.Symbols) { in ELFState()
403 if (Doc.DWARF) in ELFState()
444 Doc.Chunks.insert(Doc.Chunks.end() - 1, std::move(Sec)); in ELFState()
483 if (Doc.Header.EPhOff) in writeELFHeader()
497 if (Doc.Header.EPhNum) in writeELFHeader()
986 (IsStatic && Doc.Symbols) || (!IsStatic && Doc.DynamicSymbols); in initSymtabSectionHeader()
1105 if (Doc.DWARF && shouldEmitDWARF(*Doc.DWARF, Name)) { in initDWARFSectionHeader()
1873 if (Doc.Symbols) in buildSymbolIndexes()
[all …]
H A DDXContainerEmitter.cpp218 bool yaml2dxcontainer(DXContainerYAML::Object &Doc, raw_ostream &Out, in yaml2dxcontainer() argument
220 DXContainerWriter Writer(Doc); in yaml2dxcontainer()
/openbsd/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A Dyaml2obj.h65 bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH);
66 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
67 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH,
69 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH);
70 bool yaml2minidump(MinidumpYAML::Object &Doc, raw_ostream &Out,
72 bool yaml2offload(OffloadYAML::Binary &Doc, raw_ostream &Out, ErrorHandler EH);
73 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
74 bool yaml2xcoff(XCOFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
75 bool yaml2dxcontainer(DXContainerYAML::Object &Doc, raw_ostream &Out,
/openbsd/gnu/llvm/clang/utils/TableGen/
H A DClangSyntaxEmitter.cpp177 static void printDoc(llvm::StringRef Doc, llvm::raw_ostream &OS) { in printDoc() argument
178 Doc = Doc.rtrim(); in printDoc()
180 while (Line.trim().empty() && !Doc.empty()) in printDoc()
181 std::tie(Line, Doc) = Doc.split('\n'); in printDoc()
183 for (; !Line.empty() || !Doc.empty(); std::tie(Line, Doc) = Doc.split('\n')) { in printDoc()
H A DClangOptionDocEmitter.cpp399 void emitDocumentation(int Depth, const Documentation &Doc,
423 void emitDocumentation(int Depth, const Documentation &Doc, in emitDocumentation() argument
425 for (auto &O : Doc.Options) in emitDocumentation()
427 for (auto &G : Doc.Groups) in emitDocumentation()
H A DClangAttrEmitter.cpp4690 OS << Doc.Heading << "\n" << std::string(Doc.Heading.length(), '-') << "\n"; in WriteDocumentation()
4707 for (StringRef Spelling : Doc.SupportedSpellings[K]) { in WriteDocumentation()
4718 *Doc.Attribute)) in WriteDocumentation()
4724 if (!Doc.Documentation->isValueUnset("Deprecated")) { in WriteDocumentation()
4735 const StringRef ContentStr = Doc.Documentation->getValueAsString("Content"); in WriteDocumentation()
4767 const Record &Doc = *D; in EmitClangAttrDocs() local
4768 const Record *Category = Doc.getValueAsDef("Category"); in EmitClangAttrDocs()
4775 PrintFatalError(Doc.getLoc(), in EmitClangAttrDocs()
4781 Doc, Attr, GetAttributeHeadingAndSpellings(Doc, Attr, Cat))); in EmitClangAttrDocs()
4797 for (const auto &Doc : I.second) in EmitClangAttrDocs() local
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A DYAMLParser.h181 std::unique_ptr<Document> &Doc;
597 return Doc == Other.Doc;
604 assert(Doc && "incrementing iterator past the end.");
605 if (!(*Doc)->skip()) {
606 Doc->reset(nullptr);
608 Stream &S = (*Doc)->stream;
609 Doc->reset(new Document(S));
614 Document &operator*() { return **Doc; }
616 std::unique_ptr<Document> &operator->() { return *Doc; }
619 bool isAtEnd() const { return !Doc || !*Doc; } in isAtEnd()
[all …]
/openbsd/gnu/llvm/clang/include/clang/Tooling/
H A DReplacementsYaml.h64 clang::tooling::TranslationUnitReplacements &Doc) { in LLVM_YAML_IS_SEQUENCE_VECTOR()
65 Io.mapRequired("MainSourceFile", Doc.MainSourceFile); in LLVM_YAML_IS_SEQUENCE_VECTOR()
66 Io.mapRequired("Replacements", Doc.Replacements); in LLVM_YAML_IS_SEQUENCE_VECTOR()
H A DDiagnosticsYaml.h98 static void mapping(IO &Io, clang::tooling::TranslationUnitDiagnostics &Doc) { in LLVM_YAML_IS_SEQUENCE_VECTOR()
99 Io.mapRequired("MainSourceFile", Doc.MainSourceFile); in LLVM_YAML_IS_SEQUENCE_VECTOR()
100 Io.mapRequired("Diagnostics", Doc.Diagnostics); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/openbsd/gnu/llvm/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp55 static void mapping(IO &Io, NormalizedAtomicChange &Doc) { in mapping()
56 Io.mapRequired("Key", Doc.Key); in mapping()
57 Io.mapRequired("FilePath", Doc.FilePath); in mapping()
58 Io.mapRequired("Error", Doc.Error); in mapping()
59 Io.mapRequired("InsertedHeaders", Doc.InsertedHeaders); in mapping()
60 Io.mapRequired("RemovedHeaders", Doc.RemovedHeaders); in mapping()
61 Io.mapRequired("Replacements", Doc.Replaces); in mapping()
68 static void mapping(IO &Io, clang::tooling::AtomicChange &Doc) { in mapping()
70 Keys(Io, Doc); in mapping()
/openbsd/gnu/llvm/llvm/lib/Support/
H A DYAMLParser.cpp1935 for (Document &Doc : *this) in skip()
1936 Doc.skip(); in skip()
1941 : Doc(D), TypeID(Type), Anchor(A), Tag(T) { in Node()
1961 Doc->getTagMap().find(TagHandle); in getVerbatimTag()
1962 if (It != Doc->getTagMap().end()) in getVerbatimTag()
1992 return Doc->peekNext(); in peekNext()
1996 return Doc->getNext(); in getNext()
2000 return Doc->parseBlockNode(); in parseBlockNode()
2004 return Doc->NodeAllocator; in getAllocator()
2008 Doc->setError(Msg, Tok); in setError()
[all …]
/openbsd/gnu/llvm/llvm/utils/TableGen/
H A DDXILEmitter.cpp37 StringRef Doc; // the documentation description of this parameter member
51 StringRef Doc; // the documentation description of this instruction member
88 Doc = R->getValueAsString("doc"); in DXILOperationData()
110 Doc = R->getValueAsString("doc"); in DXILParam()
152 OS << DXILOp.Name << " = " << DXILOp.DXILOpID << ", // " << DXILOp.Doc in emitDXILOpEnum()
/openbsd/gnu/llvm/llvm/tools/llvm-tapi-diff/
H A DDiffEngine.cpp222 for (auto Doc : Interface->documents()) { in getSingleIF() local
226 InlineDoc(Doc->getInstallName(), getSingleIF(Doc.get(), Order)))); in getSingleIF()
532 if (InlineDoc *Doc = dyn_cast<InlineDoc>(Item.get())) in printDifferences() local
533 if (!Doc->DocValues.empty()) { in printDifferences()
534 OS << Indent << "\t" << Doc->InstallName << "\n"; in printDifferences()
535 printDifferences(OS, std::move(Doc->DocValues), 2); in printDifferences()
/openbsd/gnu/llvm/clang/lib/Basic/
H A DSarif.cpp415 json::Object Doc{ in createDocument() local
420 Doc["runs"] = json::Array(Runs); in createDocument()
421 return Doc; in createDocument()
/openbsd/gnu/usr.bin/perl/ext/Hash-Util/
H A DChanges7 Doc Fixes.
/openbsd/gnu/usr.bin/perl/dist/SelfLoader/
H A DChanges36 - Doc patch. This is SelfLoader, not AutoLoader.
/openbsd/gnu/llvm/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h32 Document *Doc; member
80 Document *getDocument() const { return KindAndDoc->Doc; } in getDocument()
/openbsd/gnu/usr.sbin/mkhybrid/src/
H A Dmore.mapping254 .w51 Raw 'WPC2' '.WP5' "WordPerfect - WordPerfect PC 5.1 Doc (application/wordperfect5.1)"
259 .wp Raw 'WPC2' '.WP5' "WordPerfect - WordPerfect PC 5.1 Doc (application/wordperfect5.1)"
260 .wp4 Raw 'WPC2' '.WP4' "WordPerfect - WordPerfect PC 4.2 Doc"
261 .wp5 Raw 'WPC2' '.WP5' "WordPerfect - WordPerfect PC 5.x Doc (application/wordperfect5.1)"
262 .wp6 Raw 'WPC2' '.WP6' "WordPerfect - WordPerfect PC 6.x Doc"
/openbsd/gnu/usr.bin/perl/dist/Safe/
H A DChanges9 - Doc and presentation nits
12 - Doc and test fixes for newer perls
/openbsd/gnu/llvm/llvm/lib/WindowsManifest/
H A DWindowsManifestMerger.cpp616 for (auto &Doc : MergedDocs) in ~WindowsManifestMergerImpl() local
617 xmlFreeDoc(Doc); in ~WindowsManifestMergerImpl()
/openbsd/gnu/gcc/gcc/config/mips/
H A D4k.md7 ;; Doc no: MD00016, Rev 1.18, Nov 15, 2004."
/openbsd/gnu/usr.bin/perl/dist/Test/
H A DChangeLog34 * Doc note about the danger of "ok Foo->can('bar');", as helpfully

1234