/third_party/mesa3d/src/gallium/auxiliary/hud/ |
D | hud_context.c | 312 xoffset + (gr->pane->max_num_vertices - gr->index - 1) * 2 - 1, in hud_draw_graph_line_strip() 327 const struct hud_pane *pane) in hud_pane_accumulate_vertices() argument 333 const unsigned last_line = pane->last_line; in hud_pane_accumulate_vertices() 337 pane->x1, pane->y1, in hud_pane_accumulate_vertices() 338 pane->x2, pane->y2); in hud_pane_accumulate_vertices() 342 unsigned x = pane->x2 + 2; in hud_pane_accumulate_vertices() 343 unsigned y = pane->inner_y1 + in hud_pane_accumulate_vertices() 344 pane->inner_height * (last_line - i) / last_line - in hud_pane_accumulate_vertices() 347 number_to_human_readable(pane->max_value * i / last_line, in hud_pane_accumulate_vertices() 348 pane->type, str); in hud_pane_accumulate_vertices() [all …]
|
D | hud_private.h | 102 struct hud_pane *pane; member 150 void hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr); 151 void hud_pane_set_max_value(struct hud_pane *pane, uint64_t value); 161 void hud_fps_graph_install(struct hud_pane *pane); 162 void hud_frametime_graph_install(struct hud_pane *pane); 163 void hud_cpu_graph_install(struct hud_pane *pane, unsigned cpu_index); 164 void hud_thread_busy_install(struct hud_pane *pane, const char *name, bool main); 165 void hud_thread_counter_install(struct hud_pane *pane, const char *name, 168 struct hud_pane *pane, 177 struct hud_pane *pane, [all …]
|
D | hud_cpu.c | 237 if (info->last_time + gr->pane->period <= now) { in query_cpu_load() 267 hud_cpu_graph_install(struct hud_pane *pane, unsigned cpu_index) in hud_cpu_graph_install() argument 303 hud_pane_add_graph(pane, gr); in hud_cpu_graph_install() 304 hud_pane_set_max_value(pane, 100); in hud_cpu_graph_install() 332 if (info->last_time + gr->pane->period*1000 <= now) { in query_api_thread_busy_status() 338 struct util_queue_monitoring *mon = gr->pane->hud->monitored_queue; in query_api_thread_busy_status() 368 hud_thread_busy_install(struct hud_pane *pane, const char *name, bool main) in hud_thread_busy_install() argument 392 hud_pane_add_graph(pane, gr); in hud_thread_busy_install() 393 hud_pane_set_max_value(pane, 100); in hud_thread_busy_install() 404 struct util_queue_monitoring *mon = gr->pane->hud->monitored_queue; in get_counter() [all …]
|
D | hud_fps.c | 55 else if (info->last_time + gr->pane->period <= now) { in query_fps() 76 hud_fps_graph_install(struct hud_pane *pane) in hud_fps_graph_install() argument 99 hud_pane_add_graph(pane, gr); in hud_fps_graph_install() 103 hud_frametime_graph_install(struct hud_pane *pane) in hud_frametime_graph_install() argument 123 hud_pane_add_graph(pane, gr); in hud_frametime_graph_install()
|
D | hud_sensors_temp.c | 167 if (sti->last_time + gr->pane->period <= now) { in query_sti_load() 205 hud_sensors_temp_graph_install(struct hud_pane *pane, const char *dev_name, in hud_sensors_temp_graph_install() argument 235 hud_pane_add_graph(pane, gr); in hud_sensors_temp_graph_install() 239 hud_pane_set_max_value(pane, 120); in hud_sensors_temp_graph_install() 242 hud_pane_set_max_value(pane, 12); in hud_sensors_temp_graph_install() 245 hud_pane_set_max_value(pane, 5000); in hud_sensors_temp_graph_install() 248 hud_pane_set_max_value(pane, 5000 /* mW */); in hud_sensors_temp_graph_install()
|
D | hud_diskstat.c | 130 if (dsi->last_time + gr->pane->period <= now) { in query_dsi_load() 141 (((float) gr->pane->period / 1000) / 1000); in query_dsi_load() 147 (((float) gr->pane->period / 1000) / 1000); in query_dsi_load() 175 hud_diskstat_graph_install(struct hud_pane *pane, const char *dev_name, in hud_diskstat_graph_install() argument 208 hud_pane_add_graph(pane, gr); in hud_diskstat_graph_install() 209 hud_pane_set_max_value(pane, 100); in hud_diskstat_graph_install()
|
D | hud_driver_query.c | 320 if (info->num_results && info->last_time + gr->pane->period <= now) { in query_new_value() 371 struct hud_pane *pane, in hud_pipe_query_install() argument 409 hud_pane_add_graph(pane, gr); in hud_pipe_query_install() 410 pane->type = type; /* must be set before updating the max_value */ in hud_pipe_query_install() 412 if (pane->max_value < max_value) in hud_pipe_query_install() 413 hud_pane_set_max_value(pane, max_value); in hud_pipe_query_install() 424 struct hud_pane *pane, struct pipe_screen *screen, in hud_driver_query_install() argument 447 hud_pipe_query_install(pbq, pane, query.name, query.query_type, 0, in hud_driver_query_install()
|
D | hud_cpufreq.c | 100 if (cfi->last_time + gr->pane->period <= now) { in query_cfi_load() 124 hud_cpufreq_graph_install(struct hud_pane *pane, int cpu_index, in hud_cpufreq_graph_install() argument 161 hud_pane_add_graph(pane, gr); in hud_cpufreq_graph_install() 162 hud_pane_set_max_value(pane, 3000000 /* 3 GHz */); in hud_cpufreq_graph_install()
|
D | hud_nic.c | 185 if (nic->last_time + gr->pane->period <= now) { in query_nic_load() 196 float periodMs = gr->pane->period / 1000.0; in query_nic_load() 247 hud_nic_graph_install(struct hud_pane *pane, const char *nic_name, in hud_nic_graph_install() argument 284 hud_pane_add_graph(pane, gr); in hud_nic_graph_install() 285 hud_pane_set_max_value(pane, 100); in hud_nic_graph_install()
|
/third_party/gstreamer/gstplugins_bad/po/ |
D | lv.po | 401 #~ msgstr "Priekšējā paneļa nikrofons" 404 #~ msgstr "Priekšējā paneļa skaņas ieeja" 407 #~ msgstr "Priekšējā paneļa austiņas" 410 #~ msgstr "Priekšējā paneļa skaņas izeja" 440 #~ msgstr "Zaļais priekšējā paneļa savienotājs" 443 #~ msgstr "Rozā priekšējā paneļa savienotājs" 446 #~ msgstr "Zilais priekšējā paneļa savienotājs" 449 #~ msgstr "Baltais priekšējā paneļa savienotājs" 452 #~ msgstr "Melnais priekšējā paneļa savienotājs" 455 #~ msgstr "Pelēkais priekšējā paneļa savienotājs" [all …]
|
/third_party/node/deps/v8/tools/turbolizer/src/ |
D | graphmultiview.ts | 35 const pane = document.createElement("div"); constant 36 pane.setAttribute("id", multiviewID); 37 pane.setAttribute("tabindex", "1"); 38 pane.className = "viewpane"; 39 return pane;
|
D | schedule-view.ts | 13 const pane = document.createElement('div'); constant 14 pane.setAttribute('id', "schedule"); 15 pane.classList.add("scrollable"); 16 pane.setAttribute("tabindex", "0"); 17 return pane;
|
D | sequence-view.ts | 23 const pane = document.createElement('div'); constant 24 pane.setAttribute('id', "sequence"); 25 pane.classList.add("scrollable"); 26 pane.setAttribute("tabindex", "0"); 27 return pane;
|
D | disassembly-view.ts | 33 const pane = document.createElement('div'); constant 34 pane.setAttribute('id', "disassembly"); 35 pane.innerHTML = 41 return pane;
|
D | graph-view.ts | 57 const pane = document.createElement('div'); constant 58 pane.setAttribute('id', "graph"); 59 return pane;
|
/third_party/python/Lib/turtledemo/ |
D | __main__.py | 164 pane = PanedWindow(orient=HORIZONTAL, sashwidth=5, 166 pane.add(self.makeTextFrame(pane)) 167 pane.add(self.makeGraphFrame(pane)) 168 pane.grid(row=0, columnspan=4, sticky='news')
|
/third_party/gstreamer/gstplugins_good/po/ |
D | lv.po | 747 #~ msgstr "Priekšējā paneļa mikrofons" 750 #~ msgstr "Priekšējā paneļa ieejas līnija" 753 #~ msgstr "Priekšējā paneļa austiņas" 756 #~ msgstr "Priekšējā paneļa līnijas izeja" 786 #~ msgstr "Zaļais priekšējā paneļa savienotājs" 789 #~ msgstr "Rozā priekšējā paneļa savienotājs" 792 #~ msgstr "Zilais priekšējā paneļa savienotājs" 795 #~ msgstr "Baltais priekšējā paneļa savienotājs" 798 #~ msgstr "Melnais priekšējā paneļa savienotājs" 801 #~ msgstr "Pelēkais priekšējā paneļa savienotājs" [all …]
|
/third_party/cef/tests/cefclient/ |
D | cefclient_mac.mm | 172 // pane. 173 // 2. Load the "Identity inspector" tab in the top-right side pane. 180 // 1. Load the "Object library" tab in the bottom-right side pane. 182 // location in the menu bar shown in the center pane. 184 // 4. Load the "Attributes inspector" tab in the top-right side pane. 191 // 2. Load the "Object library" tab in the bottom-right side pane. 193 // location in the menu bar shown in the center pane.
|
/third_party/node/deps/v8/tools/v8windbg/ |
D | README.md | 4 Locals pane and corresponding `dx` commands to display useful data when 32 As well as improving the Locals pane behavior, v8windbg also provides a few 37 the same logic that is used for the locals pane. You may also pass a type hint 71 content to show in the Locals pane for stack frames corresponding to builtins 95 pane.
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
D | test_widgets.py | 579 self.assertEqual(self.paned.pane(0), self.paned.pane(1)) 580 self.assertRaises(tkinter.TclError, self.paned.pane, 2) 583 self.assertRaises(tkinter.TclError, self.paned.pane, 0) 628 self.assertRaises(tkinter.TclError, self.paned.pane, 0) 632 self.assertIsInstance(self.paned.pane(0), dict) 633 self.assertEqual(self.paned.pane(0, weight=None), 636 self.assertEqual(self.paned.pane(0, 'weight'), 638 self.assertEqual(self.paned.pane(0), self.paned.pane(str(child))) 640 self.assertRaises(tkinter.TclError, self.paned.pane, 0,
|
/third_party/python/Lib/idlelib/ |
D | TODO.txt | 145 - Customizable views (multi-window or multi-pane). (Markus Gritsch) 166 and output). Use multi-pane windows for info that does need to be
|
/third_party/python/Lib/tkinter/ |
D | ttk.py | 964 def pane(self, pane, option=None, **kw): member in Panedwindow 973 return _val_or_dict(self.tk, kw, self._w, "pane", pane)
|
/third_party/skia/site/docs/dev/tools/ |
D | debugger.md | 128 pane. A zoomed view centered on the selected pixel is shown below it. The 170 page - shrink enough that the whole canvas fits in the center pane. Fit to page
|
/third_party/node/deps/v8/tools/turbolizer/ |
D | turbo-visualizer.css | 8 .show-hide-pane { 322 .show-hide-pane:hover input {
|
/third_party/python/Doc/library/ |
D | idle.rst | 305 Open a pane at the top of the edit window which shows the block context 564 in order to show or hide a pane at the top of the window. When shown, this 565 pane freezes the opening lines for block code, such as those beginning with 567 out of view. The size of the pane will be expanded and contracted as needed 571 line will display. Clicking on a line in the context pane will move that 574 The text and background colors for the context pane can be configured under
|