/external/autotest/frontend/client/src/autotest/tko/ |
D | WidgetList.java | 24 private List<T> widgets = new ArrayList<T>(); field in WidgetList 45 widgets.add(widget); in addWidget() 50 widgets.remove(widget); in deleteWidget() 63 return Collections.unmodifiableList(widgets); in getWidgets() 67 widgets.clear(); in clear()
|
/external/python/cpython2/Demo/tix/ |
D | README.txt | 5 pytix (another Python-Tix marriage). Tix widgets are an attractive and 11 2) Tix widgets are represented by classes in Python. Sub-widgets 17 of widgets like ButtonBox, the members are added dynamically.
|
D | tixwidgets.py | 240 demonstrates the widgets in the Tix widget set. You can choose the pages \ 241 in this window to look at the corresponding widgets. \n\n\
|
/external/autotest/client/cros/chameleon/ |
D | chameleon_audio_helper.py | 394 def create_binder(self, *widgets): argument 403 if len(widgets) == 2: 404 return self._create_widget_binder(widgets[0], widgets[1]) 406 for index in xrange(len(widgets) - 1): 409 widgets[index], widgets[index + 1]))
|
/external/python/cpython2/Doc/library/ |
D | othergui.rst | 14 the C one. It comes with many more widgets than Tkinter provides, and has 36 widgets where ever possible, (GTK+ on Unix-like systems). In addition to 37 an extensive set of widgets, wxPython provides classes for online 46 widgets than Tkinter. In addition, there are many other GUI toolkits for
|
D | tix.rst | 1 :mod:`Tix` --- Extension widgets for Tk 12 of widgets. Although the standard Tk library has many useful widgets, they are 14 widgets that are missing from standard Tk: :class:`HList`, :class:`ComboBox`, 15 :class:`Control` (a.k.a. SpinBox) and an assortment of scrollable widgets. 16 :mod:`Tix` also includes many more widgets that are generally useful in a wide 20 With all these new widgets, you can introduce new interaction techniques into 22 design your application by choosing the most appropriate widgets to match the 68 To use :mod:`Tix`, you must have the :mod:`Tix` widgets installed, usually 69 alongside your installation of the Tk widgets. To test your installation, try 93 demo of all the :mod:`Tix` widgets in the :file:`Demo/tix` directory of the [all …]
|
D | tkinter.rst | 27 Extensive tutorial plus friendlier widget pages for some of the widgets. 250 for subclassing to make "real" widgets (in C++, this is called an 'abstract 271 enforce this, widgets in Tk are named with *pathnames*, just like files in a 343 various forms of the pack command are implemented as methods. All widgets in 372 The Tcl part of the Tk widgets is used to bind certain default behaviors to 373 widgets, and is executed once at the point where the Python :mod:`Tkinter` 416 widgets, the latter are the options that are idiosyncratic to that particular 421 document. Some options don't apply to some kinds of widgets. Whether a given 464 .. index:: single: packing (widgets) 467 are used to specify the relative positioning of the positioning of widgets [all …]
|
D | ttk.rst | 1 :mod:`ttk` --- Tk themed widgets 44 And then several :mod:`ttk` widgets (:class:`Button`, :class:`Checkbutton`, 47 and :class:`Scrollbar`) will automatically substitute for the Tk widgets. 49 This has the direct benefit of using the new widgets, giving better look & feel 52 widget styling are no longer present in Ttk widgets. Use :class:`ttk.Style` to 57 …`Converting existing applications to use the Tile widgets <http://tktable.sourceforge.net/tile/doc… 59 converting applications to use the new widgets. 65 Ttk comes with 17 widgets, 11 of which already exist in Tkinter: 98 themed widgets and is not supposed to be directly instantiated. 104 All the :mod:`ttk` widgets accept the following options: [all …]
|
D | scrolledtext.rst | 33 The frame which surrounds the text and scroll bar widgets.
|
D | tk.rst | 21 :mod:`Tkinter` is a set of wrappers that implement the Tk widgets as Python
|
D | undoc.rst | 206 The :mod:`W` widgets are used extensively in the :program:`IDE`.
|
/external/python/cpython2/Lib/idlelib/ |
D | CodeContext.py | 62 widgets = self.editwin.text, self.editwin.text_frame 65 for widget in widgets: 70 for widget in widgets:
|
/external/pdfium/fpdfsdk/ |
D | cpdfsdk_interform.h | 45 std::vector<CPDFSDK_Annot::ObservedPtr>* widgets) const; 47 std::vector<CPDFSDK_Annot::ObservedPtr>* widgets) const;
|
D | cpdfsdk_interform.cpp | 120 std::vector<CPDFSDK_Annot::ObservedPtr>* widgets) const { in GetWidgets() 124 GetWidgets(pFormField, widgets); in GetWidgets() 130 std::vector<CPDFSDK_Annot::ObservedPtr>* widgets) const { in GetWidgets() 136 widgets->emplace_back(pWidget); in GetWidgets()
|
/external/python/cpython2/Demo/tkinter/matt/ |
D | README | 24 Message widgets
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
D | wpa_gui.pro | 4 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
/external/syslinux/gpxe/src/ |
D | Makefile | 73 SRCDIRS += hci/mucurses hci/mucurses/widgets
|
/external/pdfium/fpdfsdk/javascript/ |
D | Field.cpp | 270 std::vector<CPDFSDK_Annot::ObservedPtr> widgets; in UpdateFormField() local 271 pInterForm->GetWidgets(pFormField, &widgets); in UpdateFormField() 275 for (auto& pObserved : widgets) { in UpdateFormField() 287 for (auto& pObserved : widgets) { in UpdateFormField() 300 std::vector<CPDFSDK_Annot::ObservedPtr> widgets; in UpdateFormField() local 301 pInterForm->GetWidgets(pFormField, &widgets); in UpdateFormField() 306 for (auto& pObserved : widgets) { in UpdateFormField() 1804 std::vector<CPDFSDK_Annot::ObservedPtr> widgets; in page() local 1805 m_pFormFillEnv->GetInterForm()->GetWidgets(pFormField, &widgets); in page() 1806 if (widgets.empty()) { in page() [all …]
|
D | Document.cpp | 490 std::vector<CPDFSDK_Annot::ObservedPtr> widgets; in removeField() local 491 pInterForm->GetWidgets(sFieldName, &widgets); in removeField() 492 if (widgets.empty()) in removeField() 495 for (const auto& pAnnot : widgets) { in removeField()
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | README.txt | 56 deleted. Others widgets should descend from the single root and the attributes 93 Tests of non-GUI operations should avoid creating tk widgets. Incidental uses of
|
/external/doclava/src/com/google/doclava/ |
D | Doclava.java | 1750 ArrayList<ClassInfo> widgets = new ArrayList<ClassInfo>(); in writeSdkValues() local 1799 widgets.add(clazz); in writeSdkValues() 1822 widgets.add(clazz); in writeSdkValues() 1871 writeClasses(output + "/widgets.txt", widgets, layouts, layoutParams); in writeSdkValues() 1922 private static void writeClasses(String pathname, ArrayList<ClassInfo> widgets, in writeClasses() argument 1931 for (ClassInfo clazz : widgets) { in writeClasses()
|
/external/fmtlib/doc/bootstrap/ |
D | scaffolding.less | 8 // Heads up! This reset may cause conflicts with some third-party widgets.
|
/external/mesa3d/docs/ |
D | VERSIONS | 41 Mesa widgets for Xt/Motif 59 - updated widgets and widget demos 88 - widgets now pass PointerMotion events 328 - various compilation problems with Motif widgets fixed 472 - updated widgets-mesa directory to create libMesaGLwM.a (Motif widget) 698 - fixed Motif detection code in widgets-mesa/configure.in 754 - widgets-mesa/src/*.c files were missing from 3.3 distro 788 - updated sources and fixed compile problems in widgets-mesa/
|
/external/libexif/ |
D | README | 79 - libexif-gtk: library of widgets to help display EXIF tags in GTK
|
/external/clang/include/clang/Basic/ |
D | LangOptions.def | 35 // widgets" or "C's implicit blintz feature".
|