Home
last modified time | relevance | path

Searched refs:cget (Results 1 – 25 of 36) sorted by relevance

12

/external/tinyalsa/include/tinyalsa/
Dmixer_plugin.h120 #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/
Dplugin.h52 #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/
Dtest_font.py26 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/
Dtest_font.py26 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/
DtkFont.py104 return self.cget(key)
131 def cget(self, option): member in Font
195 print f.cget("family")
196 print f.cget("weight")
DCanvas.py32 cget = __getitem__ variable in CanvasItem
Dturtle.py427 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/
Dfont.py109 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/
Dsidebar.py32 widget.cget('padx'),
33 widget.cget('border'),
37 widget.cget('pady'),
38 widget.cget('border'),
Dautocomplete_w.py146 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")
Dsqueezer.py235 int(text.cget('border')) +
236 int(text.cget('padx'))
Dcodecontext.py112 padx += widget.tk.getint(widget.cget('padx'))
113 border += widget.tk.getint(widget.cget('border'))
Dconfig_key.py218 if self.button_level.cget('text').startswith('Advanced'):
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_textview.py113 self.assertEqual(frame.text.cget('wrap'), NONE)
120 self.assertEqual(frame.text.cget('wrap'), wrap)
187 self.assertEqual(text_widget.cget('wrap'), 'none')
Dhtest.py381 text.configure(bg=root.cget('bg'), relief='flat', height=4, width=70)
/external/python/cpython2/Lib/idlelib/
DCodeContext.py67 padx += int(str( widget.cget('padx') ))
71 border += int(str( widget.cget('border') ))
DAutoCompleteWindow.py137 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")
Dtabbedpages.py63 background=self.cget('background'))
229 background = page_set.pages_frame.cget('background')
DkeybindingDialog.py147 if self.buttonLevel.cget('text')[:8]=='Advanced':
/external/python/cpython2/Lib/idlelib/idle_test/
Dhtest.py346 text.configure(bg=root.cget('bg'), relief='flat', height=4, width=70)
/external/python/cpython2/Demo/tix/samples/
DDirTree.py92 self.dlist_dir = dir.cget('value')
DDirList.py98 self.dlist_dir = dir.cget('value')
/external/google-breakpad/src/third_party/libdisasm/swig/
DREADME118 % puts "[dis cget -last_error]"
/external/python/cpython3/Doc/library/
Dtkinter.font.rst52 .. method:: cget(option)
/external/python/cpython3/Lib/
Dturtle.py404 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")

12