HomeSort by relevance Sort by last modified time
    Searched refs:combo (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
StringComboPropertyEditor.java 50 protected void addItems(Property property, CCombo3 combo) throws Exception {
52 combo.add(item);
57 protected void selectItem(Property property, CCombo3 combo) throws Exception {
58 combo.setText(getText(property));
62 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception {
AbstractListPropertyEditor.java 83 // Combo
87 protected void addItems(Property property, CCombo3 combo) throws Exception {
89 combo.add(getTitle(i));
94 protected void selectItem(Property property, CCombo3 combo) throws Exception {
95 combo.setText(getText(property));
99 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception {
107 toPropertyEx_simpleProperty(property, combo, index);
127 protected void toPropertyEx_simpleProperty(Property property, CCombo3 combo, int index)
EnumerationValuesPropertyEditor.java 103 // Combo
107 protected void addItems(Property property, CCombo3 combo) throws Exception {
109 combo.add(title);
114 protected void selectItem(Property property, CCombo3 combo) throws Exception {
115 combo.setText(getText(property));
119 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception {
AbstractComboBoxPropertyEditor.java 144 protected abstract void addItems(Property property, CComboBox combo) throws Exception;
149 protected void selectItem(Property property, CComboBox combo) throws Exception {
155 protected abstract void toPropertyEx(Property property, CComboBox combo) throws Exception;
AbstractComboPropertyEditor.java 47 // create combo
129 protected abstract void addItems(Property property, CCombo3 combo) throws Exception;
134 protected abstract void selectItem(Property property, CCombo3 combo) throws Exception;
139 protected abstract void toPropertyEx(Property property, CCombo3 combo, int index)
StringListPropertyEditor.java 28 // Combo
32 protected void toPropertyEx_simpleProperty(Property property, CCombo3 combo, int index)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
EnumXmlPropertyEditor.java 57 protected void addItems(Property property, CCombo3 combo) throws Exception {
59 combo.add(item);
64 protected void selectItem(Property property, CCombo3 combo) throws Exception {
65 combo.setText(getText(property));
69 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
WrapInWizard.java 42 import org.eclipse.swt.widgets.Combo;
73 private Combo mTypeCombo;
91 mTypeCombo = new Combo(composite, SWT.READ_ONLY);
166 String oldType, Combo combo,
172 combo.add(RADIO_GROUP);
176 combo.add(SEPARATOR_LABEL);
185 combo.add(view);
188 combo.add(SEPARATOR_LABEL);
192 // Populate type combo
    [all...]
ChangeViewWizard.java 36 import org.eclipse.swt.widgets.Combo;
72 private Combo mTypeCombo;
91 mTypeCombo = new Combo(composite, SWT.READ_ONLY);
104 private List<String> getWidgetTypes(String oldType, Combo combo) {
107 // Populate type combo
121 combo.add(base);
124 combo.add(SEPARATOR_LABEL);
135 combo.add(view);
138 combo.add(SEPARATOR_LABEL)
    [all...]
  /build/core/combo/arch/x86/
silvermont.mk 4 # See build/core/combo/arch/x86/x86-atom.mk for differences.
x86-atom.mk 5 # See build/core/combo/arch/x86/x86.mk for differences.
  /build/core/combo/arch/x86_64/
silvermont.mk 4 # See build/core/combo/arch/x86/x86-atom.mk for differences.
x86_64-atom.mk 5 # See build/core/combo/arch/x86_64/x86_64.mk for differences.
  /build/tools/
compare_fileslist.py 85 combo = input.split(os.path.sep)[1]
86 print " <td class='fn'>%s</td>" % cgi.escape(combo)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewTemplatePage.java 76 import org.eclipse.swt.widgets.Combo;
361 Combo combo = createOptionCombo(parameter, container, mValues.parameters, local
363 combo.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false,
367 mFirst = combo;
371 ControlDecoration decoration = createFieldDecoration(id, combo, help);
419 static Combo createOptionCombo(
425 Combo combo = new Combo(container, SWT.READ_ONLY) local
653 Combo combo = (Combo) parameter.control; local
661 Combo combo = (Combo) parameter.control; local
752 Combo combo = (Combo) source; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 117 self.combo = ttk.Combobox()
120 self.combo.destroy()
124 width = self.combo.winfo_width()
125 self.combo.event_generate('<ButtonPress-1>', x=width - 5, y=5)
126 self.combo.event_generate('<ButtonRelease-1>', x=width - 5, y=5)
127 self.combo.update_idletasks()
133 self.combo['values'] = [1]
134 self.combo.bind('<<ComboboxSelected>>',
136 self.combo.pack()
137 self.combo.wait_visibility(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 117 self.combo = ttk.Combobox()
120 self.combo.destroy()
124 width = self.combo.winfo_width()
125 self.combo.event_generate('<ButtonPress-1>', x=width - 5, y=5)
126 self.combo.event_generate('<ButtonRelease-1>', x=width - 5, y=5)
127 self.combo.update_idletasks()
133 self.combo['values'] = [1]
134 self.combo.bind('<<ComboboxSelected>>',
136 self.combo.pack()
137 self.combo.wait_visibility(
    [all...]