Home
last modified time | relevance | path

Searched full:document (Results 1 – 25 of 218) sorted by relevance

123456789

/Zephyr-latest/doc/_extensions/zephyr/kconfig/static/
Dkconfig.mjs29 const admonition = document.createElement('div');
33 const admonitionTitle = document.createElement('p');
37 const admonitionTitleText = document.createTextNode('Error');
40 const admonitionContent = document.createElement('p');
43 const admonitionContentText = document.createTextNode(message);
52 const p = document.createElement('p');
56 const pText = document.createTextNode(message);
67 const term = document.createElement('dt');
70 const termText = document.createTextNode(title);
73 const details = document.createElement('dd');
[all …]
/Zephyr-latest/scripts/west_commands/zspdx/
Dsbom.py20 # prefix for Document namespaces; should not end with "/"
26 # location of SPDX document output directory
32 # should also add an SPDX document for the SDK?
72 log.wrn(f"config: requested to analyze includes but not to generate SDK SPDX document;")
92 # scan each document from walker
99 # write each document, in this particular order so that the
102 # write SDK document, if we made one
106 log.err("SPDX writer failed for SDK document; bailing")
109 # write app document
112 log.err("SPDX writer failed for app document; bailing")
[all …]
Ddatatypes.py8 # DocumentConfig contains settings used to configure how the SPDX Document
14 # name of document
17 # namespace for this document
25 # Document contains the data assembled by the SBOM builder, to be used to
26 # create the actual SPDX Document.
27 class Document: class
30 super(Document, self).__init__()
38 # relationships "owned" by this Document, _not_ those "owned" by its
43 # been seen while adding files to this Document; used to calculate
57 # this Document's SHA1 hash, filled in _after_ the Document has been
[all …]
Dwriter.py26 # 1) f: file handle for SPDX document
33 # 1) f: file handle for SPDX document
70 # 1) f: file handle for SPDX document
134 # 1) f: file handle for SPDX document
143 # Output tag-value SPDX 2.3 content for the given Document object.
145 # 1) f: file handle for SPDX document
146 # 2) doc: Document object being described
152 SPDXID: SPDXRef-DOCUMENT
160 # write any external document references
168 # write relationships owned by this Document (not by its Packages, etc.), if any
[all …]
Dwalker.py14 from zspdx.datatypes import DocumentConfig, Document, File, PackageConfig, Package, RelationshipDat…
23 # prefix for Document namespaces; should not end with "/"
32 # should also add an SPDX document for the SDK?
53 # dict of absolute file path => the Document that owns that file
95 rd.ownerType = RelationshipDataElementType.DOCUMENT
181 # set up app document
186 self.docApp = Document(cfgApp)
201 # set up build document
206 self.docBuild = Document(cfgBuild)
210 # the DESCRIBES relationship for the build document will be
[all …]
Dscanner.py16 # Document scanning should occur.
126 to the custom license IDs set for this Document if it isn't.
130 - doc: Document
185 in this Document.
189 - doc: Document
192 log.inf(f"scanning files in package {pkg.cfg.name} in document {doc.cfg.name}")
218 # check if any custom license IDs should be flagged for document
/Zephyr-latest/doc/_extensions/zephyr/domain/static/js/
Dboard-catalog.js7 const catalog = document.getElementById("catalog");
20 const element = document.getElementById(param);
40 const element = document.getElementById(param);
54 const socFamilySelect = document.getElementById("family");
62 const socSeriesSelect = document.getElementById("series");
75 const socSocSelect = document.getElementById("soc");
87 document.addEventListener("DOMContentLoaded", function () {
88 const form = document.querySelector(".filter-form");
91 vendorSelect = document.getElementById("vendor");
107 socFamilySelect = document.getElementById("family");
[all …]
Dcodesample-livesearch.js27 const highlightedFragment = document.createDocumentFragment();
29 const before = document.createTextNode(text.substring(0, index));
30 const highlight = document.createElement("mark");
32 const after = document.createTextNode(text.substring(index + query.length));
/Zephyr-latest/doc/_extensions/zephyr/doxytooltip/static/
Ddoxytooltip.js13 const tooltip = document.createElement('div');
15 document.body.appendChild(tooltip);
17 const tooltipShadow = document.createElement('div');
21 /* tippy's JS code automatically adds a <style> tag to the document's <head> with the
25 const tippyStyle = document.querySelector('style[data-tippy-stylesheet]');
32 * similarly, doxytooltip.css is added to the document's <head> by the Sphinx extension, but we
35 const doxytooltipStyle = document.querySelector('link[href*="doxytooltip.css"]');
42 let links = Array.from(document.querySelectorAll('a.reference.internal')).filter((a) =>
56 document
76 const link = document.createElement('link');
[all …]
/Zephyr-latest/scripts/pylib/twister/
Dscl.py33 Safely load a YAML document
41 :return: dictionary representing the YAML document
74 Safely load a testcase/sample yaml document and validate it
80 # 'document.yaml' contains a single YAML document.
84 # 'document.yaml' contains a single YAML document.
/Zephyr-latest/doc/_templates/
Dsearchbox.html35 var form = document.getElementById("rtd-search-form");
36 var searchMenu = document.getElementById("search-se-menu");
56 document
76 var selectedElement = document.getElementById("search-se-menuitem-" + engine);
77 var otherElement = document.getElementById(
106 document.addEventListener("keydown", function (event) {
109 let menuItems = document.querySelectorAll('[role="menuitemradio"]');
110 let currentIndex = Array.from(menuItems).findIndex((item) => item === document.activeElement);
121 let activeItem = document.activeElement;
/Zephyr-latest/doc/_doxygen/
Ddoxygen-awesome-darkmode-toggle.js51 document.addEventListener("visibilitychange", visibilityState => {
52 if (document.visibilityState === 'visible') {
60 $(document).ready(function() {
61 const toggleButton = document.createElement('doxygen-awesome-dark-mode-toggle')
68 document.addEventListener("visibilitychange", visibilityState => {
69 if (document.visibilityState === 'visible') {
74 $(document).ready(function(){
75 document.getElementById("MSearchBox").parentNode.appendChild(toggleButton)
78 document.getElementById("MSearchBox").parentNode.appendChild(toggleButton)
125 document.documentElement.classList.add("dark-mode")
[all …]
Ddoxygen-awesome-zephyr.js8 let version = document.getElementById('projectnumber').innerText
9 let titleTable = document.querySelector('#titlearea table');
/Zephyr-latest/samples/net/sockets/echo_server/src/ws_console/
Dindex.html45 var input = document.getElementById("prompt");
61 document.getElementById("closebutton").innerText= "Connect";
63 document.getElementById("closebutton").innerText= "Close";
85 var div = document.getElementById(id);
90 var log = document.getElementById("zconsoleline");
100 var log = document.getElementById("output");
126 document.getElementById('sendbutton').click()" />
/Zephyr-latest/samples/net/sockets/http_server/src/static_web_resources/
Dmain.js15 const uptime = document.getElementById("uptime");
38 document.getElementById(stat_name).innerHTML = json_data[stat_name];
46 const led_on_btn = document.getElementById("led_on");
52 const led_off_btn = document.getElementById("led_off");
/Zephyr-latest/doc/
D404.rst18 var strReferrer=document.referrer;
20 document.write("<p>Sorry, the page you requested: " +
24 document.write("<p>Sorry, the page you requested was not found on this site.</p>")
/Zephyr-latest/samples/subsys/usb/webusb/
Dindex.html79 document.getElementById('output').value += textDecoder.decode(data);
83 document.querySelector("#connect").style = "visibility: initial";
103 document.querySelector("#connect").onclick = function() {
111 document.querySelector("#submit").onclick = () => {
112 let source = document.querySelector("#input").value;
/Zephyr-latest/samples/subsys/usb/webusb-next/
Dindex.html79 document.getElementById('output').value += textDecoder.decode(data);
83 document.querySelector("#connect").style = "visibility: initial";
103 document.querySelector("#connect").onclick = function() {
111 document.querySelector("#submit").onclick = () => {
112 let source = document.querySelector("#input").value;
/Zephyr-latest/doc/_static/js/
Ddark-mode-toggle-stylesheets-loader.min.js2document.getElementById(e).textContent;let c=null;try{c=localStorage.getItem(s)}catch(e){}const a=…
/Zephyr-latest/doc/hardware/peripherals/
Dtcpc.rst51 https://www.usb.org/document-library/usb-type-cr-port-controller-interface-specification
54 https://www.usb.org/document-library/usb-type-cr-cable-and-connector-specification-revision-21
57 https://www.usb.org/document-library/usb-power-delivery
/Zephyr-latest/doc/security/
Dsecurity-citations.rst5 Security Document Citations
41 "Common Vulnerability Scoring System v3.0: Specification Document". [Online].
42 Available: https://www.first.org/cvss/specification-document.
Dsecure-coding.rst16 This document describes the requirements and process for ensuring
20 Much of this document comes from [CIIBPB]_.
25 This document covers guidelines for the `Zephyr Project`_, from a
29 .. todo: Reference main document here
39 the scope of this document. This section also describes
49 Finally, the document covers how changes are to be made to this
50 document.
279 Modifications to This Document
282 Changes to this document shall be reviewed by the Zephyr Security Subcommittee,
/Zephyr-latest/doc/connectivity/networking/
Dzephyr_netstack_overview.vsdx ... /pages/pages.xml visio/_rels/document.xml.rels visio/pages/_rels/ ...
/Zephyr-latest/samples/net/sockets/http_get/
Dsample.yaml39 - "The document has moved"
52 - "The document has moved"
/Zephyr-latest/doc/hardware/porting/
Dindex.rst6 These pages document how to port Zephyr to new hardware.

123456789