| /third_party/vk-gl-cts/external/vulkan-docs/src/config/loadable_html/ |
| D | extension.rb | 1 # Copyright 2016-2024 The Khronos Group Inc. 3 # SPDX-License-Identifier: Apache-2.0 5 # This script adds CSS and markup to indicate the document is (perhaps 7 # and HTML specific to the chunked HTML output target should be inserted. 15 def process document, output 17 if document.attr? 'stem' 23 <!--ChunkedSearchJSMarker--> 27 margin-left: auto; 28 margin-right: auto; 29 margin-top: 1ex; [all …]
|
| /third_party/skia/third_party/externals/expat/expat/doc/ |
| D | xmlwf.xml | 1 <!-- 10 Copyright (c) 2002-2003 Fred L. Drake, Jr. <fdrake@users.sourceforge.net> 12 Copyright (c) 2016-2021 Sebastian Pipping <sebastian@pipping.org> 19 --> 20 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" 21 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [ 24 <!-- Please adjust the date whenever revising the manpage. --> 59 <refpurpose>Determines if an XML document is well-formed</refpurpose> 69 <arg choice="plain"><option>-h</option></arg> 73 <arg choice="plain"><option>-v</option></arg> [all …]
|
| /third_party/lame/ACM/tinyxml/ |
| D | readme.txt | 11 In brief, TinyXml parses an XML document, and builds from that a 12 Document Object Model that can be read, modified, and saved. 15 your own document markups. Where HTML does a very good job of marking 16 documents for browsers, XML allows you to define any kind of document 17 markup, for example a document that describes a "to do" list for an 23 TinyXml uses a Document Object Model, meaning the XML data is parsed 25 written back to disk. You can also construct an XML document from 34 compliant XML output (with the exception of the character set, 42 It doesn�t parse or use DTDs (Document Type Definitions) or XSL�s 65 TinyXml recognizes the pre-defined "entity references", meaning special [all …]
|
| /third_party/skia/include/core/ |
| D | SkDocument.h | 4 * Use of this source code is governed by a BSD-style license that can be 22 * High-level API for creating a document-based canvas. To use.. 24 * 1. Create a document, specifying a stream to store the output. 26 * a. canvas = doc->beginPage(...) 28 * c. doc->endPage(); 29 * 3. Close the document with doc->close(). 35 * Begin a new page for the document, returning the canvas that will draw 36 * into the page. The document owns this canvas, and it will go out of 37 * scope when endPage() or close() is called, or the document is deleted. 44 * returned by beginPage() will be out-of-scope. [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/config/ |
| D | genanchorlinks.rb | 1 # Copyright 2023-2024 The Khronos Group Inc. 2 # SPDX-License-Identifier: Apache-2.0 12 def process document, output 13 content = (document.attr 'copyright') || 'Copyright Acme, Inc.' 14 if document.basebackend? 'html' 15 output = output.gsub(/<a id="(VUID\-[\w\-:]+)">/, '<a id="\1" href="#\1">') 17 output
|
| /third_party/ninja/src/ |
| D | browse.py | 9 # http://www.apache.org/licenses/LICENSE-2.0 54 # multiple dependent output edges. Rather than attempting to display 77 target = next(lines)[:-1] # strip trailing colon 90 type = 'order-only' 109 font-family: sans; 110 font-size: 0.8em; 114 font-weight: normal; 115 font-size: 140%; 116 text-align: center; 120 font-weight: normal; [all …]
|
| /third_party/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/ |
| D | tinyxmlparser.cpp | 5 This software is provided 'as-is', without any express or implied 55 // sequence from the lead byte. 1 placed for invalid sequences -- 57 // Beware of the non-characters in UTF-8: 88 void TiXmlBase::ConvertUTF32ToUTF8( unsigned long input, char* output, int* length ) in ConvertUTF32ToUTF8() argument 105 output += *length; in ConvertUTF32ToUTF8() 111 --output; in ConvertUTF32ToUTF8() 112 *output = (char)((input | BYTE_MARK) & BYTE_MASK); in ConvertUTF32ToUTF8() 115 --output; in ConvertUTF32ToUTF8() 116 *output = (char)((input | BYTE_MARK) & BYTE_MASK); in ConvertUTF32ToUTF8() 119 --output; in ConvertUTF32ToUTF8() [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/config/vu-to-json/ |
| D | extension.rb | 1 # Copyright 2016-2024 The Khronos Group Inc. 3 # SPDX-License-Identifier: Apache-2.0 13 def process document 18 'api version' => document.attr('revnumber'), 19 'comment' => document.attr('revremark'), 20 'date' => document.attr('revdate') 31 # Use find_by so that sub-blocks that this script processes can be skipped 32 document.find_by do |block| 34 …# Keep track of all attributes defined throughout the document, as Asciidoctor will not do this au… 35 # See https://discuss.asciidoctor.org/asciidoctorj-and-document-attributes-tp5960p6525.html [all …]
|
| /third_party/json/docs/mkdocs/docs/api/basic_json/ |
| D | patch.md | 7 [JSON Patch](http://jsonpatch.com) defines a JSON document structure for expressing a sequence of o… 8 a JSON document. With this function, a JSON Patch is applied to the current JSON value by executing… 14 : JSON patch document 18 patched document 26 - Throws [`parse_error.104`](../../home/exceptions.md#jsonexceptionparse_error104) if the JSON patc… 28 - Throws [`parse_error.105`](../../home/exceptions.md#jsonexceptionparse_error105) if the JSON patc… 30 - Throws [`out_of_range.401`](../../home/exceptions.md#jsonexceptionout_of_range401) if an array in… 31 - Throws [`out_of_range.403`](../../home/exceptions.md#jsonexceptionout_of_range403) if a JSON poin… 33 - Throws [`out_of_range.405`](../../home/exceptions.md#jsonexceptionout_of_range405) if JSON pointe… 35 - Throws [`out_of_range.501`](../../home/exceptions.md#jsonexceptionother_error501) if "test" opera… [all …]
|
| /third_party/mesa3d/docs/ |
| D | conf.py | 2 # -*- coding: utf-8 -*- 8 # sphinx-quickstart on Wed Mar 29 14:08:51 2017. 19 # If extensions (or modules to document with autodoc) are in another directory, 26 # If extensions (or modules to document with autodoc) are in another directory, 32 # -- General configuration ------------------------------------------------ 52 # The master toctree document. 57 copyright = '1995-2018, Brian Paul' 87 # If true, `todo` and `todoList` produce output, else they produce nothing. 95 # -- Options for HTML output ---------------------------------------------- 104 # Theme options are theme-specific and customize the look and feel of a theme [all …]
|
| /third_party/python/Doc/tools/extensions/ |
| D | suspicious.py | 3 that has leaked into the final output. 5 Suspicious lines are reported in a comma-separated-file, 6 ``suspicious.csv``, located in the output directory. 8 The file is utf-8 encoded, and each line contains four fields: 10 * document name (normalized) 11 * line number in the source document 20 - each line defines a rule; if the rule matches, the issue 22 - line number may be empty (that is, nothing between the 25 - the last field does not have to be a complete line; some 31 * document names are the same [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/config/katex_replace/ |
| D | extension.rb | 1 # Copyright 2016-2024 The Khronos Group Inc. 3 # SPDX-License-Identifier: Apache-2.0 11 MathJaXScript = /<script type="text\/x-mathjax-config">((?!<\/script>).)+<\/script>/m 12 …ttps:\/\/cdnjs.cloudflare.com\/ajax\/libs\/mathjax\/[0-9].[0-9].[0-9]\/MathJax.js\?config=[-_A-Za-… 14 def process document, output 16 if document.attr? 'stem' 17 katexpath = document.attr 'katexpath' 20 <!-- dragged in by font-awesome css included by asciidoctor, but preloaded in this extension for co… 21 …="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfo… 23 <!-- Note: Chrome needs crossorigin="" even for same-origin fonts --> [all …]
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
| D | enum-doc-bitfield.rs | 9 /// Document field with three slashes 13 /// Document field with preceeding star 17 /// Document field with preceeding exclamation 21 ///< Document field with following star 25 ///< Document field with following exclamation 29 /// Document field with preceeding star, with a loong long multiline 36 type Output = Self; typedef 38 fn bitor(self, other: Self) -> Self { in bitor() 49 type Output = Self; typedef 51 fn bitand(self, other: Self) -> Self { in bitand() [all …]
|
| /third_party/skia/include/docs/ |
| D | SkPDFDocument.h | 2 // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. 74 /** The document's title. 78 /** The name of the person who created the document. 82 /** The subject of the document. 86 /** Keywords associated with the document. Commas may be used to delineate 91 /** If the document was converted to PDF from another format, 93 original document from which it was converted. 97 /** The product that is converting this document to PDF. 101 /** The date and time the document was created. 106 /** The date and time the document was most recently modified. [all …]
|
| /third_party/libinput/doc/user/ |
| D | conf.py.in | 1 # -*- coding: utf-8 -*- 7 # http://www.sphinx-doc.org/en/stable/config 9 # -- Path setup -------------------------------------------------------------- 11 # If extensions (or modules to document with autodoc) are in another directory, 21 # -- Project information ----------------------------------------------------- 33 # -- General configuration --------------------------------------------------- 57 # The master toctree document. 77 # -- Options for HTML output ------------------------------------------------- 84 # Theme options are theme-specific and customize the look and feel of a theme 98 # Custom sidebar templates, must be a dictionary that maps document names [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/ |
| D | BUILD.adoc | 1 // Copyright 2014-2024 The Khronos Group Inc. 2 // SPDX-License-Identifier: CC-BY-4.0 8 ifdef::env-github[] 9 :note-caption: :information_source: 28 The repository is located at https://github.com/KhronosGroup/Vulkan-Docs/. 32 If you are using the <<depends-docker, Khronos-Provided Docker Image>>, 47 $ ./makeSpec -spec core html 49 to build an HTML5 specification output for the core Vulkan 1.3 53 $ ./makeSpec -spec all all 63 <<depends-nondocker, Non-Docker Build Environment>> with the entire [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/style/ |
| D | misc.adoc | 1 // Copyright 2015-2024 The Khronos Group Inc. 3 // SPDX-License-Identifier: CC-BY-4.0 11 Images should be authored in the open-source 20 output documents, and must not be scaled with asciidoctor options. 22 the full width of the document - do not leave unnecessary whitespace on 25 The PDF output has an available width of just over 660px (at the default 28 The html output is wider (800 pixels) and with practically unlimited height. 35 According to the documentation available, the PDF output *should* have 36 dimensions of roughly 184mm x 271mm - or equivalently 697px x 1026px (A4 37 size [asciidoctor default] with a 0.5in margin [prawn-pdf default] on each [all …]
|
| D | misc.txt | 1 // Copyright 2015-2021 The Khronos Group Inc. 3 // SPDX-License-Identifier: CC-BY-4.0 11 Images should be authored in the open-source 20 output documents, and must not be scaled with asciidoctor options. 22 the full width of the document - do not leave unnecessary whitespace on 25 The PDF output has an available width of just over 660px (at the default 28 The html output is wider (800 pixels) and with practically unlimited height. 35 According to the documentation available, the PDF output *should* have 36 dimensions of roughly 184mm x 271mm - or equivalently 697px x 1026px (A4 37 size [asciidoctor default] with a 0.5in margin [prawn-pdf default] on each [all …]
|
| /third_party/json/docs/mkdocs/docs/features/ |
| D | json_patch.md | 5 JSON Patch ([RFC 6902](https://tools.ietf.org/html/rfc6902)) defines a JSON document structure for … 6 of operations to apply to a JSON document. With the `patch` function, a JSON Patch is applied to th… 14 --8<-- "examples/patch.cpp" 17 Output: 20 --8<-- "examples/patch.output" 40 --8<-- "examples/diff.cpp" 43 Output: 46 --8<-- "examples/diff.output"
|
| /third_party/vk-gl-cts/scripts/ |
| D | qpa_image_viewer.html | 1 <!-- 2 -------------------------------------- 4 -------------------------------------- 13 http://www.apache.org/licenses/LICENSE-2.0 20 --> 23 <meta charset="utf-8"/> 24 <title>Load PNGs from QPA output</title> 28 text-align: left; 29 font-family: sans-serif; 32 margin-top: 2ex; [all …]
|
| /third_party/libabigail/doc/manuals/ |
| D | conf.py | 1 # -*- coding: utf-8 -*- 4 # sphinx-quickstart on Fri Sep 26 09:50:31 2014. 16 # If extensions (or modules to document with autodoc) are in another directory, 21 # -- General configuration ----------------------------------------------------- 37 #source_encoding = 'utf-8-sig' 39 # The master toctree document. 44 copyright = u'2014-2022, Red Hat, Inc.' 60 # non-false value, then it is used: 72 # If true, '()' will be appended to :func: etc. cross-reference text. 80 # output. They are ignored by default. [all …]
|
| /third_party/json/docs/mkdocs/docs/features/binary_formats/ |
| D | bson.md | 3 BSON, short for Binary JSON, is a binary-encoded serialization of JSON-like documents. Like JSON, B… 9 - [BSON Website](http://bsonspec.org) - the main source on BSON 10 - [BSON Specification](http://bsonspec.org/spec.html) - the specification 18 |-----------------|-------------------------------------------|-----------|--------| 21 | number_integer | -9223372036854775808..-2147483649 | int64 | 0x12 | 22 | number_integer | -2147483648..2147483647 | int32 | 0x10 | 26 | number_unsigned | 9223372036854775808..18446744073709551615 | -- | -- | 29 | array | *any value* | document | 0x04 | 30 | object | *any value* | document | 0x03 | 35 The mapping is **incomplete**, since only JSON-objects (and things [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
| D | MsgPackDocument.h | 1 //===-- MsgPackDocument.h - MsgPack Document --------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 /// This file declares a class that exposes a simple in-memory representation 10 /// of a document of MsgPack objects, that can be read from MsgPack, written to 12 /// lighter-weight (in terms of memory allocations) replacement for 15 //===----------------------------------------------------------------------===// 27 class Document; variable 30 /// The kind of a DocNode and its owning Document. 32 Document *Doc; [all …]
|
| /third_party/typescript/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/ |
| D | with-skipLibCheck.js | 5 interface Document { 12 /// <reference no-default-lib="true"/> 23 interface Document { 28 /a/lib/tsc.js -w /user/username/projects/myproject/a.ts --skipLibCheck 29 Output:: 33 [96ma.ts[0m:[93m4[0m:[93m5[0m - [91merror[0m[90m TS2687: [0mAll declarations of 'fullscre… 77 Change:: Remove document declaration from file 88 Output:: 125 Change:: Rever the file to contain document declaration 131 interface Document { [all …]
|
| /third_party/typescript/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/ |
| D | with-skipLibCheck.js | 3 interface Document { 9 /// <reference no-default-lib="true"/> 20 interface Document { 25 /a/lib/tsc.js -w /user/username/projects/myproject/a.ts --skipLibCheck 26 Output:: 30 [96ma.ts[0m:[93m2[0m:[93m5[0m - [91merror[0m[90m TS2687: [0mAll declarations of 'fullscre… 73 Change:: Remove document declaration from file 81 Output:: 122 Change:: Rever the file to contain document declaration 126 interface Document { [all …]
|