HomeSort by relevance Sort by last modified time
    Searched refs:composite (Results 51 - 75 of 362) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/fixedbugs/
gcc61264.go 7 // PR61264: IncDec statements involving composite literals caused in ICE in gccgo.
gcc61265.go 7 // PR61265: The gccgo middle-end failed to represent array composite literals
issue4879.go 8 // composite literals in inlined bodies.
issue7590.go 7 // Issue 7590: gccgo incorrectly traverses nested composite literals.
bug098.go 14 var m *M = &M{0 : 0}; // should be legal to use & here for consistency with other composite constructors (prev. line)
bug494.go 8 // appeared in a composite literal that required a conversion between
issue3925.go 9 // also a test for correct line number in other malformed composite literals.
  /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/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...]
ExtractStyleWizard.java 43 import org.eclipse.swt.widgets.Composite;
103 public void createControl(Composite parent) {
106 Composite composite = new Composite(parent, SWT.NONE); local
107 composite.setLayout(new GridLayout(2, false));
109 Label nameLabel = new Label(composite, SWT.NONE);
113 mNameText = new Text(composite, SWT.BORDER);
117 mRemoveExtracted = new Button(composite, SWT.CHECK);
123 mRemoveAll = new Button(composite, SWT.CHECK)
    [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...]
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);
  /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/ImageMagick/Magick++/demo/
detrans.cpp 47 base.composite( overlay, 0, 0, OverCompositeOp );
  /external/mesa3d/src/gallium/state_trackers/xa/
README 32 composite / video work for the Xorg state tracker.
  /prebuilts/go/darwin-x86/src/runtime/
race.go 32 // for composite objects we have to read every address
36 // for non-composite objects we can read just the start
45 // for composite objects we have to write every address
49 // for non-composite objects we can write just the start
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug098.go 14 var m *M = &M{0 : 0}; // should be legal to use & here for consistency with other composite constructors (prev. line)
bug494.go 8 // appeared in a composite literal that required a conversion between
issue3925.go 9 // also a test for correct line number in other malformed composite literals.
  /prebuilts/go/linux-x86/src/runtime/
race.go 32 // for composite objects we have to read every address
36 // for non-composite objects we can read just the start
45 // for composite objects we have to write every address
49 // for non-composite objects we can write just the start
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
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/
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();
  /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...]
  /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);

Completed in 641 milliseconds

1 23 4 5 6 7 8 91011>>