HomeSort by relevance Sort by last modified time
    Searched defs:composite (Results 1 - 25 of 44) sorted by null

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/wizards/
AddNativeWizardPage.java 26 import org.eclipse.swt.widgets.Composite;
54 public void createControl(Composite parent) {
55 Composite container = new Composite(parent, SWT.NULL);
62 Composite composite = new Composite(container, SWT.NONE); local
63 composite.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
64 composite.setLayout(new GridLayout(3, false));
66 Label lblLib = new Label(composite, SWT.NONE);
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGFECompositeElement.cpp 87 FEComposite* composite = static_cast<FEComposite*>(effect); local
89 return composite->setOperation(static_cast<CompositeOperationType>(_operator()));
91 return composite->setK1(k1());
93 return composite->setK2(k2());
95 return composite->setK3(k3());
97 return composite->setK4(k4());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidClasspathContainerPage.java 39 import org.eclipse.swt.widgets.Composite;
93 public void createControl(final Composite parent) {
94 final Composite composite = new Composite(parent, SWT.NONE); local
95 composite.setLayout(new GridLayout(2, false));
97 final Label label = new Label(composite, SWT.NONE);
102 this.mProjectsCombo = new Combo(composite, SWT.READ_ONLY);
127 setControl(composite);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiFlagAttributeNode.java 39 import org.eclipse.swt.widgets.Composite;
82 public void createUiControl(Composite parent, IManagedForm managedForm) {
91 Composite composite = toolkit.createComposite(parent); local
92 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE));
95 composite.setLayout(gl);
98 toolkit.paintBordersFor(composite);
100 final Text text = toolkit.createText(composite, getCurrentValue());
102 gd.horizontalIndent = 1; // Needed by the fixed composite borders under GTK
104 final Button selectButton = toolkit.createButton(composite, "Select...", SWT.PUSH)
222 Composite composite= new Composite(parent, SWT.NONE); local
    [all...]
UiResourceAttributeNode.java 48 import org.eclipse.swt.widgets.Composite;
91 public void createUiControl(final Composite parent, IManagedForm managedForm) {
100 Composite composite = toolkit.createComposite(parent); local
101 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE));
104 composite.setLayout(gl);
107 toolkit.paintBordersFor(composite);
109 final Text text = toolkit.createText(composite, getCurrentValue());
111 gd.horizontalIndent = 1; // Needed by the fixed composite borders under GTK
113 Button browseButton = toolkit.createButton(composite, "Browse...", SWT.PUSH)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
ChooseConfigurationPage.java 37 import org.eclipse.swt.widgets.Composite;
80 public void createControl(Composite parent) {
83 Composite composite = new Composite(parent, SWT.NULL); local
84 composite.setLayout(new GridLayout(2, false /* makeColumnsEqualWidth */));
85 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
88 Label label = new Label(composite, SWT.NONE);
93 mConfigSelector = new ConfigurationSelector(composite, SelectorMode.DEFAULT);
105 Label separator = new Label(composite, SWT.SEPARATOR | SWT.HORIZONTAL)
    [all...]
NewXmlFileCreationPage.java 79 import org.eclipse.swt.widgets.Composite;
438 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
441 public void createControl(Composite parent) {
444 Composite composite = new Composite(parent, SWT.NULL); local
445 composite.setLayout(new GridLayout(2, false /*makeColumnsEqualWidth*/));
446 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
449 Label typeLabel = new Label(composite, SWT.NONE);
452 mTypeCombo = new Combo(composite, SWT.DROP_DOWN | SWT.READ_ONLY)
    [all...]
  /sdk/traceview/src/com/android/traceview/
ProfileView.java 37 import org.eclipse.swt.widgets.Composite;
51 public class ProfileView extends Composite implements Observer {
66 public ProfileView(Composite parent, TraceReader reader,
109 // Create another composite to hold the label and text box
110 Composite composite = new Composite(this, SWT.NONE); local
111 composite.setLayout(new GridLayout(2, false));
112 composite.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
115 Label label = new Label(composite, SWT.NONE)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
WorkingSetGroup.java 20 import org.eclipse.swt.widgets.Composite;
47 public Composite createControl(Composite composite) {
48 Group workingSetGroup = new Group(composite, SWT.NONE);
49 workingSetGroup.setFont(composite.getFont());
92 * Finds the first button of style Checkbox in the given parent composite.
95 private Button findCheckbox(Composite parent) {
99 } else if (control instanceof Composite) {
100 Button found = findCheckbox((Composite) control)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutWizard.java 40 import org.eclipse.swt.widgets.Composite;
75 public void createControl(Composite parent) {
76 Composite composite = new Composite(parent, SWT.NONE); local
77 composite.setLayout(new GridLayout(2, false));
79 Label fromLabel = new Label(composite, SWT.NONE);
84 Label typeLabel = new Label(composite, SWT.NONE);
88 mTypeCombo = new Combo(composite, SWT.READ_ONLY);
103 mFlatten = new Button(composite, SWT.CHECK)
    [all...]
ChangeViewWizard.java 37 import org.eclipse.swt.widgets.Composite;
82 public void createControl(Composite parent) {
83 Composite composite = new Composite(parent, SWT.NONE); local
84 composite.setLayout(new GridLayout(2, false));
86 Label typeLabel = new Label(composite, SWT.NONE);
90 mTypeCombo = new Combo(composite, SWT.READ_ONLY);
97 setControl(composite);
ExtractIncludeWizard.java 29 import org.eclipse.swt.widgets.Composite;
62 public void createControl(Composite parent) {
63 Composite composite = new Composite(parent, SWT.NONE); local
64 composite.setLayout(new GridLayout(2, false));
66 Label nameLabel = new Label(composite, SWT.NONE);
70 mNameText = new Text(composite, SWT.BORDER);
74 mReplaceAllOccurrences = new Button(composite, SWT.CHECK);
88 setControl(composite);
    [all...]
WrapInWizard.java 43 import org.eclipse.swt.widgets.Composite;
82 public void createControl(Composite parent) {
83 Composite composite = new Composite(parent, SWT.NONE); local
84 composite.setLayout(new GridLayout(2, false));
86 Label typeLabel = new Label(composite, SWT.NONE);
90 mTypeCombo = new Combo(composite, SWT.READ_ONLY);
94 Label idLabel = new Label(composite, SWT.NONE);
98 mIdText = new Text(composite, SWT.BORDER)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiManifestPkgAttrNode.java 51 import org.eclipse.swt.widgets.Composite;
92 public void createUiControl(final Composite parent, final IManagedForm managedForm) {
113 Composite composite = toolkit.createComposite(parent); local
114 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE));
117 composite.setLayout(gl);
120 toolkit.paintBordersFor(composite);
122 final Text text = toolkit.createText(composite, getCurrentValue());
124 gd.horizontalIndent = 1; // Needed by the fixed composite borders under GTK
129 Button browseButton = toolkit.createButton(composite, "Browse...", SWT.PUSH)
    [all...]
UiPackageAttributeNode.java 53 import org.eclipse.swt.widgets.Composite;
92 public void createUiControl(final Composite parent, final IManagedForm managedForm) {
113 Composite composite = toolkit.createComposite(parent); local
114 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE));
117 composite.setLayout(gl);
120 toolkit.paintBordersFor(composite);
122 final Text text = toolkit.createText(composite, getCurrentValue());
124 gd.horizontalIndent = 1; // Needed by the fixed composite borders under GTK
129 Button browseButton = toolkit.createButton(composite, "Browse...", SWT.PUSH)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeySelectionPage.java 33 import org.eclipse.swt.widgets.Composite;
69 public void createControl(Composite parent) {
70 Composite composite = new Composite(parent, SWT.NULL); local
71 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
73 composite.setLayout(gl);
77 mUseExistingKey = new Button(composite, SWT.RADIO);
83 new Composite(composite, SWT.NONE).setLayoutData(gd = new GridData())
    [all...]
KeystoreSelectionPage.java 32 import org.eclipse.swt.widgets.Composite;
62 public void createControl(Composite parent) {
63 Composite composite = new Composite(parent, SWT.NULL); local
64 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
66 composite.setLayout(gl);
70 mUseExistingKeystore = new Button(composite, SWT.RADIO);
76 mCreateKeystore = new Button(composite, SWT.RADIO);
81 new Label(composite, SWT.NONE).setText("Location:")
    [all...]
KeyCheckPage.java 35 import org.eclipse.swt.widgets.Composite;
79 public void createControl(Composite parent) {
84 Composite composite = new Composite(parent, SWT.NULL); local
85 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
88 composite.setLayout(gl);
92 new Label(composite, SWT.NONE).setText("Destination APK file:");
93 mDestination = new Text(composite, SWT.BORDER);
100 final Button browseButton = new Button(composite, SWT.PUSH)
    [all...]
KeyCreationPage.java 31 import org.eclipse.swt.widgets.Composite;
66 public void createControl(Composite parent) {
67 Composite composite = new Composite(parent, SWT.NULL); local
68 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
70 composite.setLayout(gl);
74 new Label(composite, SWT.NONE).setText("Alias:");
75 mAlias = new Text(composite, SWT.BORDER);
78 new Label(composite, SWT.NONE).setText("Password:")
    [all...]
  /sdk/sdkstats/src/com/android/sdkstats/
SdkStatsPermissionDialog.java 30 import org.eclipse.swt.widgets.Composite;
95 protected void createButtonsForButtonBar(Composite parent) {
100 protected Control createDialogArea(Composite parent) {
101 Composite composite = (Composite) super.createDialogArea(parent); local
102 composite.setLayout(new GridLayout(1, false));
104 final Label title = new Label(composite, SWT.CENTER | SWT.WRAP);
113 final Label notice = new Label(composite, SWT.WRAP);
120 final Label bodyText = new Label(composite, SWT.WRAP)
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
BreakpointOption.java 35 import org.eclipse.swt.widgets.Composite;
49 BreakpointOption(SampleView sampleView, Composite parent) {
53 Composite composite = new Composite(this, 0); local
56 composite.setLayout(layout);
60 Group group = new Group(composite, 0);
71 Point size = composite.computeSize(SWT.DEFAULT, SWT.DEFAULT);
72 composite.setSize(size);
73 this.setContent(composite);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
BreakpointOption.java 35 import org.eclipse.swt.widgets.Composite;
49 BreakpointOption(GLFramesView view, Composite parent) {
53 Composite composite = new Composite(this, 0); local
56 composite.setLayout(layout);
60 Group group = new Group(composite, 0);
71 Point size = composite.computeSize(SWT.DEFAULT, SWT.DEFAULT);
72 composite.setSize(size);
73 this.setContent(composite);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
AccordionControl.java 38 import org.eclipse.swt.widgets.Composite;
53 * composite which is created to hold the children items, to for example allow multiple
65 public abstract class AccordionControl extends Composite {
85 protected Composite createChildContainer(Composite parent, Object header, int style) {
86 Composite composite = new Composite(parent, style); local
90 composite.setLayout(layout);
100 composite.setLayout(layout)
339 Composite composite = createChildContainer(scrolledComposite, header, SWT.NONE); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
TransparencyWin.cpp 161 // This should be false, since calling composite() is mandatory.
165 void TransparencyWin::composite() function in class:WebCore::TransparencyWin
  /external/webkit/Source/WebKit/chromium/src/
WebPopupMenuImpl.cpp 176 void WebPopupMenuImpl::composite(bool finish) function in class:WebKit::WebPopupMenuImpl

Completed in 693 milliseconds

1 2