/external/python/cpython2/Lib/lib-tk/ |
D | ttk.py | 845 def forget(self, tab_id): argument 848 self.tk.call(self._w, "forget", tab_id) 851 def hide(self, tab_id): argument 857 self.tk.call(self._w, "hide", tab_id) 866 def index(self, tab_id): argument 869 return self.tk.getint(self.tk.call(self._w, "index", tab_id)) 881 def select(self, tab_id=None): argument 888 return self.tk.call(self._w, "select", tab_id) 891 def tab(self, tab_id, option=None, **kw): argument 899 return _val_or_dict(self.tk, kw, self._w, "tab", tab_id)
|
/external/python/cpython3/Lib/tkinter/ |
D | ttk.py | 842 def forget(self, tab_id): argument 845 self.tk.call(self._w, "forget", tab_id) 848 def hide(self, tab_id): argument 854 self.tk.call(self._w, "hide", tab_id) 863 def index(self, tab_id): argument 866 return self.tk.getint(self.tk.call(self._w, "index", tab_id)) 878 def select(self, tab_id=None): argument 885 return self.tk.call(self._w, "select", tab_id) 888 def tab(self, tab_id, option=None, **kw): argument 896 return _val_or_dict(self.tk, kw, self._w, "tab", tab_id)
|
/external/autotest/client/site_tests/power_LoadTest/extension/ |
D | test.js | 204 function page_timestamps_new_record(tab_id, url, start) { argument 207 page_timestamps_recorder[tab_id] = {
|
/external/python/cpython2/Doc/library/ |
D | ttk.rst | 446 The *tab_id* present in several methods of :class:`ttk.Notebook` may take any 479 .. method:: forget(tab_id) 481 Removes the tab specified by *tab_id*, unmaps and unmanages the 485 .. method:: hide(tab_id) 487 Hides the tab specified by *tab_id*. 500 .. method:: index(tab_id) 502 Returns the numeric index of the tab specified by *tab_id*, or the total 503 number of tabs if *tab_id* is the string "end". 517 .. method:: select([tab_id]) 519 Selects the specified *tab_id*. [all …]
|
/external/python/cpython3/Doc/library/ |
D | tkinter.ttk.rst | 542 The tab_id present in several methods of :class:`ttk.Notebook` may take any 575 .. method:: forget(tab_id) 577 Removes the tab specified by *tab_id*, unmaps and unmanages the 581 .. method:: hide(tab_id) 583 Hides the tab specified by *tab_id*. 596 .. method:: index(tab_id) 598 Returns the numeric index of the tab specified by *tab_id*, or the total 599 number of tabs if *tab_id* is the string "end". 613 .. method:: select(tab_id=None) 615 Selects the specified *tab_id*. [all …]
|
/external/autotest/docs/ |
D | test-that.md | 102 http://cautotest/afe/#tab_id=view_job&object_id=5195962.
|
/external/cronet/third_party/metrics_proto/ukm/ |
D | source.proto | 104 optional int64 tab_id = 10; field
|
/external/mesa3d/src/imgui/ |
D | imgui_internal.h | 1429 IMGUI_API ImGuiTabItem* TabBarFindTabByID(ImGuiTabBar* tab_bar, ImGuiID tab_id); 1430 IMGUI_API void TabBarRemoveTab(ImGuiTabBar* tab_bar, ImGuiID tab_id); 1436 …mGuiTabItemFlags flags, ImVec2 frame_padding, const char* label, ImGuiID tab_id, ImGuiID close_but…
|
D | imgui_widgets.cpp | 6141 ImGuiTabItem* ImGui::TabBarFindTabByID(ImGuiTabBar* tab_bar, ImGuiID tab_id) in TabBarFindTabByID() argument 6143 if (tab_id != 0) in TabBarFindTabByID() 6145 if (tab_bar->Tabs[n].ID == tab_id) in TabBarFindTabByID() 6151 void ImGui::TabBarRemoveTab(ImGuiTabBar* tab_bar, ImGuiID tab_id) in TabBarRemoveTab() argument 6153 if (ImGuiTabItem* tab = TabBarFindTabByID(tab_bar, tab_id)) in TabBarRemoveTab() 6155 if (tab_bar->VisibleTabId == tab_id) { tab_bar->VisibleTabId = 0; } in TabBarRemoveTab() 6156 if (tab_bar->SelectedTabId == tab_id) { tab_bar->SelectedTabId = 0; } in TabBarRemoveTab() 6157 if (tab_bar->NextSelectedTabId == tab_id) { tab_bar->NextSelectedTabId = 0; } in TabBarRemoveTab() 6538 ImGuiID tab_id = TabBarCalcTabID(tab_bar, label); in SetTabItemClosed() local 6539 TabBarRemoveTab(tab_bar, tab_id); in SetTabItemClosed() [all …]
|
/external/autotest/ |
D | global_config.ini | 351 job_view = %s/afe/#tab_id=view_job&object_id=%s
|
/external/cronet/third_party/metrics_proto/ |
D | omnibox_event.proto | 32 optional int32 tab_id = 2; field
|