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

1 2 3 4 5 6 7 8 9

  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyComposite.java 117 XmlPropertyComposite composite = new XmlPropertyComposite(xmlProperties[0], xmlProperties); local
118 composite.setCategory(xmlProperties[0].getCategory());
119 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 55 import org.eclipse.swt.widgets.Composite;
108 public void createUiControl(final Composite parent, IManagedForm managedForm) {
117 Composite composite = toolkit.createComposite(parent); local
118 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE));
121 composite.setLayout(gl);
124 toolkit.paintBordersFor(composite);
126 final Text text = toolkit.createText(composite, getCurrentValue());
128 gd.horizontalIndent = 1; // Needed by the fixed composite borders under GTK
130 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 36 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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkDebuggerTab.java 37 import org.eclipse.swt.widgets.Composite;
67 public void createControl(Composite parent) {
68 Composite comp = new Composite(parent, SWT.NONE);
149 Composite composite = new Composite(grpSharedLibraries, SWT.NONE); local
150 composite.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, false, false, 1, 1));
151 composite.setLayout(new RowLayout(SWT.VERTICAL));
153 mAddSolibButton = new Button(composite, SWT.NONE)
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/phonelookup/composite/
CompositePhoneLookup.java 17 package com.android.dialer.phonelookup.composite;
122 // Executes all child lookups (possibly in parallel), completing when the first composite lookup
  /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...]
  /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...]
  /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...]
  /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...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
UnicodeNormalizer.java 155 int composite = data.getPairwiseComposition(starterCh, ch); local
156 if (composite != NormalizerData.NOT_COMPOSITE
158 UTF16Util.setCodePointAt(target, starterPos, composite);
159 starterCh = composite;
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
UnicodeNormalizer.java 152 int composite = data.getPairwiseComposition(starterCh, ch); local
153 if (composite != NormalizerData.NOT_COMPOSITE
155 UTF16Util.setCodePointAt(target, starterPos, composite);
156 starterCh = composite;
  /frameworks/layoutlib/bridge/src/android/graphics/
BlendComposite.java 19 import java.awt.Composite;
38 public final class BlendComposite implements Composite {
123 private final BlendComposite composite; field in class:BlendComposite.BlendingContext
125 private BlendingContext(BlendComposite composite) {
126 this.composite = composite;
127 this.blender = Blender.getBlenderFor(composite);
144 float alpha = composite.getAlpha();
202 public static Blender getBlenderFor(BlendComposite composite) {
203 switch (composite.getMode())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateWizard.java 173 CompositeChange composite = new CompositeChange("", local
175 composite.perform(monitor);
  /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...]

Completed in 941 milliseconds

1 2 3 4 5 6 7 8 9