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

1 2 3 4 5 6

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
GridLayoutFactory.java 14 import org.eclipse.swt.widgets.Composite;
30 private GridLayoutFactory(Composite composite, GridLayout layout) {
32 composite.setLayout(m_layout);
35 public static GridLayoutFactory create(Composite composite) {
36 return new GridLayoutFactory(composite, new GridLayout());
39 public static GridLayoutFactory modify(Composite composite) {
40 Layout layout = composite.getLayout()
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFA.java 54 return grammar.composite.getNewNFAStateNumber();
58 grammar.composite.addState(state);
62 return grammar.composite.getState(s);
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestCompositeGrammars.java 211 CompositeGrammar composite = new CompositeGrammar(); local
212 Grammar g = new Grammar(antlr,tmpdir+"/M.g",composite);
213 composite.setDelegationRoot(g);
215 g.composite.assignTokenTypes();
222 realElements(g.composite.tokenIDToTypeMap).toString());
223 assertEquals(expectedStringLiteralToTypeMap, g.composite.stringLiteralToTypeMap.toString());
225 realElements(g.composite.typeToTokenList).toString());
249 CompositeGrammar composite = new CompositeGrammar(); local
250 Grammar g = new Grammar(antlr,tmpdir+"/M.g",composite);
251 composite.setDelegationRoot(g)
283 CompositeGrammar composite = new CompositeGrammar(); local
336 CompositeGrammar composite = new CompositeGrammar(); local
384 CompositeGrammar composite = new CompositeGrammar(); local
426 CompositeGrammar composite = new CompositeGrammar(); local
461 CompositeGrammar composite = new CompositeGrammar(); local
487 CompositeGrammar composite = new CompositeGrammar(); local
618 CompositeGrammar composite = new CompositeGrammar(); local
658 CompositeGrammar composite = new CompositeGrammar(); local
766 CompositeGrammar composite = new CompositeGrammar(); local
829 CompositeGrammar composite = new CompositeGrammar(); local
875 CompositeGrammar composite = new CompositeGrammar(); local
929 CompositeGrammar composite = new CompositeGrammar(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeyCreationPage.java 31 import org.eclipse.swt.widgets.Composite;
67 public void createControl(Composite parent) {
68 Composite composite = new Composite(parent, SWT.NULL); local
69 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
71 composite.setLayout(gl);
75 new Label(composite, SWT.NONE).setText("Alias:");
76 mAlias = new Text(composite, SWT.BORDER);
79 new Label(composite, SWT.NONE).setText("Password:")
    [all...]
KeystoreSelectionPage.java 32 import org.eclipse.swt.widgets.Composite;
63 public void createControl(Composite parent) {
64 Composite composite = new Composite(parent, SWT.NULL); local
65 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
67 composite.setLayout(gl);
71 mUseExistingKeystore = new Button(composite, SWT.RADIO);
77 mCreateKeystore = new Button(composite, SWT.RADIO);
82 new Label(composite, SWT.NONE).setText("Location:")
    [all...]
KeySelectionPage.java 33 import org.eclipse.swt.widgets.Composite;
70 public void createControl(Composite parent) {
71 Composite composite = new Composite(parent, SWT.NULL); local
72 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
74 composite.setLayout(gl);
78 mUseExistingKey = new Button(composite, SWT.RADIO);
84 new Composite(composite, SWT.NONE).setLayoutData(gd = new GridData())
    [all...]
KeyCheckPage.java 35 import org.eclipse.swt.widgets.Composite;
80 public void createControl(Composite parent) {
85 Composite composite = new Composite(parent, SWT.NULL); local
86 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
89 composite.setLayout(gl);
93 new Label(composite, SWT.NONE).setText("Destination APK file:");
94 mDestination = new Text(composite, SWT.BORDER);
102 final Button browseButton = new Button(composite, SWT.PUSH)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interp.java 76 CompositeGrammar composite = new CompositeGrammar(); local
77 Grammar parser = new Grammar(tool, grammarFileName, composite);
78 composite.setDelegationRoot(parser);
84 parser.composite.assignTokenTypes();
85 parser.composite.defineGrammarSymbols();
86 parser.composite.createNFAs();
109 lexer.composite.createNFAs();
GrammarReport2.java 49 CompositeGrammar composite = root.composite; local
50 for (Grammar g : composite.getDelegates(root)) {
Grammar.java 300 /** If this grammar is part of a larger composite grammar via delegate
301 * statement, then this points at the composite. The composite holds
304 public CompositeGrammar composite; field in class:Grammar
515 public Grammar(Tool tool, String fileName, CompositeGrammar composite) {
516 this.composite = composite;
519 // ensure we have the composite set to something
520 if ( composite.delegateGrammarTreeRoot==null ) {
521 composite.setDelegationRoot(this)
    [all...]
RandomPhrase.java 155 CompositeGrammar composite = new CompositeGrammar(); local
157 Grammar parser = new Grammar(tool, grammarFileName, composite);
158 composite.setDelegationRoot(parser);
165 parser.composite.assignTokenTypes();
166 parser.composite.defineGrammarSymbols();
167 parser.composite.createNFAs();
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/wizards/
AddNativeWizardPage.java 26 import org.eclipse.swt.widgets.Composite;
55 public void createControl(Composite parent) {
56 Composite container = new Composite(parent, SWT.NULL);
63 Composite composite = new Composite(container, SWT.NONE); local
64 composite.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
65 composite.setLayout(new GridLayout(3, false));
67 Label lblLib = new Label(composite, SWT.NONE);
    [all...]
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeWizard.java 29 import org.eclipse.swt.widgets.Composite;
63 public void createControl(Composite parent) {
64 Composite composite = new Composite(parent, SWT.NONE); local
65 composite.setLayout(new GridLayout(2, false));
67 Label nameLabel = new Label(composite, SWT.NONE);
71 mNameText = new Text(composite, SWT.BORDER);
75 mReplaceAllOccurrences = new Button(composite, SWT.CHECK);
89 setControl(composite);
    [all...]
ChangeLayoutWizard.java 40 import org.eclipse.swt.widgets.Composite;
76 public void createControl(Composite parent) {
77 Composite composite = new Composite(parent, SWT.NONE); local
78 composite.setLayout(new GridLayout(2, false));
80 Label fromLabel = new Label(composite, SWT.NONE);
85 Label typeLabel = new Label(composite, SWT.NONE);
89 mTypeCombo = new Combo(composite, SWT.READ_ONLY);
104 mFlatten = new Button(composite, SWT.CHECK)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyComposite.java 114 XmlPropertyComposite composite = new XmlPropertyComposite(xmlProperties[0], xmlProperties); local
115 composite.setCategory(xmlProperties[0].getCategory());
116 return composite;
  /external/webkit/Source/WebKit/chromium/public/
WebWidget.h 82 virtual void composite(bool finish) = 0;
  /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;
81 public void createControl(Composite parent) {
84 Composite composite = new Composite(parent, SWT.NULL); local
85 composite.setLayout(new GridLayout(2, false /* makeColumnsEqualWidth */));
86 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
89 Label label = new Label(composite, SWT.NONE);
94 mConfigSelector = new ConfigurationSelector(composite, SelectorMode.DEFAULT);
106 Label separator = new Label(composite, SWT.SEPARATOR | SWT.HORIZONTAL)
    [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)
342 Composite composite = createChildContainer(scrolledComposite, header, SWT.NONE); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 30 import org.eclipse.swt.widgets.Composite;
72 public ManifestSectionPart(Composite body, FormToolkit toolkit) {
88 public ManifestSectionPart(Composite body, FormToolkit toolkit,
98 * Creates a new composite with a TableWrapLayout set with a given number of columns.
100 * If the parent composite is a Section, the new composite is set as a client.
104 * @return The new composite.
106 public Composite createTableLayout(FormToolkit toolkit, int numColumns) {
114 * @param parent The parent (e.g. composite from CreateTableLayout())
120 public Label createLabel(Composite parent, FormToolkit toolkit, String label
    [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...]
  /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.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...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CSpinner.java 24 import org.eclipse.swt.widgets.Composite;
41 public class CSpinner extends Composite {
60 private Composite win32Hack;
67 public CSpinner(Composite parent, int style) {
113 win32Hack = new Composite(this, SWT.NONE);
317 protected Point computeSize(Composite composite, int wHint, int hHint, boolean flushCache) {
334 protected void layout(Composite composite, boolean flushCache) {
335 Rectangle cRect = composite.getClientArea()
    [all...]

Completed in 415 milliseconds

1 2 3 4 5 6