Lines Matching +full:- +full:d

22 CORTEXCATEGORIES=["Cortex-M","Cortex-R","Cortex-A"]
23 CORECATEGORIES={"Cortex-M":["m0","m4", "m7", "m33" , "m55 scalar", "m55 mve","m55 autovec"],
24 "Cortex-R":["r8","r52"],
25 "Cortex-A":["a32"]
60 sepStr="".join(joinit([":-:" for x in cols],"|"))
84 self._id = self._id - 1
103 margin-top:5px;
104 margin-bottom:10px;
108 font-size: 16px;
112 background-color: #E5ECEB;
113 font-family: "Lato";
114 font-style: normal; font-variant: normal;
116 line-height: 1.5em;
121 margin-top:0px;
122 margin-left:290px;
132 font-size: 1.125em;
141 font-weight: bold;
144 font-size: 1.875em;
145 margin-top:5px;
148 font-size: 1.3125em;
151 font-size: 1.3125em;
152 margin-left:1em;
155 font-size: 1.125em;
156 margin-left:1em;
160 font-size: 1em;
161 margin-left:1em;
165 margin-top:0em;
166 margin-left:0.5em;
170 margin-bottom: 1.5em;
171 font-size: 1em;
173 border-collapse: collapse;
174 border-spacing: 0;
176 margin-left:1em;
181 text-transform: uppercase;
184 text-align: left;
187 vertical-align: top;
191 .ty-table-edit {
192 background-color: transparent;
195 background-color: #979ea3;
197 tr:nth-child(even) {
202 list-style-type: none;
203 padding-inline-start:10px;
217 user-select: none; /* Prevent text selection */
224 display: inline-block;
225 margin-right: 6px;
229 .caret-down::before {
244 border-left-color: black;
245 border-left-style: solid;
246 border-left-width: 2px;
259 this.classList.toggle("caret-down");
277 .attr("text-anchor", "end")
278 .attr("font-family", "sans-serif")
279 .attr("font-size", 9)
283 .attr("transform", (d, i) => `translate(0,${i * 20})`);
286 .attr("x", -19)
292 .attr("x", -24)
295 .text(d => d);
306 .domain(data.series.map(d => d['name']))
323 .range([histmargin.left,histwidth - histmargin.right]);
326 .domain([0, d3.max(data.series, d => d3.max(d.values,q => q[1]))]).nice()
327 .range([histheight - histmargin.bottom, histmargin.top]);
330 .attr("transform", `translate(0,${histheight - histmargin.bottom})`)
331 .call(d3.axisBottom(sx).tickValues(data.dates).ticks(histwidth / 80,"d").
336 .attr("text-anchor", "end")
338 .attr("y", histheight - 6)
349 .x(d => sx(data.dates[d[0]])
351 .y(d => sy(d[1]));
362 .attr("stroke-width", 1.5)
363 .attr("stroke-linejoin", "round")
364 .attr("stroke-linecap", "round")
368 .style("mix-blend-mode", "multiply")
369 .attr("stroke", d => color(d.name))
370 .attr("d", d => line(d.values));
377 .call(d => legend(color,d));
397 .range([margin.left, width - margin.right])
401 .domain([0, d3.max(data, d => d.value)]).nice()
402 .range([height - margin.bottom, margin.top]);
405 .attr("transform", `translate(0,${height - margin.bottom})`)
413 .attr("x", -margin.left)
416 .attr("text-anchor", "start")
426 .attr("x", (d, i) => x(i))
427 .attr("y", d => y(d.value))
428 .attr("height", d => y(0) - y(d.value))
465 …self._output.write("<li><span class=\"caret\"><a href=\"#section%d\">%s</a></span>\n" % (self._sec…
468 …self._output.write("<li><span><a href=\"#section%d\">%s</a></span>\n" % (self._sectionID,section.n…
474 self._id = self._id - 1
520 self._output.write("<p id=\"g%d\"></p>\n" % self._barID)
522 thedata%d=[%s];
523 mybar(thedata%d,"#g%d");
544 self._output.write("<p id=\"hi%d\"></p>\n" % self._histID)
546 thehdata%d=%s
547 myhist(thehdata%d,"#hi%d");
632 … self._output.write("<h%d id=\"section%d\">%s</h%d>\n" % (self._id,self._sectionID,name,self._id))
635 self._id = self._id - 1
641 <meta charset='UTF-8'><meta name='viewport' content='width=device-width initial-scale=1'>
654 d2 = today.strftime("%B %d, %Y")