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

1 2 3

  /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...]
  /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();
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();
GrammarReport2.java 49 CompositeGrammar composite = root.composite; local
50 for (Grammar g : composite.getDelegates(root)) {
  /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...]
  /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/editors/layout/properties/
XmlPropertyComposite.java 114 XmlPropertyComposite composite = new XmlPropertyComposite(xmlProperties[0], xmlProperties); local
115 composite.setCategory(xmlProperties[0].getCategory());
116 return composite;
  /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;
96 public void createControl(final Composite parent) {
97 final Composite composite = new Composite(parent, SWT.NONE); local
98 composite.setLayout(new GridLayout(2, false));
100 final Label label = new Label(composite, SWT.NONE);
105 this.mProjectsCombo = new Combo(composite, SWT.READ_ONLY);
130 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;
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/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,
110 // Create another composite to hold the label and text box
111 Composite composite = new Composite(this, SWT.NONE); local
112 composite.setLayout(new GridLayout(2, false));
113 composite.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
116 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;
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...]
ChangeViewWizard.java 37 import org.eclipse.swt.widgets.Composite;
83 public void createControl(Composite parent) {
84 Composite composite = new Composite(parent, SWT.NONE); local
85 composite.setLayout(new GridLayout(2, false));
87 Label typeLabel = new Label(composite, SWT.NONE);
91 mTypeCombo = new Combo(composite, SWT.READ_ONLY);
98 setControl(composite);
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...]
WrapInWizard.java 43 import org.eclipse.swt.widgets.Composite;
83 public void createControl(Composite parent) {
84 Composite composite = new Composite(parent, SWT.NONE); local
85 composite.setLayout(new GridLayout(2, false));
87 Label typeLabel = new Label(composite, SWT.NONE);
91 mTypeCombo = new Combo(composite, SWT.READ_ONLY);
95 Label idLabel = new Label(composite, SWT.NONE);
99 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;
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...]
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...]
  /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...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/
Tool.java 462 rootGrammar.composite.assignTokenTypes();
463 //rootGrammar.composite.translateLeftRecursiveRules();
465 rootGrammar.composite.defineGrammarSymbols();
466 rootGrammar.composite.createNFAs();
507 lexerGrammar.composite.watchNFAConversion = internalOption_watchNFAConversion;
519 lexerGrammar.composite.assignTokenTypes();
521 lexerGrammar.composite.defineGrammarSymbols();
522 lexerGrammar.composite.createNFAs();
597 // create the necessary composite in case it's got delegates; even
599 CompositeGrammar composite = new CompositeGrammar() local
    [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)
342 Composite composite = createChildContainer(scrolledComposite, header, SWT.NONE); local
    [all...]

Completed in 593 milliseconds

1 2 3