Home
last modified time | relevance | path

Searched refs:Document (Results 1 – 25 of 88) sorted by relevance

1234

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DYAMLParser.h60 class Document; variable
112 friend class Document;
115 std::unique_ptr<Document> CurrentDoc;
181 std::unique_ptr<Document> &Doc;
201 NullNode(std::unique_ptr<Document> &D) in NullNode()
289 KeyValueNode(std::unique_ptr<Document> &D) in KeyValueNode()
531 class Document {
533 Document(Stream &ParentStream);
609 Doc->reset(new Document(S));
614 Document &operator*() { return *Doc->get(); }
[all …]
/freebsd-13.1/contrib/diff/doc/
H A Dfdl.texi48 work under the conditions stated herein. The ``Document'', below,
55 Document or a portion of it, either copied verbatim, or with
60 publishers or authors of the Document to the Document's overall
71 that says that the Document is released under this License. If a
133 You may copy and distribute the Document in any medium, either
197 from that of the Document, and from those of previous versions
214 Preserve all the copyright notices of the Document.
257 Preserve all the Invariant Sections of the Document,
349 derivative works of the Document.
352 copies of the Document, then if the Document is less than one half of
[all …]
/freebsd-13.1/contrib/file/magic/Magdir/
H A Dkicad11 # KiCad Schematic Document
13 >10 byte 0x20 KiCad Schematic Document
19 # KiCad Schematic Document (Legacy)
23 >>>18 byte 0x20 KiCad Schematic Document (Legacy)
H A Ddiamond11 #0 string <list>\n<protocol\ bbn-multimedia-format> Diamond Multimedia Document
12 0 string =<list>\n<protocol\ bbn-m Diamond Multimedia Document
H A Dasterix9 >7 string WORD Words Document
14 >29 byte 0x36 Words Document
H A Dflash59 0 string AGD2\xbe\xb8\xbb\xcd\x00 Macromedia Freehand 7 Document
60 0 string AGD3\xbe\xb8\xbb\xcc\x00 Macromedia Freehand 8 Document
62 0 string AGD4\xbe\xb8\xbb\xcb\x00 Macromedia Freehand 9 Document
H A Dwordprocessors213 0 string HWP\ Document\ File Hangul (Korean) Word Processor File 3.0
226 2 string IIXPR3 Intel Quark Express Document (English)
227 2 string IIXPRa Intel Quark Express Document (Korean)
228 2 string MMXPR3 Motorola Quark Express Document (English)
230 2 string MMXPRa Motorola Quark Express Document (Korean)
234 >16 string DOCUMENT Document
268 0 string \<SCRIBUSUTF8\ Version Scribus Document
269 0 string \<SCRIBUSUTF8NEW\ Version Scribus Document
H A Dapplix8 >7 string WORDS Words Document
H A Dole2compounddocs12 >0x1A ushort !0xABAB OLE 2 Compound Document
16 >>>546 string jbjb : Microsoft Word Document
111 >>>>128 lestring16 PerfectOffice_ : WordPerfect 7-X3 presentations Master, Document or Graphic
224 # Note: "HWP Document File" signature found in FileHeader
275 >>>80 ubequad 0x131a020000000000 Visio 2000-2002 Document, stencil or template
279 >>>80 ubequad 0x141a020000000000 Visio 2003-2010 Document, stencil or template
437 >>>80 ubequad 0xff739851ad2d2002 Document
H A Dpdf4 # pdf: file(1) magic for Portable Document Format
H A Dkml33 >>30 string doc.kml Compressed Google KML Document, including resources.
H A Dsoftquad12 0 string \<!SQ\ A/E> A/E SGML Document binary
/freebsd-13.1/contrib/llvm-project/llvm/lib/TextAPI/
H A DInterfaceFile.cpp121 void InterfaceFile::addDocument(std::shared_ptr<InterfaceFile> &&Document) { in addDocument() argument
122 auto Pos = llvm::lower_bound(Documents, Document, in addDocument()
127 Document->Parent = this; in addDocument()
128 Documents.insert(Pos, Document); in addDocument()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h27 class Document; variable
32 Document *Doc;
39 friend Document; variable
80 Document *getDocument() const { return KindAndDoc->Doc; } in getDocument()
272 class Document {
289 Document() { in Document() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUPALMetadata.h26 msgpack::Document MsgPackDoc;
123 msgpack::Document *getMsgPackDoc() { return &MsgPackDoc; } in getMsgPackDoc()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUTargetStreamer.h86 virtual bool EmitHSAMetadata(msgpack::Document &HSAMetadata, bool Strict) = 0;
146 bool EmitHSAMetadata(msgpack::Document &HSAMetadata, bool Strict) override;
206 bool EmitHSAMetadata(msgpack::Document &HSAMetadata, bool Strict) override;
/freebsd-13.1/contrib/openbsm/
H A DTODO7 - Document contents of libbsm "public" data structures in libbsm man pages.
17 - Document audit_warn event arguments.
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp1870 CurrentDoc.reset(new Document(*this)); in begin()
2349 Document::Document(Stream &S) : stream(S), Root(nullptr) { in Document() function in Document
2361 bool Document::skip() { in skip()
2377 Token &Document::peekNext() { in peekNext()
2381 Token Document::getNext() { in getNext()
2389 bool Document::failed() const { in failed()
2393 Node *Document::parseBlockNode() { in parseBlockNode()
2505 bool Document::parseDirectives() { in parseDirectives()
2521 void Document::parseYAMLDirective() { in parseYAMLDirective()
2525 void Document::parseTAGDirective() { in parseTAGDirective()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp273 for (auto &Document : YS) { in parse() local
277 if (isa<yaml::NullNode>(Document.getRoot())) in parse()
280 DescriptorList = dyn_cast<yaml::MappingNode>(Document.getRoot()); in parse()
282 YS.printError(Document.getRoot(), "DescriptorList node must be a map"); in parse()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUHSAMetadataStreamer.h56 std::unique_ptr<msgpack::Document> HSAMetadataDoc =
57 std::make_unique<msgpack::Document>();
/freebsd-13.1/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackDocumentYAML.cpp237 void msgpack::Document::toYAML(raw_ostream &OS) { in toYAML()
243 bool msgpack::Document::fromYAML(StringRef S) { in fromYAML()
H A DMsgPackDocument.cpp127 bool Document::readFromBlob( in readFromBlob()
247 void Document::writeToBlob(std::string &Blob) { in writeToBlob()
/freebsd-13.1/sys/dev/ow/
H A DREADME.txt1 Quick Design Document for 1-wire bus
/freebsd-13.1/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.h83 Expected<std::unique_ptr<Remark>> parseRemark(yaml::Document &Remark);
/freebsd-13.1/share/i18n/csmapper/AST/
H A DARMSCII-7%UCS.src16 # Document version 006.en.html

1234