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

1 2 3 4 5 6 7 8 9

  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/combo/
combo.edc 23 name: "webkit/widget/combo";
26 image: "widget/combo/combo_normal.png" COMP;
27 image: "widget/combo/combo_normal_button.png" COMP;
28 image: "widget/combo/combo_hover.png" COMP;
29 image: "widget/combo/combo_hover_button.png" COMP;
30 image: "widget/combo/combo_focus.png" COMP;
31 image: "widget/combo/combo_focus_button.png" COMP;
32 image: "widget/combo/combo_press.png" COMP;
33 image: "widget/combo/combo_press_button.png" COMP;
34 image: "widget/combo/icon.png" COMP
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
MediaSetTest.java 52 MediaSet combo = dataManager.getMediaSet("/combo/{/mock/0,/mock/1}"); local
53 assertEquals(5, combo.getSubMediaSetCount());
54 assertEquals(0, combo.getMediaItemCount());
55 assertEquals("/mock/00", combo.getSubMediaSet(0).getPath().toString());
56 assertEquals("/mock/01", combo.getSubMediaSet(1).getPath().toString());
57 assertEquals("/mock/10", combo.getSubMediaSet(2).getPath().toString());
58 assertEquals("/mock/11", combo.getSubMediaSet(3).getPath().toString());
59 assertEquals("/mock/12", combo.getSubMediaSet(4).getPath().toString());
61 assertEquals(10, combo.getTotalMediaItemCount())
    [all...]
  /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 {
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 {
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)
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)
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ComboSource.java 28 super("combo");
31 mMatcher.add("/combo/*", COMBO_ALBUMSET);
32 mMatcher.add("/combo/*/*", COMBO_ALBUM);
35 // The only path we accept is "/combo/{set1, set2, ...} and /combo/item/{set1, set2, ...}"
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
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...]
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...]
  /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 {
  /build/core/combo/arch/x86/
x86-atom.mk 5 # See build/core/combo/arch/x86/x86.mk for differences.
  /external/webkit/Source/WebKit/qt/examples/platformplugin/
README 4 that will provide combo boxes popups to QtWebKit.
  /external/webkit/Source/WebKit/efl/
CMakeListsEfl.txt 134 ${WEBKIT_DIR}/efl/DefaultTheme/widget/combo/combo_focus_button.png
135 ${WEBKIT_DIR}/efl/DefaultTheme/widget/combo/combo_press.png
136 ${WEBKIT_DIR}/efl/DefaultTheme/widget/combo/icon.png
137 ${WEBKIT_DIR}/efl/DefaultTheme/widget/combo/combo_normal.png
138 ${WEBKIT_DIR}/efl/DefaultTheme/widget/combo/combo_hover.png
139 ${WEBKIT_DIR}/efl/DefaultTheme/widget/combo/combo_normal_button.png
140 ${WEBKIT_DIR}/efl/DefaultTheme/widget/combo/combo_focus.png
141 ${WEBKIT_DIR}/efl/DefaultTheme/widget/combo/combo_hover_button.png
142 ${WEBKIT_DIR}/efl/DefaultTheme/widget/combo/combo.ed
    [all...]
  /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...]
  /external/webkit/Source/WebKit/efl/DefaultTheme/
default.edc 44 name: "webkit/combo/text";
70 #include "widget/combo/combo.edc"
  /external/chromium/chrome/browser/chromeos/views/
dropdown_button.h 28 // accessible name, since this acts more like a combo box than a
  /frameworks/base/docs/downloads/devbytes/
PropertyAnimations.zip 
  /frameworks/compile/mclinker/
mcld-device-build.mk 4 # We move them from global build/core/combo/TARGET_linux-arm.mk
  /external/webkit/Tools/MiniBrowser/qt/
BrowserWindow.cpp 325 QComboBox* combo = new QComboBox(&dialog); local
326 combo->setSizeAdjustPolicy(QComboBox::AdjustToMinimumContentsLength);
327 combo->setEditable(true);
328 combo->insertItems(0, m_userAgentList);
329 layout->addWidget(combo);
331 int index = combo->findText(page()->customUserAgent());
332 combo->setCurrentIndex(index);
340 if (dialog.exec() && !combo->currentText().isEmpty())
341 page()->setCustomUserAgent(combo->currentText());
  /external/chromium/chrome/browser/ui/gtk/infobars/
translate_infobar_base_gtk.cc 22 // To be able to map from language id <-> entry in the combo box, we
23 // store the language id in the combo box data model in addition to the
175 size_t TranslateInfoBarBase::GetLanguageComboboxActiveId(GtkComboBox* combo) {
177 if (!gtk_combo_box_get_active_iter(combo, &iter))
181 gtk_tree_model_get(gtk_combo_box_get_model(combo), &iter,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiListAttributeNode.java 37 import org.eclipse.swt.widgets.Combo;
46 * an editable Combo box.
52 protected Combo mCombo;
75 mCombo = new Combo(parent, style);
206 * Handles Combo change, either from text edit or from selection change.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
LocaleMenuListener.java 78 static void show(final ConfigurationChooser chooser, ToolItem combo) {
118 Rectangle bounds = combo.getBounds();
120 location = combo.getParent().toDisplay(location);
TargetMenuListener.java 77 static void show(ConfigurationChooser chooser, ToolItem combo) {
120 Rectangle bounds = combo.getBounds();
122 location = combo.getParent().toDisplay(location);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
InputDensityDialog.java 26 import org.eclipse.swt.widgets.Combo;
36 private Combo mCombo;
56 mCombo = new Combo(container, SWT.READ_ONLY);

Completed in 908 milliseconds

1 2 3 4 5 6 7 8 9