Home
last modified time | relevance | path

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

12

/freebsd-13.1/contrib/llvm-project/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()
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()
43 if (Doc.Minidump) in convertYAML()
45 if (Doc.Wasm) in convertYAML()
[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 DELFEmitter.cpp202 ELFYAML::Object &Doc; member in __anon95a0134e0111::ELFState
355 Doc.Chunks.insert( in ELFState()
396 if (Doc.Symbols) { in ELFState()
402 if (Doc.DWARF) in ELFState()
443 Doc.Chunks.insert(Doc.Chunks.end() - 1, std::move(Sec)); in ELFState()
482 if (Doc.Header.EPhOff) in writeELFHeader()
496 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()
1869 if (Doc.Symbols) in buildSymbolIndexes()
[all …]
H A DXCOFFEmitter.cpp333 bool yaml2xcoff(XCOFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH) { in yaml2xcoff() argument
334 XCOFFWriter Writer(Doc, Out, EH); in yaml2xcoff()
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()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A Dyaml2obj.h57 bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH);
58 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
59 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH,
61 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH);
62 bool yaml2minidump(MinidumpYAML::Object &Doc, raw_ostream &Out,
64 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
65 bool yaml2xcoff(XCOFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
/freebsd-13.1/contrib/llvm-project/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.cpp4336 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()
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()
4419 Doc, Attr, GetAttributeHeadingAndSpellings(Doc, Attr))); in EmitClangAttrDocs()
4435 for (const auto &Doc : I.second) in EmitClangAttrDocs() local
[all …]
H A DClangDiagnosticsEmitter.cpp1817 auto Doc = G->getValueAsString("Documentation"); in EmitClangDiagDocs() local
1818 if (!Doc.empty()) in EmitClangDiagDocs()
1819 OS << Doc; in EmitClangDiagDocs()
/freebsd-13.1/contrib/llvm-project/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->get(); }
616 std::unique_ptr<Document> &operator->() { return *Doc; }
619 bool isAtEnd() const { return !Doc || !*Doc; } in isAtEnd()
[all …]
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp1885 : Doc(D), TypeID(Type), Anchor(A), Tag(T) { in Node()
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()
1956 return Doc->failed(); in failed()
2147 return Key = new (getAllocator()) NullNode(Doc); in getKey()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-tapi-diff/
H A DDiffEngine.cpp223 for (auto Doc : Interface->documents()) { in getSingleIF() local
227 InlineDoc(Doc->getInstallName(), getSingleIF(Doc.get(), Order)))); in getSingleIF()
535 if (InlineDoc *Doc = dyn_cast<InlineDoc>(Item.get())) in printDifferences() local
536 if (!Doc->DocValues.empty()) { in printDifferences()
537 OS << Indent << "\t" << Doc->InstallName << "\n"; in printDifferences()
538 printDifferences(OS, std::move(Doc->DocValues), 2); in printDifferences()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h32 Document *Doc; member
80 Document *getDocument() const { return KindAndDoc->Doc; } in getDocument()
/freebsd-13.1/share/doc/psd/01.cacm/
H A Dref.bib92 %R Doc. 30.10.10, Project \*sGENIE\*n
/freebsd-13.1/contrib/llvm-project/llvm/lib/WindowsManifest/
H A DWindowsManifestMerger.cpp618 for (auto &Doc : MergedDocs) in ~WindowsManifestMergerImpl() local
619 xmlFreeDoc(Doc); in ~WindowsManifestMergerImpl()
/freebsd-13.1/share/misc/
H A Dorganization.dot30 doccommitters [label="Doc/www Committers\[email protected]"]
/freebsd-13.1/contrib/subversion/doc/programmer/
H A DWritingChangeLogs.txt31 that says, "Doc fix." The only changes you needn't log are small
/freebsd-13.1/usr.sbin/bsdconfig/include/
H A Dmessages.subr260 … drive is of a\nsupported type. For more information, consult the hardware\nguide in the Doc menu."
263 …m's configuration\nis correct. For more information, consult the hardware guide in the Doc\nmenu."
/freebsd-13.1/contrib/file/magic/Magdir/
H A Danimation1167 # http://www.grischa-hahn.homepage.t-online.de/astro/ser/SER%20Doc%20V3b.pdf

12