| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | yaml2obj.cpp | 27 yaml::YamlObjectFile Doc; in convertYAML() local 28 YIn >> Doc; in convertYAML() 34 if (Doc.Arch) in convertYAML() 35 return yaml2archive(*Doc.Arch, Out, ErrHandler); in convertYAML() 36 if (Doc.Elf) in convertYAML() 37 return yaml2elf(*Doc.Elf, Out, ErrHandler, MaxSize); in convertYAML() 38 if (Doc.Coff) in convertYAML() 39 return yaml2coff(*Doc.Coff, Out, ErrHandler); in convertYAML() 40 if (Doc.Goff) in convertYAML() 41 return yaml2goff(*Doc.Goff, Out, ErrHandler); in convertYAML() [all …]
|
| H A D | OffloadEmitter.cpp | 20 bool yaml2offload(Binary &Doc, raw_ostream &Out, ErrorHandler EH) { in yaml2offload() argument 21 for (const auto &Member : Doc.Members) { in yaml2offload() 44 if (Doc.Version) in yaml2offload() 45 TheHeader->Version = *Doc.Version; in yaml2offload() 46 if (Doc.Size) in yaml2offload() 47 TheHeader->Size = *Doc.Size; in yaml2offload() 48 if (Doc.EntryOffset) in yaml2offload() 49 TheHeader->EntryOffset = *Doc.EntryOffset; in yaml2offload() 50 if (Doc.EntrySize) in yaml2offload() 51 TheHeader->EntrySize = *Doc.EntrySize; in yaml2offload()
|
| H A D | ArchiveEmitter.cpp | 19 bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH) { in yaml2archive() argument 20 Out.write(Doc.Magic.data(), Doc.Magic.size()); in yaml2archive() 22 if (Doc.Content) { in yaml2archive() 23 Doc.Content->writeAsBinary(Out); in yaml2archive() 27 if (!Doc.Members) in yaml2archive() 36 for (const Archive::Child &C : *Doc.Members) { in yaml2archive()
|
| H A D | ELFEmitter.cpp | 207 ELFYAML::Object &Doc; member in __anone951591a0111::ELFState 327 static bool writeELF(raw_ostream &OS, ELFYAML::Object &Doc, 344 : Doc(D), ErrHandler(EH) { in ELFState() 348 if (Doc.Header.SectionHeaderStringTable) { in ELFState() 349 SectionHeaderStringTableName = *Doc.Header.SectionHeaderStringTable; in ELFState() 350 if (*Doc.Header.SectionHeaderStringTable == ".strtab") in ELFState() 352 else if (*Doc.Header.SectionHeaderStringTable == ".dynstr") in ELFState() 357 std::vector<ELFYAML::Section *> Sections = Doc.getSections(); in ELFState() 360 Doc.Chunks.insert( in ELFState() 361 Doc.Chunks.begin(), in ELFState() [all …]
|
| H A D | GOFFEmitter.cpp | 183 GOFFState(raw_ostream &OS, GOFFYAML::Object &Doc, in GOFFState() argument 185 : GW(OS), Doc(Doc), ErrHandler(ErrHandler), HasError(false) {} in GOFFState() 192 static bool writeGOFF(raw_ostream &OS, GOFFYAML::Object &Doc, 197 GOFFYAML::Object &Doc; member in __anonde1c33e50111::GOFFState 256 writeHeader(Doc.Header); in writeObject() 263 bool GOFFState::writeGOFF(raw_ostream &OS, GOFFYAML::Object &Doc, in writeGOFF() argument 265 GOFFState State(OS, Doc, ErrHandler); in writeGOFF() 273 bool yaml2goff(llvm::GOFFYAML::Object &Doc, raw_ostream &Out, in yaml2goff() argument 275 return GOFFState::writeGOFF(Out, Doc, ErrHandler); in yaml2goff()
|
| H A D | DXContainerEmitter.cpp | 375 bool yaml2dxcontainer(DXContainerYAML::Object &Doc, raw_ostream &Out, in yaml2dxcontainer() argument 377 DXContainerWriter Writer(Doc); in yaml2dxcontainer()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | yaml2obj.h | 70 LLVM_ABI bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, 72 LLVM_ABI bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, 74 LLVM_ABI bool yaml2goff(GOFFYAML::Object &Doc, raw_ostream &Out, 76 LLVM_ABI bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH, 78 LLVM_ABI bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, 80 LLVM_ABI bool yaml2minidump(MinidumpYAML::Object &Doc, raw_ostream &Out, 82 LLVM_ABI bool yaml2offload(OffloadYAML::Binary &Doc, raw_ostream &Out, 84 LLVM_ABI bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, 86 LLVM_ABI bool yaml2xcoff(XCOFFYAML::Object &Doc, raw_ostream &Out, 88 LLVM_ABI bool yaml2dxcontainer(DXContainerYAML::Object &Doc, raw_ostream &Out,
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
| H A D | DXIL.td | 373 string Doc = ""; 405 let Doc = "Returns the absolute value of the input."; 415 let Doc = "Clamps a single or double precision floating point value to " 426 let Doc = "Determines if the specified value is NaN."; 435 let Doc = "Determines if the specified value is infinite."; 445 let Doc = "Determines if the specified value is finite."; 454 let Doc = "Determines if the specified value is normal."; 463 let Doc = "Returns cosine(theta) for theta in radians."; 473 let Doc = "Returns sine(theta) for theta in radians."; 483 let Doc = "Returns tangent(theta) for theta in radians."; [all …]
|
| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangSyntaxEmitter.cpp | 178 static void printDoc(StringRef Doc, raw_ostream &OS) { in printDoc() argument 179 Doc = Doc.rtrim(); in printDoc() 181 while (Line.trim().empty() && !Doc.empty()) in printDoc() 182 std::tie(Line, Doc) = Doc.split('\n'); in printDoc() 184 for (; !Line.empty() || !Doc.empty(); std::tie(Line, Doc) = Doc.split('\n')) { in printDoc()
|
| H A D | ClangOptionDocEmitter.cpp | 418 void emitDocumentation(int Depth, const Documentation &Doc, 436 void emitDocumentation(int Depth, const Documentation &Doc, in emitDocumentation() argument 438 for (auto &O : Doc.Options) in emitDocumentation() 440 for (auto &G : Doc.Groups) in emitDocumentation()
|
| H A D | ClangAttrEmitter.cpp | 5293 const DocumentationData &Doc, raw_ostream &OS) { in WriteDocumentation() argument 5294 if (StringRef Label = Doc.Documentation->getValueAsString("Label"); in WriteDocumentation() 5297 OS << Doc.Heading << "\n" << std::string(Doc.Heading.length(), '-') << "\n"; in WriteDocumentation() 5315 for (StringRef Spelling : Doc.SupportedSpellings[K]) { in WriteDocumentation() 5326 *Doc.Attribute)) in WriteDocumentation() 5332 if (!Doc.Documentation->isValueUnset("Deprecated")) { in WriteDocumentation() 5335 const Record &Deprecated = *Doc.Documentation->getValueAsDef("Deprecated"); in WriteDocumentation() 5343 const StringRef ContentStr = Doc.Documentation->getValueAsString("Content"); in WriteDocumentation() 5382 const Record &Doc = *D; in EmitClangAttrDocs() local 5383 const Record *Category = Doc.getValueAsDef("Category"); in EmitClangAttrDocs() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
| H A D | AMDGPUDelayedMCExpr.cpp | 17 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()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | YAMLParser.h | 183 std::unique_ptr<Document> &Doc; 598 document_iterator(std::unique_ptr<Document> &D) : Doc(&D) {} in document_iterator() 604 return Doc == Other.Doc; 611 assert(Doc && "incrementing iterator past the end."); 612 if (!(*Doc)->skip()) { 613 Doc->reset(nullptr); 615 Stream &S = (*Doc)->stream; 616 Doc->reset(new Document(S)); 621 Document &operator*() { return **Doc; } 623 std::unique_ptr<Document> &operator->() { return *Doc; } [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
| H A D | InterfaceFile.cpp | 113 for (auto Doc : Library->documents()) in inlineLibrary() local 114 AddFwk(std::move(Doc)); in inlineLibrary() 225 for (auto &Doc : Documents) { in remove() local 226 if (Doc->getArchitectures().has(Arch)) { in remove() 275 for (auto &Doc : Documents) { in remove() local 278 if (Doc->getArchitectures() == Arch) in remove() 283 if (!Doc->getArchitectures().has(Arch)) { in remove() 284 auto NewDoc = Doc; in remove() 289 auto Result = Doc->remove(Arch); in remove() 342 for (auto &Doc : Documents) { in extract() local [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Tooling/ |
| H A D | ReplacementsYaml.h | 64 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 D | DiagnosticsYaml.h | 98 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()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/ |
| H A D | AtomicChange.cpp | 55 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/contrib/llvm-project/llvm/lib/Support/ |
| H A D | YAMLParser.cpp | 1952 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 …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-tapi-diff/ |
| H A D | DiffEngine.cpp | |
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | MemProfReader.cpp | 800 memprof::AllMemProfData Doc; in parse() local 803 Yin >> Doc; in parse() 816 for (const auto &[GUID, Record] : Doc.HeapProfileRecords) { in parse() 834 if (Doc.YamlifiedDataAccessProfiles.isEmpty()) in parse() 845 for (const auto &Record : Doc.YamlifiedDataAccessProfiles.Records) in parse() 851 for (const uint64_t Hash : Doc.YamlifiedDataAccessProfiles.KnownColdStrHashes) in parse() 856 Doc.YamlifiedDataAccessProfiles.KnownColdSymbols) in parse()
|
| /freebsd/contrib/llvm-project/clang/lib/Basic/ |
| H A D | Sarif.cpp | 416 json::Object Doc{ in createDocument() local 421 Doc["runs"] = json::Array(Runs); in createDocument() 422 return Doc; in createDocument()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | MsgPackDocument.h | 33 Document *Doc; member 81 Document *getDocument() const { return KindAndDoc->Doc; } in getDocument()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | DXILEmitter.cpp | 53 StringRef Doc; // the documentation description of this instruction member 111 Doc = R->getValueAsString("Doc"); in DXILOperationDesc()
|
| /freebsd/share/doc/psd/01.cacm/ |
| H A D | ref.bib | 91 %R Doc. 30.10.10, Project \*sGENIE\*n
|
| /freebsd/share/misc/ |
| H A D | organization.dot | 29 doccommitters [label="Doc/www Committers\ndoc-committers@FreeBSD.org"]
|