Home
last modified time | relevance | path

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

1234

/openbsd-src/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()
36 return yaml2archive(*Doc.Arch, Out, ErrHandler); in convertYAML()
37 if (Doc.Elf) in convertYAML()
38 return yaml2elf(*Doc.Elf, Out, ErrHandler, MaxSize); in convertYAML()
39 if (Doc.Coff) in convertYAML()
40 return yaml2coff(*Doc.Coff, Out, ErrHandler); in convertYAML()
41 if (Doc.MachO || Doc.FatMachO) in convertYAML()
42 return yaml2macho(Doc, Out, ErrHandler); 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 __anonb6441e910111::ELFState
323 static bool writeELF(raw_ostream &OS, ELFYAML::Object &Doc,
340 : Doc(D), ErrHandler(EH) { in ELFState()
344 if (Doc.Header.SectionHeaderStringTable) { in ELFState()
345 SectionHeaderStringTableName = *Doc.Header.SectionHeaderStringTable; in ELFState()
346 if (*Doc.Header.SectionHeaderStringTable == ".strtab") in ELFState()
348 else if (*Doc.Header.SectionHeaderStringTable == ".dynstr") in ELFState()
353 std::vector<ELFYAML::Section *> Sections = Doc.getSections(); in ELFState()
356 Doc.Chunks.insert( in ELFState()
357 Doc.Chunks.begin(), in ELFState()
[all …]
H A DDXContainerEmitter.cpp218 bool yaml2dxcontainer(DXContainerYAML::Object &Doc, raw_ostream &Out, in yaml2dxcontainer() argument
220 DXContainerWriter Writer(Doc); in yaml2dxcontainer()
/openbsd-src/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-src/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.cpp4689 const DocumentationData &Doc, raw_ostream &OS) { in WriteDocumentation() argument
4690 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()
4727 const Record &Deprecated = *Doc.Documentation->getValueAsDef("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()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DYAMLParser.h181 std::unique_ptr<Document> &Doc;
591 document_iterator(std::unique_ptr<Document> &D) : Doc(&D) {} in document_iterator()
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; }
[all …]
/openbsd-src/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-src/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-src/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()
1951 Ret = std::string(Doc->getTagMap().find("!")->second); in getVerbatimTag()
1955 Ret = std::string(Doc->getTagMap().find("!!")->second); in getVerbatimTag()
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()
[all …]
/openbsd-src/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-src/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-src/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-src/gnu/usr.bin/perl/ext/Hash-Util/
H A DChanges7 Doc Fixes.
/openbsd-src/gnu/usr.bin/perl/dist/SelfLoader/
H A DChanges36 - Doc patch. This is SelfLoader, not AutoLoader.
/openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h32 Document *Doc; member
80 Document *getDocument() const { return KindAndDoc->Doc; } in getDocument()
/openbsd-src/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-src/gnu/usr.bin/perl/dist/Safe/
H A DChanges9 - Doc and presentation nits
12 - Doc and test fixes for newer perls
/openbsd-src/gnu/llvm/llvm/lib/WindowsManifest/
H A DWindowsManifestMerger.cpp616 for (auto &Doc : MergedDocs) in ~WindowsManifestMergerImpl() local
617 xmlFreeDoc(Doc); in ~WindowsManifestMergerImpl()
/openbsd-src/gnu/usr.bin/perl/dist/Test/
H A DChangeLog34 * Doc note about the danger of "ok Foo->can('bar');", as helpfully
/openbsd-src/gnu/gcc/gcc/config/mips/
H A D4k.md7 ;; Doc no: MD00016, Rev 1.18, Nov 15, 2004."

1234