Home
last modified time | relevance | path

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

12

/src/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()
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.Goff) in convertYAML()
42 return yaml2goff(*Doc.Goff, 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()
45 if (Doc.Version) in yaml2offload()
46 TheHeader->Version = *Doc.Version; in yaml2offload()
47 if (Doc.Size) in yaml2offload()
48 TheHeader->Size = *Doc.Size; in yaml2offload()
49 if (Doc.EntryOffset) in yaml2offload()
50 TheHeader->EntryOffset = *Doc.EntryOffset; in yaml2offload()
51 if (Doc.EntrySize) in yaml2offload()
52 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.cpp210 ELFYAML::Object &Doc; member in __anon2711bccf0111::ELFState
330 static bool writeELF(raw_ostream &OS, ELFYAML::Object &Doc,
347 : Doc(D), ErrHandler(EH) { in ELFState()
351 if (Doc.Header.SectionHeaderStringTable) { in ELFState()
352 SectionHeaderStringTableName = *Doc.Header.SectionHeaderStringTable; in ELFState()
353 if (*Doc.Header.SectionHeaderStringTable == ".strtab") in ELFState()
355 else if (*Doc.Header.SectionHeaderStringTable == ".dynstr") in ELFState()
360 std::vector<ELFYAML::Section *> Sections = Doc.getSections(); in ELFState()
363 Doc.Chunks.insert( in ELFState()
364 Doc.Chunks.begin(), in ELFState()
[all …]
H A DGOFFEmitter.cpp184 GOFFState(raw_ostream &OS, GOFFYAML::Object &Doc, in GOFFState() argument
186 : GW(OS), Doc(Doc), ErrHandler(ErrHandler), HasError(false) {} in GOFFState()
193 static bool writeGOFF(raw_ostream &OS, GOFFYAML::Object &Doc,
198 GOFFYAML::Object &Doc; member in __anond3e90e3a0111::GOFFState
259 writeHeader(Doc.Header); in writeObject()
266 bool GOFFState::writeGOFF(raw_ostream &OS, GOFFYAML::Object &Doc, in writeGOFF() argument
268 GOFFState State(OS, Doc, ErrHandler); in writeGOFF()
276 bool yaml2goff(llvm::GOFFYAML::Object &Doc, raw_ostream &Out, in yaml2goff() argument
278 return GOFFState::writeGOFF(Out, Doc, ErrHandler); in yaml2goff()
H A DDXContainerEmitter.cpp284 bool yaml2dxcontainer(DXContainerYAML::Object &Doc, raw_ostream &Out, in yaml2dxcontainer() argument
286 DXContainerWriter Writer(Doc); in yaml2dxcontainer()
H A DCOFFEmitter.cpp624 bool yaml2coff(llvm::COFFYAML::Object &Doc, raw_ostream &Out, in yaml2coff() argument
626 COFFParser CP(Doc, ErrHandler); in yaml2coff()
/src/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ !
H A Dyaml2obj.h69 bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH);
70 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
71 bool yaml2goff(GOFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
72 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH,
74 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH);
75 bool yaml2minidump(MinidumpYAML::Object &Doc, raw_ostream &Out,
77 bool yaml2offload(OffloadYAML::Binary &Doc, raw_ostream &Out, ErrorHandler EH);
78 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
79 bool yaml2xcoff(XCOFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
80 bool yaml2dxcontainer(DXContainerYAML::Object &Doc, raw_ostream &Out,
/src/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ !
H A DAMDGPUDelayedMCExpr.cpp17 msgpack::Document *Doc = DN.getDocument(); in getNode() local
20 return Doc->getEmptyNode(); in getNode()
22 return Doc->getNode(static_cast<int64_t>(Val.getConstant())); in getNode()
24 return Doc->getNode(static_cast<uint64_t>(Val.getConstant())); in getNode()
26 return Doc->getNode(static_cast<bool>(Val.getConstant())); in getNode()
/src/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.cpp419 void emitDocumentation(int Depth, const Documentation &Doc,
437 void emitDocumentation(int Depth, const Documentation &Doc, in emitDocumentation() argument
439 for (auto &O : Doc.Options) in emitDocumentation()
441 for (auto &G : Doc.Groups) in emitDocumentation()
H A DClangAttrEmitter.cpp5146 const DocumentationData &Doc, raw_ostream &OS) { in WriteDocumentation() argument
5147 OS << Doc.Heading << "\n" << std::string(Doc.Heading.length(), '-') << "\n"; in WriteDocumentation()
5165 for (StringRef Spelling : Doc.SupportedSpellings[K]) { in WriteDocumentation()
5176 *Doc.Attribute)) in WriteDocumentation()
5182 if (!Doc.Documentation->isValueUnset("Deprecated")) { in WriteDocumentation()
5185 const Record &Deprecated = *Doc.Documentation->getValueAsDef("Deprecated"); in WriteDocumentation()
5193 const StringRef ContentStr = Doc.Documentation->getValueAsString("Content"); in WriteDocumentation()
5225 const Record &Doc = *D; in EmitClangAttrDocs() local
5226 const Record *Category = Doc.getValueAsDef("Category"); in EmitClangAttrDocs()
5233 PrintFatalError(Doc.getLoc(), in EmitClangAttrDocs()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/Support/ !
H A DYAMLParser.h181 std::unique_ptr<Document> &Doc;
596 document_iterator(std::unique_ptr<Document> &D) : Doc(&D) {} in document_iterator()
602 return Doc == Other.Doc;
609 assert(Doc && "incrementing iterator past the end.");
610 if (!(*Doc)->skip()) {
611 Doc->reset(nullptr);
613 Stream &S = (*Doc)->stream;
614 Doc->reset(new Document(S));
619 Document &operator*() { return **Doc; }
621 std::unique_ptr<Document> &operator->() { return *Doc; }
[all …]
/src/contrib/llvm-project/llvm/lib/TextAPI/ !
H A DInterfaceFile.cpp116 for (auto Doc : Library->documents()) in inlineLibrary() local
117 AddFwk(std::move(Doc)); in inlineLibrary()
227 for (auto &Doc : Documents) { in remove() local
228 if (Doc->getArchitectures().has(Arch)) { in remove()
274 for (auto &Doc : Documents) { in remove() local
277 if (Doc->getArchitectures() == Arch) in remove()
282 if (!Doc->getArchitectures().has(Arch)) { in remove()
283 auto NewDoc = Doc; in remove()
288 auto Result = Doc->remove(Arch); in remove()
340 for (auto &Doc : Documents) { in extract() local
[all …]
/src/contrib/llvm-project/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()
/src/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()
/src/contrib/llvm-project/llvm/lib/Support/ !
H A DYAMLParser.cpp1952 for (Document &Doc : *this) in skip()
1953 Doc.skip(); in skip()
1958 : Doc(D), TypeID(Type), Anchor(A), Tag(T) { in Node()
1968 Ret = std::string(Doc->getTagMap().find("!")->second); in getVerbatimTag()
1972 Ret = std::string(Doc->getTagMap().find("!!")->second); in getVerbatimTag()
1978 Doc->getTagMap().find(TagHandle); in getVerbatimTag()
1979 if (It != Doc->getTagMap().end()) in getVerbatimTag()
2009 return Doc->peekNext(); in peekNext()
2013 return Doc->getNext(); in getNext()
2017 return Doc->parseBlockNode(); in parseBlockNode()
[all …]
/src/contrib/llvm-project/llvm/utils/TableGen/ !
H A DDXILEmitter.cpp41 StringRef Doc; // the documentation description of this instruction member
115 Doc = R->getValueAsString("Doc"); in DXILOperationDesc()
297 OS << Op.OpName << " = " << Op.OpCode << ", // " << Op.Doc << "\n"; in emitDXILEnums()
/src/contrib/llvm-project/clang/lib/Basic/ !
H A DSarif.cpp417 json::Object Doc{ in createDocument() local
422 Doc["runs"] = json::Array(Runs); in createDocument()
423 return Doc; in createDocument()
/src/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ !
H A DMsgPackDocument.h32 Document *Doc; member
80 Document *getDocument() const { return KindAndDoc->Doc; } in getDocument()
/src/share/doc/psd/01.cacm/ !
H A Dref.bib91 %R Doc. 30.10.10, Project \*sGENIE\*n
/src/contrib/llvm-project/llvm/lib/WindowsManifest/ !
H A DWindowsManifestMerger.cpp616 for (auto &Doc : MergedDocs) in ~WindowsManifestMergerImpl() local
617 xmlFreeDoc(Doc); in ~WindowsManifestMergerImpl()
/src/share/misc/ !
H A Dorganization.dot29 doccommitters [label="Doc/www Committers\ndoc-committers@FreeBSD.org"]
/src/contrib/llvm-project/llvm/lib/Target/DirectX/ !
H A DDXIL.td242 string Doc = ""; // A short description of the operation
253 string Doc = doc; // to a short description of the operation

12