/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/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/flutter/engine/flutter/lib/web_ui/lib/src/engine/ |
D | dom_renderer.dart | 115 /// child of the glass pane element so that events bubble up to the glass pane 279 flt-glass-pane * { 341 // IMPORTANT: the glass pane element must come after the scene element in the DOM node list so 344 _glassPaneElement = createElement('flt-glass-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/boost/more/getting_started/ |
D | windows.rst | 106 * In the left-hand pane of the resulting *New Project* dialog, 108 * In the right-hand pane, select *Win32 Console Application* 111 * Right-click **example** in the *Solution Explorer* pane and 246 1. Right-click **example** in the *Solution Explorer* pane and
|
/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): argument 973 return _val_or_dict(self.tk, kw, self._w, "pane", pane)
|
/third_party/boost/libs/outcome/doc/src/content/tutorial/essential/ |
D | before.md | 39 Standalone Outcome is built into Godbolt! In the right hand pane toolbar, click the
|
/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/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
|
D | tkinter.ttk.rst | 484 | | of the pane area (not including internal padding or tabs). | 494 | | of the pane area (not including internal padding). Otherwise, | 513 | sticky | Specifies how the child window is positioned within the pane | 520 | | notebook and this pane. Syntax is the same as for the option | 604 Inserts a pane at the specified position. 619 omitted, returns the widget name of the currently selected pane.
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/resources/ |
D | RBManager_de.properties | 13 # @groupComment Translation Items for the Base Class Group tabbed pane 34 # @groupComment All translations for strings appearing on the statistics pane for the base class 58 # @groupComment Translations appearing on the Base Class Untranslated Items pane 1104 # @groupComment Resources found on the search tab pane 1143 # @comment Title for pane allowing for search and replace functions 1170 # @groupComment Translations for strings in the language file statistics pane
|
D | RBManager_fi.properties | 13 # @groupComment Translation Items for the Base Class Group tabbed pane 31 # @groupComment All translations for strings appearing on the statistics pane for the base class 55 # @groupComment Translations appearing on the Base Class Untranslated Items pane 1107 # @groupComment Resources found on the search tab pane 1146 # @comment Title for pane allowing for search and replace functions 1173 # @groupComment Translations for strings in the language file statistics pane
|
D | RBManager.properties | 13 # @groupComment Translation Items for the Base Class Group tabbed pane 34 # @groupComment All translations for strings appearing on the statistics pane for the base class 58 # @groupComment Translations appearing on the Base Class Untranslated Items pane 1104 # @groupComment Resources found on the search tab pane 1143 # @comment Title for pane allowing for search and replace functions 1170 # @groupComment Translations for strings in the language file statistics pane
|