Home
last modified time | relevance | path

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

123456

/netbsd-src/external/apache2/llvm/dist/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 DELFEmitter.cpp192 ELFYAML::Object &Doc; member in __anonae3a78450111::ELFState
312 static bool writeELF(raw_ostream &OS, ELFYAML::Object &Doc,
329 : Doc(D), ErrHandler(EH) { in ELFState()
330 std::vector<ELFYAML::Section *> Sections = Doc.getSections(); in ELFState()
333 Doc.Chunks.insert( in ELFState()
334 Doc.Chunks.begin(), in ELFState()
340 for (size_t I = 0; I < Doc.Chunks.size(); ++I) { in ELFState()
341 const std::unique_ptr<ELFYAML::Chunk> &C = Doc.Chunks[I]; in ELFState()
367 if (Doc.DynamicSymbols) in ELFState()
369 if (Doc.Symbols) in ELFState()
[all …]
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 DMachOEmitter.cpp635 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH) { in yaml2macho() argument
636 UniversalWriter Writer(Doc); in yaml2macho()
H A DCOFFEmitter.cpp603 bool yaml2coff(llvm::COFFYAML::Object &Doc, raw_ostream &Out, in yaml2coff() argument
605 COFFParser CP(Doc, ErrHandler); in yaml2coff()
H A DWasmEmitter.cpp682 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH) { in yaml2wasm() argument
683 WasmWriter Writer(Doc, EH); in yaml2wasm()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A Dyaml2obj.h53 bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH);
54 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
55 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH,
57 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH);
58 bool yaml2minidump(MinidumpYAML::Object &Doc, raw_ostream &Out,
60 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
/netbsd-src/external/apache2/llvm/dist/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.cpp350 void emitDocumentation(int Depth, const Documentation &Doc,
371 void emitDocumentation(int Depth, const Documentation &Doc, in emitDocumentation() argument
373 for (auto &O : Doc.Options) in emitDocumentation()
375 for (auto &G : Doc.Groups) in emitDocumentation()
H A DClangAttrEmitter.cpp4335 const DocumentationData &Doc, raw_ostream &OS) { in WriteDocumentation() argument
4336 OS << Doc.Heading << "\n" << std::string(Doc.Heading.length(), '-') << "\n"; in WriteDocumentation()
4351 for (StringRef Spelling : Doc.SupportedSpellings[K]) { in WriteDocumentation()
4362 *Doc.Attribute)) in WriteDocumentation()
4368 if (!Doc.Documentation->isValueUnset("Deprecated")) { in WriteDocumentation()
4371 const Record &Deprecated = *Doc.Documentation->getValueAsDef("Deprecated"); in WriteDocumentation()
4379 const StringRef ContentStr = Doc.Documentation->getValueAsString("Content"); in WriteDocumentation()
4405 const Record &Doc = *D; in EmitClangAttrDocs() local
4406 const Record *Category = Doc.getValueAsDef("Category"); in EmitClangAttrDocs()
4413 PrintFatalError(Doc.getLoc(), in EmitClangAttrDocs()
[all …]
/netbsd-src/external/apache2/llvm/dist/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->get(); }
616 std::unique_ptr<Document> &operator->() { return *Doc; }
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/
H A DReplacementsYaml.h65 clang::tooling::TranslationUnitReplacements &Doc) { in LLVM_YAML_IS_SEQUENCE_VECTOR()
66 Io.mapRequired("MainSourceFile", Doc.MainSourceFile); in LLVM_YAML_IS_SEQUENCE_VECTOR()
67 Io.mapRequired("Replacements", Doc.Replacements); in LLVM_YAML_IS_SEQUENCE_VECTOR()
H A DDiagnosticsYaml.h99 static void mapping(IO &Io, clang::tooling::TranslationUnitDiagnostics &Doc) { in LLVM_YAML_IS_SEQUENCE_VECTOR()
100 Io.mapRequired("MainSourceFile", Doc.MainSourceFile); in LLVM_YAML_IS_SEQUENCE_VECTOR()
101 Io.mapRequired("Diagnostics", Doc.Diagnostics); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DYAMLParser.cpp1885 : Doc(D), TypeID(Type), Anchor(A), Tag(T) { in Node()
1895 Ret = std::string(Doc->getTagMap().find("!")->second); in getVerbatimTag()
1899 Ret = std::string(Doc->getTagMap().find("!!")->second); in getVerbatimTag()
1905 Doc->getTagMap().find(TagHandle); in getVerbatimTag()
1906 if (It != Doc->getTagMap().end()) in getVerbatimTag()
1936 return Doc->peekNext(); in peekNext()
1940 return Doc->getNext(); in getNext()
1944 return Doc->parseBlockNode(); in parseBlockNode()
1948 return Doc->NodeAllocator; in getAllocator()
1952 Doc->setError(Msg, Tok); in setError()
[all …]
/netbsd-src/external/mit/expat/dist/win32/
H A Dexpat.iss74 Flags: ignoreversion; Source: doc\*.html; DestDir: "{app}\Doc"
75 Flags: ignoreversion; Source: doc\*.css; DestDir: "{app}\Doc"
76 Flags: ignoreversion; Source: doc\*.xml; DestDir: "{app}\Doc"
H A DMANIFEST.txt13 <top>\Doc\ API documentation for developers.
/netbsd-src/distrib/acorn32/stand/BtNetBSD/!BtNetBSD/Docs/
H A DFiles15 Docs.FBInstall - Doc on installing fastboot support
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h32 Document *Doc; member
80 Document *getDocument() const { return KindAndDoc->Doc; } in getDocument()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/WindowsManifest/
H A DWindowsManifestMerger.cpp618 for (auto &Doc : MergedDocs) in ~WindowsManifestMergerImpl() local
619 xmlFreeDoc(Doc); in ~WindowsManifestMergerImpl()
/netbsd-src/crypto/external/bsd/openssh/dist/
H A Dlpk-user-example.txt2 Post to ML -> User Made Quick Install Doc.
/netbsd-src/external/gpl3/gcc/dist/gcc/config/mips/
H A D4k.md7 ;; Doc no: MD00016, Rev 1.18, Nov 15, 2004."
H A D5k.md7 ;; Doc no: MD00012, Rev 2.09, Jan 28, 2005."
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/mips/
H A D4k.md7 ;; Doc no: MD00016, Rev 1.18, Nov 15, 2004."
H A D5k.md7 ;; Doc no: MD00012, Rev 2.09, Jan 28, 2005."

123456