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

1 2

  /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 40 import org.eclipse.swt.widgets.Composite;
79 public void createUiControl(final Composite parent, IManagedForm managedForm) {
88 Composite composite = toolkit.createComposite(parent); local
89 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE));
92 composite.setLayout(gl);
95 toolkit.paintBordersFor(composite);
97 final Text text = toolkit.createText(composite, getCurrentValue());
99 gd.horizontalIndent = 1; // Needed by the fixed composite borders under GTK
101 Button browseButton = toolkit.createButton(composite, "Browse...", SWT.PUSH)
    [all...]
  /sdk/traceview/src/com/android/traceview/
ProfileView.java 41 import org.eclipse.swt.widgets.Composite;
51 public class ProfileView extends Composite implements Observer {
61 public ProfileView(Composite parent, TraceReader reader,
104 // Create another composite to hold the label and text box
105 Composite composite = new Composite(this, SWT.NONE); local
106 composite.setLayout(new GridLayout(2, false));
107 composite.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
110 Label label = new Label(composite, SWT.NONE)
    [all...]
TimeLineView.java 38 import org.eclipse.swt.widgets.Composite;
53 public class TimeLineView extends Composite implements Observer {
137 public TimeLineView(Composite parent, TraceReader reader,
187 // Create a composite for the left side of the sash
188 Composite composite = new Composite(mSashForm, SWT.NONE); local
193 composite.setLayout(layout);
196 BlankCorner corner = new BlankCorner(composite);
202 mLabels = new RowLabels(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...]
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;
69 public void createControl(Composite parent) {
70 Composite composite = new Composite(parent, SWT.NULL); local
71 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
73 composite.setLayout(gl);
77 mUseExistingKey = new Button(composite, SWT.RADIO);
83 new Composite(composite, SWT.NONE).setLayoutData(gd = new GridData())
    [all...]
KeystoreSelectionPage.java 32 import org.eclipse.swt.widgets.Composite;
62 public void createControl(Composite parent) {
63 Composite composite = new Composite(parent, SWT.NULL); local
64 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
66 composite.setLayout(gl);
70 mUseExistingKeystore = new Button(composite, SWT.RADIO);
76 mCreateKeystore = new Button(composite, SWT.RADIO);
81 new Label(composite, SWT.NONE).setText("Location:")
    [all...]
KeyCreationPage.java 31 import org.eclipse.swt.widgets.Composite;
66 public void createControl(Composite parent) {
67 Composite composite = new Composite(parent, SWT.NULL); local
68 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
70 composite.setLayout(gl);
74 new Label(composite, SWT.NONE).setText("Alias:");
75 mAlias = new Text(composite, SWT.BORDER);
78 new Label(composite, SWT.NONE).setText("Password:")
    [all...]
KeyCheckPage.java 38 import org.eclipse.swt.widgets.Composite;
88 public void createControl(Composite parent) {
93 Composite composite = new Composite(parent, SWT.NULL); local
94 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
97 composite.setLayout(gl);
101 new Label(composite, SWT.NONE).setText("Destination APK file:");
102 mDestination = new Text(composite, SWT.BORDER);
109 final Button browseButton = new Button(composite, SWT.PUSH)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplaySyncHistogram.java 21 import org.eclipse.swt.widgets.Composite;
50 * @param parent the parent composite.
55 public Control createComposite(final Composite parent, EventLogParser logParser,
57 Control composite = createCompositeChart(parent, logParser, "Sync Histogram"); local
59 return composite;
DisplaySync.java 22 import org.eclipse.swt.widgets.Composite;
59 * @param parent the parent composite.
64 public Control createComposite(final Composite parent, EventLogParser logParser,
66 Control composite = createCompositeChart(parent, logParser, "Sync Status"); local
68 return composite;
DisplaySyncPerf.java 22 import org.eclipse.swt.widgets.Composite;
107 * @param parent the parent composite.
112 public Control createComposite(final Composite parent, EventLogParser logParser,
114 Control composite = createCompositeChart(parent, logParser, "Sync Performance"); local
116 return composite;
  /external/webkit/WebCore/platform/graphics/chromium/
TransparencyWin.cpp 161 // This should be false, since calling composite() is mandatory.
165 void TransparencyWin::composite() function in class:WebCore::TransparencyWin
  /external/skia/src/animator/
SkDrawExtraPathEffect.cpp 377 SkPathEffect* composite = new SkComposePathEffect(e1, e2); local
380 return composite;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectCreationPage.java 65 import org.eclipse.swt.widgets.Composite;
335 * composite.
337 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
339 public void createControl(Composite parent) {
346 final Composite composite = new Composite(scrolledComposite, SWT.NULL); local
347 composite.setFont(parent.getFont());
348 scrolledComposite.setContent(composite);
350 composite.setLayout(new GridLayout())
    [all...]
NewTestProjectCreationPage.java 62 import org.eclipse.swt.widgets.Composite;
140 private ArrayList<Composite> mToggleComposites = new ArrayList<Composite>();
277 * composite.
279 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
281 public void createControl(Composite parent) {
288 final Composite composite = new Composite(scrolledComposite, SWT.NULL); local
289 composite.setFont(parent.getFont())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 60 import org.eclipse.swt.widgets.Composite;
320 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
322 public void createControl(Composite parent) {
323 Composite composite = new Composite(parent, SWT.NULL); local
324 composite.setFont(parent.getFont());
328 composite.setLayout(new GridLayout(NUM_COL, false /*makeColumnsEqualWidth*/));
329 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
331 createProjectGroup(composite);
    [all...]
  /external/webkit/WebCore/bindings/v8/
SerializedScriptValue.cpp 118 // information used to reconstruct composite types.
154 // Records that a composite object can be constructed by using
259 // Composite object we're processing in this state.
260 v8::Handle<v8::Value> composite() { return m_composite; } function in class:WebCore::__anon8145::Serializer::StateBase
262 // Serialization tag for the current composite.
266 // composite object is done. If yes, |*length| is set to the
275 StateBase(v8::Handle<v8::Value> composite)
277 , m_composite(composite)
289 v8::Handle<T> composite() { return handleCast<T>(StateBase::composite()); } function in class:WebCore::__anon8145::Serializer::State
    [all...]
  /external/webkit/WebCore/rendering/style/
FillLayer.h 75 CompositeOperator composite() const { return static_cast<CompositeOperator>(m_composite); } function in struct:WebCore::FillLayer
  /external/icu4c/common/
normalizer2impl.cpp 612 * Bits 21..1 composite character
613 * Bit 0 set if the composite is a forward-combining starter
755 UChar32 composite=compositeAndFwd>>1; local
757 // Replace the starter with the composite, remove the combining mark.
760 if(U_IS_SUPPLEMENTARY(composite)) {
762 starter[0]=U16_LEAD(composite);
763 starter[1]=U16_TRAIL(composite);
765 *starter=(UChar)composite;
766 // The composite is shorter than the starter,
776 } else if(U_IS_SUPPLEMENTARY(composite)) {
    [all...]
  /external/icu4c/tools/gennorm2/
n2builder.cpp 94 CompositionPair(UChar32 t, UChar32 c) : trail(t), composite(c) {}
95 UChar32 trail, composite; member in struct:CompositionPair
342 // Insert (trail, composite) pair into compositions list for the lead character.
390 return it->composite;
542 void setComposite(UChar32 composite, int32_t combMarkIndex) {
543 fArray[fLastStarterIndex]=composite<<8;
544 // Remove the combining mark that contributed to the composite.
612 return FALSE; // the composite does not combine further
678 // 22 bits for the composite character and whether it combines forward.
679 UChar32 compositeAndFwd=pair.composite<<1
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
UpdateChooserDialog.java 49 import org.eclipse.swt.widgets.Composite;
72 private Composite mPackageRootComposite;
141 * See also {@link #createButtonBar(Composite)} below.
144 public void createDialogContent(Composite parent) {
178 mPackageRootComposite = new Composite(mSashForm, SWT.NONE);
238 protected Control createButtonBar(Composite parent) {
240 Composite composite = new Composite(parent, SWT.NONE); local
248 composite.setLayout(layout);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Canvas.java 36 import java.awt.Composite;
425 Composite composite = g.getComposite(); local
437 g.setComposite(composite);
578 Composite c = null;
660 // as a composite.
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 475 milliseconds

1 2