/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; 92 public void createControl(Composite parent) { 97 Composite composite = new Composite(parent, SWT.NULL); local 98 composite.setLayoutData(new GridData(GridData.FILL_BOTH)); 101 composite.setLayout(gl); 105 new Label(composite, SWT.NONE).setText("Destination APK file:"); 106 mDestination = new Text(composite, SWT.BORDER); 114 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/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...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGFECompositeElement.cpp | 129 FEComposite* composite = static_cast<FEComposite*>(effect); local 131 return composite->setOperation(svgOperatorCurrentValue()); 133 return composite->setK1(k1CurrentValue()); 135 return composite->setK2(k2CurrentValue()); 137 return composite->setK3(k3CurrentValue()); 139 return composite->setK4(k4CurrentValue());
|
/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 | 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/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.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...] |
/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...] |
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
KeyframeAnimationEffect.h | 60 void setComposite(AnimationEffect::CompositeOperation composite) { m_composite = composite; } 61 AnimationEffect::CompositeOperation composite() const { return m_composite; } function in class:WebCore::Keyframe
|
/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/chromium_org/third_party/WebKit/Source/web/tests/ |
TransparencyWinTest.cpp | 113 helper.composite(); 135 helper.composite(); 149 helper.composite(); 165 helper.composite(); 187 helper.composite(); 206 helper.composite(); 222 helper.composite(); 237 helper.composite(); 253 helper.composite(); 295 helper.composite(); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/ |
README | 32 composite / video work for the Xorg state tracker.
|
/external/mesa3d/src/gallium/state_trackers/xa/ |
README | 32 composite / video work for the Xorg state tracker.
|