| /freebsd/contrib/file/magic/Magdir/ |
| H A D | sgml | 20 >>19 search/4096 \<urlset XML Sitemap document text 38 >19 search/4096/cWbt \<!doctype\ html XHTML document text 43 >19 search/4096/cWbt \<html\ xmlns= XHTML document text 50 # HyperText Markup Language (HTML) is an SGML document type, 53 0 search/4096/cWt \<!doctype\ html HTML document text 58 0 string/cWt \<!doctype\ html HTML document text 61 0 string/ct \<html> HTML document text 65 >&0 search/4096/cWt \<!doctype\ html HTML document text 68 >&0 search/4096/ct \<html> HTML document text 71 # SVG document [all …]
|
| H A D | tex | 42 0 search/4096 \\input TeX document text 45 0 search/4096 \\begin LaTeX document text 48 0 search/4096 \\section LaTeX document text 51 0 search/4096 \\setlength LaTeX document text 54 0 search/4096 \\documentstyle LaTeX document text 57 0 search/4096 \\chapter LaTeX document text 60 0 search/4096 \\documentclass LaTeX 2e document text 69 0 search/4096 %\ -*-latex-*- LaTeX document text 72 # Tex document, from Hendrik Scholz <hendrik@scholz.net> 73 0 search/1 \\ifx TeX document text [all …]
|
| H A D | palm | 78 # Variety of PalmOS document types 81 60 string BVokBDIC BDicty PalmOS document 83 60 string DB99DBOS DB PalmOS document 85 60 string vIMGView FireViewer/ImageViewer PalmOS document 87 60 string PmDBPmDB HanDBase PalmOS document 89 60 string InfoINDB InfoView PalmOS document 91 60 string ToGoToGo iSilo PalmOS document 93 60 string JfDbJBas JFile PalmOS document 95 60 string JfDbJFil JFile Pro PalmOS document 97 60 string DATALSdb List PalmOS document [all …]
|
| H A D | locoscript | 7 0 string JOY\x01\x01 LocoScript 1 document 8 0 string JOY\x01\x02 LocoScript 2 document 9 0 string JOY\x01\x04 LocoScript 3 document 10 0 string JOY\x01\x06 LocoScript 4 document 11 0 string DOC\x01\x01 LocoScript PC document 12 0 string DOC\x01\x03 LocoScript Professional document
|
| H A D | pdf | 12 0 string %PDF- PDF document 20 0 string \012%PDF- PDF document 28 0 string \xef\xbb\xbf%PDF- PDF document (UTF-8) 38 0 string %FDF- FDF document 45 0 search/1024 %PDF- PDF document
|
| H A D | wordprocessors | 21 >112 ubeshort =0x0100 Microsoft Works 1-3 (DOS) or 2 (Windows) document 45 # Note: called "COSMI document (generic)" by TrID 46 0 string/b LCP COSMI document 72 # pointer to document area like: 10h 73 >>>4 ulelong !0x10 \b, at %#x document area 78 # no document area, so point to end of file; so this is file size like: 23381 2978 32835 3355 3775 … 86 >>9 byte 10 WordPerfect document 129 # TODO: skip DROID x-fmt-395-signature-id-132.wpg by check for existing document area 138 # pointer to document area like: 10h 1Ah 139 >>>4 ulelong !0x1A \b, at %#x document area [all …]
|
| H A D | perl | 47 0 search/1024/W \=pod\n Perl POD document text 48 0 search/1024/W \n\=pod\n Perl POD document text 49 0 search/1024/W \=head1\ Perl POD document text 50 0 search/1024/W \n\=head1\ Perl POD document text 51 0 search/1024/W \=head2\ Perl POD document text 52 0 search/1024/W \n\=head2\ Perl POD document text 53 0 search/1024/W \=encoding\ Perl POD document text 54 0 search/1024/W \n\=encoding\ Perl POD document text
|
| /freebsd/contrib/libyaml/src/ |
| H A D | loader.c | 9 yaml_parser_load(yaml_parser_t *parser, yaml_document_t *document); 87 yaml_parser_load(yaml_parser_t *parser, yaml_document_t *document) in yaml_parser_load() argument 92 assert(document); /* Non-NULL document object is expected. */ in yaml_parser_load() 94 memset(document, 0, sizeof(yaml_document_t)); in yaml_parser_load() 95 if (!STACK_INIT(parser, document->nodes, yaml_node_t*)) in yaml_parser_load() 116 parser->document = document; in yaml_parser_load() 121 parser->document = NULL; in yaml_parser_load() 128 yaml_document_delete(document); in yaml_parser_load() 129 parser->document = NULL; in yaml_parser_load() 192 parser->document->version_directive in yaml_parser_load_document() [all …]
|
| H A D | dumper.c | 15 yaml_emitter_dump(yaml_emitter_t *emitter, yaml_document_t *document); 112 yaml_emitter_dump(yaml_emitter_t *emitter, yaml_document_t *document) in yaml_emitter_dump() argument 118 assert(document); /* Non-NULL emitter object is expected. */ in yaml_emitter_dump() 120 emitter->document = document; in yaml_emitter_dump() 126 if (STACK_EMPTY(emitter, document->nodes)) { in yaml_emitter_dump() 135 * (document->nodes.top - document->nodes.start)); in yaml_emitter_dump() 138 * (document->nodes.top - document->nodes.start)); in yaml_emitter_dump() 140 DOCUMENT_START_EVENT_INIT(event, document->version_directive, in yaml_emitter_dump() 141 document->tag_directives.start, document->tag_directives.end, in yaml_emitter_dump() 142 document->start_implicit, mark, mark); in yaml_emitter_dump() [all …]
|
| H A D | api.c | 1036 yaml_document_initialize(yaml_document_t *document, in yaml_document_initialize() argument 1059 assert(document); /* Non-NULL document object is expected. */ in yaml_document_initialize() 1097 DOCUMENT_INIT(*document, nodes.start, nodes.end, version_directive_copy, in yaml_document_initialize() 1123 yaml_document_delete(yaml_document_t *document) in yaml_document_delete() argument 1127 assert(document); /* Non-NULL document object is expected. */ in yaml_document_delete() 1129 while (!STACK_EMPTY(&context, document->nodes)) { in yaml_document_delete() 1130 yaml_node_t node = POP(&context, document->nodes); in yaml_document_delete() 1146 STACK_DEL(&context, document->nodes); in yaml_document_delete() 1148 yaml_free(document->version_directive); in yaml_document_delete() 1149 for (tag_directive = document->tag_directives.start; in yaml_document_delete() [all …]
|
| H A D | yaml_private.h | 611 #define DOCUMENT_INIT(document,document_nodes_start,document_nodes_end, \ argument 615 (memset(&(document), 0, sizeof(yaml_document_t)), \ 616 (document).nodes.start = (document_nodes_start), \ 617 (document).nodes.end = (document_nodes_end), \ 618 (document).nodes.top = (document_nodes_start), \ 619 (document).version_directive = (document_version_directive), \ 620 (document).tag_directives.start = (document_tag_directives_start), \ 621 (document).tag_directives.end = (document_tag_directives_end), \ 622 (document).start_implicit = (document_start_implicit), \ 623 (document).end_implicit = (document_end_implicit), \ [all …]
|
| /freebsd/sys/contrib/libsodium/test/default/ |
| H A D | index.html.tpl | 47 var p = document.createElement('p'); 52 p.appendChild(document.createTextNode(found)); 53 document.getElementById('test-res').appendChild(p); 59 hn.appendChild(document.createTextNode(' - PASSED (time: ' + duration + ' ms)')); 62 hn.appendChild(document.createTextNode(' - FAILED')); 68 hn = document.getElementsByTagName('h1')[0]; 69 hn.appendChild(document.createTextNode('Test: ' + tname)); 88 var s = document.getElementsByTagName('script')[0]; 89 var st = document.createElement('script');
|
| /freebsd/tools/debugscripts/ |
| H A D | gdbinit.i386 | 63 document xp 124 document xxp 155 document xp0 158 document xp1 161 document xp2 164 document xp3 167 document xp4 196 document f0 199 document f1 202 document f2 [all …]
|
| H A D | gdbinit.kernel | 7 document pname 53 document bpp 122 document bpl 130 document bp 138 document bpd 141 document bpl 183 document bx 192 document ddb 233 document ps 275 document defproc [all …]
|
| /freebsd/contrib/libyaml/tests/ |
| H A D | run-loader.c | 25 yaml_document_t document; in main() local 42 if (!yaml_parser_load(&parser, &document)) { in main() 47 done = (!yaml_document_get_root_node(&document)); in main() 49 yaml_document_delete(&document); in main()
|
| H A D | example-reformatter-alt.c | 18 yaml_document_t document; in main() local 24 memset(&document, 0, sizeof(document)); in main() 91 if (!yaml_parser_load(&parser, &document)) in main() 96 if (!yaml_document_get_root_node(&document)) { in main() 102 if (!yaml_emitter_dump(&emitter, &document)) in main()
|
| H A D | run-dumper.c | 231 yaml_document_t document; in main() local 263 if (!yaml_parser_load(&parser, &document)) { in main() 268 done = (!yaml_document_get_root_node(&document)); in main() 271 assert(copy_document(&(documents[document_number++]), &document)); in main() 272 assert(yaml_emitter_dump(&emitter, &document) || in main() 277 yaml_document_delete(&document); in main() 294 …assert(yaml_parser_load(&parser, &document) || print_output(argv[number], buffer, written, count)); in main() 295 done = (!yaml_document_get_root_node(&document)); in main() 297 …assert(compare_documents(documents+count, &document) || print_output(argv[number], buffer, written… in main() 300 yaml_document_delete(&document); in main()
|
| H A D | ReadMe.md | 43 Prints a version directive before every document. 47 Will emit the whole document in flow style. 51 Will emit the whole document in block style. 55 Will emit block/flow style like in the original document.
|
| /freebsd/contrib/libyaml/include/ |
| H A D | yaml.h | 834 yaml_document_initialize(yaml_document_t *document, 847 yaml_document_delete(yaml_document_t *document); 862 yaml_document_get_node(yaml_document_t *document, int index); 881 yaml_document_get_root_node(yaml_document_t *document); 898 yaml_document_add_scalar(yaml_document_t *document, 915 yaml_document_add_sequence(yaml_document_t *document, 931 yaml_document_add_mapping(yaml_document_t *document, 945 yaml_document_append_sequence_item(yaml_document_t *document, 960 yaml_document_append_mapping_pair(yaml_document_t *document, 1303 yaml_document_t *document; member [all …]
|
| /freebsd/crypto/heimdal/lib/wind/ |
| H A D | rfc4013.txt | 16 This document specifies an Internet standards track protocol for the 28 This document describes how to prepare Unicode strings representing 29 user names and passwords for comparison. The document defines the 42 document defines rules for preparing internationalized user names and 49 This document defines the "SASLprep" profile of the "stringprep" 69 This document does not alter the technical specification of any 71 algorithm described in this document needs to explicitly incorporate 72 this document and provide precise details as to where and how this 83 Character names in this document use the notation for code points and 208 This document details the "SASLprep" profile of the [StringPrep] [all …]
|
| H A D | rfc3491.txt | 19 This document specifies an Internet standards track protocol for the 31 This document describes how to prepare internationalized domain name 40 This document specifies processing rules that will allow users to 88 in this document are to be interpreted as described in BCP 14, RFC 204 document vastly increases the number of characters available in 241 This document. 250 Committee contributed ideas that went into this document. 253 document. That team and its advisors include: 347 This document and translations of it may be copied and furnished to 353 document itself may not be modified in any way, such as by removing [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | HTMLLogger.js | 21 for (root of document.querySelectorAll('[data-selection]')) 78 return inflate(document.getElementById(tmpl.dataset.use), data, parent, next); 151 var root = document.querySelector(rootSelector); 187 document.querySelectorAll('.' + cls).forEach(elt => elt.classList.remove(cls)); 188 document.querySelectorAll(query).forEach(elt => elt.classList.add(cls)); 218 document.adoptedStyleSheets.push(sheet);
|
| /freebsd/contrib/lyaml/lib/lyaml/ |
| H A D | init.lua | 228 dump_document = function(self, document) 230 self:dump_node(document) 277 for _, document in ipairs(documents) do 278 dumper:dump_document(document) 497 local document = parser:load_node() 498 if document == nil then 507 documents[#documents + 1] = document
|
| /freebsd/sys/contrib/device-tree/Bindings/ |
| H A D | ABI.rst | 8 summary document: 39 1) This document is intended as a general familiarization with the process as 41 devicetree maintainers overrules this document. In that situation, a patch 42 updating this document would be appreciated.
|
| /freebsd/contrib/libxo/xohtml/external/ |
| H A D | jquery.js | 19 var document = window.document, 118 if ( selector === "body" && !context && document.body ) { 119 this.context = document; 120 this[0] = document.body; 143 doc = ( context ? context.ownerDocument || context : document ); 151 selector = [ document.createElement( ret[1] ) ]; 167 elem = document.getElementById( match[2] ); 183 this.context = document; 424 if ( !document.body ) { 437 readyList.fireWith( document, [ jQuery ] ); [all …]
|