/external/tinyalsa/include/tinyalsa/ |
D | mixer_plugin.h | 120 #define SND_VALUE_TLV_BYTES(csize, cget, cput) \ argument 121 {.size = csize, .get = cget, .put = cput } 123 #define SND_CONTROL_ENUM(cname, cget, cput, cenum, priv_val, priv_data) \ argument 127 .name = cname, .value = &cenum, .get = cget, .put = cput, \ 131 #define SND_CONTROL_BYTES(cname, cget, cput, cbytes, priv_val, priv_data) \ argument 136 .name = cname, .value = &cbytes, .get = cget, .put = cput, \ 140 #define SND_CONTROL_INTEGER(cname, cget, cput, cint, priv_val, priv_data) \ argument 145 .name = cname, .value = &cint, .get = cget, .put = cput, \ 159 #define INIT_SND_CONTROL_INTEGER(c, cname, cget, cput, cint, pval, pdata) \ argument 164 c->name = cname; c->value = &cint; c->get = cget; c->put = cput; \ [all …]
|
/external/tinyalsa_new/include/tinyalsa/ |
D | plugin.h | 52 #define SND_VALUE_TLV_BYTES(csize, cget, cput) \ argument 53 {.size = csize, .get = cget, .put = cput } 56 #define INIT_SND_CONTROL_INTEGER(c, cname, cget, cput, cint, pval, pdata) \ argument 61 c->name = cname; c->value = &cint; c->get = cget; c->put = cput; \ 65 #define INIT_SND_CONTROL_BYTES(c, cname, cget, cput, cint, pval, pdata) \ argument 70 c->name = cname; c->value = &cint; c->get = cget; c->put = cput; \ 74 #define INIT_SND_CONTROL_ENUM(c, cname, cget, cput, cenum, pval, pdata) \ argument 79 c->name = cname; c->value = cenum; c->get = cget; c->put = cput; \
|
/external/python/cpython3/Lib/tkinter/test/test_tkinter/ |
D | test_font.py | 26 self.assertEqual(self.font.cget(key), options[key]) 30 self.assertIsInstance(self.font.cget(key), str) 35 self.assertIsInstance(self.font.cget(key), sizetype) 44 self.assertEqual(f.cget('family'), family)
|
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/ |
D | test_font.py | 26 self.assertEqual(self.font.cget(key), options[key]) 30 self.assertIsInstance(self.font.cget(key), str) 35 self.assertIsInstance(self.font.cget(key), sizetype) 44 self.assertEqual(f.cget('family'), family)
|
/external/python/cpython2/Lib/lib-tk/ |
D | tkFont.py | 104 return self.cget(key) 131 def cget(self, option): member in Font 195 print f.cget("family") 196 print f.cget("weight")
|
D | Canvas.py | 32 cget = __getitem__ variable in CanvasItem
|
D | turtle.py | 427 def cget(self, *args, **kwargs): member in ScrolledCanvas 430 return self._canvas.cget(*args, **kwargs) 511 w = int(self.cv.cget("width")) 512 h = int(self.cv.cget("height")) 609 return self.cv.cget("bg")
|
/external/python/cpython3/Lib/tkinter/ |
D | font.py | 109 return self.cget(key) 137 def cget(self, option): member in Font 212 print(f.cget("family")) 213 print(f.cget("weight"))
|
/external/python/cpython3/Lib/idlelib/ |
D | sidebar.py | 32 widget.cget('padx'), 33 widget.cget('border'), 37 widget.cget('pady'), 38 widget.cget('border'),
|
D | autocomplete_w.py | 146 self.listbox.configure(selectbackground=self.listbox.cget("bg"), 147 selectforeground=self.listbox.cget("fg")) 201 self.origselforeground = listbox.cget("selectforeground") 202 self.origselbackground = listbox.cget("selectbackground")
|
D | squeezer.py | 235 int(text.cget('border')) + 236 int(text.cget('padx'))
|
D | codecontext.py | 112 padx += widget.tk.getint(widget.cget('padx')) 113 border += widget.tk.getint(widget.cget('border'))
|
D | config_key.py | 218 if self.button_level.cget('text').startswith('Advanced'):
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_textview.py | 113 self.assertEqual(frame.text.cget('wrap'), NONE) 120 self.assertEqual(frame.text.cget('wrap'), wrap) 187 self.assertEqual(text_widget.cget('wrap'), 'none')
|
D | htest.py | 381 text.configure(bg=root.cget('bg'), relief='flat', height=4, width=70)
|
/external/python/cpython2/Lib/idlelib/ |
D | CodeContext.py | 67 padx += int(str( widget.cget('padx') )) 71 border += int(str( widget.cget('border') ))
|
D | AutoCompleteWindow.py | 137 self.listbox.configure(selectbackground=self.listbox.cget("bg"), 138 selectforeground=self.listbox.cget("fg")) 190 self.origselforeground = listbox.cget("selectforeground") 191 self.origselbackground = listbox.cget("selectbackground")
|
D | tabbedpages.py | 63 background=self.cget('background')) 229 background = page_set.pages_frame.cget('background')
|
D | keybindingDialog.py | 147 if self.buttonLevel.cget('text')[:8]=='Advanced':
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | htest.py | 346 text.configure(bg=root.cget('bg'), relief='flat', height=4, width=70)
|
/external/python/cpython2/Demo/tix/samples/ |
D | DirTree.py | 92 self.dlist_dir = dir.cget('value')
|
D | DirList.py | 98 self.dlist_dir = dir.cget('value')
|
/external/google-breakpad/src/third_party/libdisasm/swig/ |
D | README | 118 % puts "[dis cget -last_error]"
|
/external/python/cpython3/Doc/library/ |
D | tkinter.font.rst | 52 .. method:: cget(option)
|
/external/python/cpython3/Lib/ |
D | turtle.py | 404 def cget(self, *args, **kwargs): member in ScrolledCanvas 407 return self._canvas.cget(*args, **kwargs) 488 w = int(self.cv.cget("width")) 489 h = int(self.cv.cget("height")) 586 return self.cv.cget("bg")
|