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

1 2

  /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;
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...]
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...]
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...]
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/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/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 28 import org.eclipse.swt.widgets.Composite;
70 public ManifestSectionPart(Composite body, FormToolkit toolkit) {
86 public ManifestSectionPart(Composite body, FormToolkit toolkit,
96 * Creates a new composite with a TableWrapLayout set with a given number of columns.
98 * If the parent composite is a Section, the new composite is set as a client.
102 * @return The new composite.
104 public Composite createTableLayout(FormToolkit toolkit, int numColumns) {
112 * @param parent The parent (e.g. composite from CreateTableLayout())
118 public Label createLabel(Composite parent, FormToolkit toolkit, String label
    [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::__anon7986::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::__anon7986::Serializer::State
    [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...]
UiClassAttributeNode.java 68 import org.eclipse.swt.widgets.Composite;
176 public Control createContentArea(Composite parent) {
240 public void createUiControl(final Composite parent, IManagedForm managedForm) {
261 Composite composite = toolkit.createComposite(parent);
262 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE));
265 composite.setLayout(gl);
268 toolkit.paintBordersFor(composite);
270 final Text text = toolkit.createText(composite, getCurrentValue());
272 gd.horizontalIndent = 1; // Needed by the fixed composite borders under GT
    [all...]
  /external/webkit/WebKit/chromium/tests/
TransparencyWinTest.cpp 132 helper.composite();
154 helper.composite();
168 helper.composite();
184 helper.composite();
206 helper.composite();
225 helper.composite();
241 helper.composite();
256 helper.composite();
272 helper.composite();
298 helper.composite();
    [all...]
  /external/webkit/WebCore/platform/graphics/chromium/
TransparencyWin.h 141 void composite();
  /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...]
  /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;
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;
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;
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
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...]
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...]
  /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/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/webkit/WebCore/css/
CSSPropertyNames.in 161 -webkit-background-composite
219 -webkit-mask-composite
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 35 import java.awt.Composite;
566 * @param compositeOnly whether the paint is used for composite only. This is typically
568 * @param forceSrcMode if true, this overrides the composite to be SRC
749 // the alpha for the composite. Always opaque if the normal paint color is used since
761 Composite composite = xfermodeDelegate.getComposite(alpha); local
762 assert composite != null;
763 if (composite != null) {
764 g.setComposite(composite);
  /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...]

Completed in 789 milliseconds

1 2