Home
last modified time | relevance | path

Searched refs:table (Results 1 – 25 of 27) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
DUiElementPart.java140 protected void setTable(Composite table) { in setTable() argument
141 mTable = table; in setTable()
157 Composite table = getTable(); in createUiAttributes() local
158 if (table == null || managedForm == null) { in createUiAttributes()
163 for (Control c : table.getChildren()) { in createUiAttributes()
167 fillTable(table, managedForm); in createUiAttributes()
185 protected void fillTable(Composite table, IManagedForm managedForm) { in fillTable() argument
186 int inserted = insertUiAttributes(mUiElementNode, table, managedForm); in fillTable()
189 createLabel(table, managedForm.getToolkit(), in fillTable()
204 …protected int insertUiAttributes(UiElementNode uiNode, Composite table, IManagedForm managedForm) { in insertUiAttributes() argument
[all …]
DSectionHelper.java197 Composite table = toolkit.createComposite(composite); in createTableLayout() local
200 table.setLayout(layout); in createTableLayout()
201 toolkit.paintBordersFor(table); in createTableLayout()
203 ((Section) composite).setClient(table); in createTableLayout()
205 return table; in createTableLayout()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
DExportFieldsPart.java40 Composite table = createTableLayout(toolkit, 2 /* numColumns */); in ExportFieldsPart() local
42 createLabel(table, toolkit, in ExportFieldsPart()
46 Text packageField = createLabelAndText(table, toolkit, in ExportFieldsPart()
51 Text projectsField = createLabelAndText(table, toolkit, in ExportFieldsPart()
56 Text versionCodeField = createLabelAndText(table, toolkit, in ExportFieldsPart()
61 Text keyStoreField = createLabelAndText(table, toolkit, in ExportFieldsPart()
66 Text keyAliasField = createLabelAndText(table, toolkit, in ExportFieldsPart()
DExportLinksPart.java47 final Composite table = createTableLayout(toolkit, 2 /* numColumns */); in ExportLinksPart() local
70 mFormText = createFormText(table, toolkit, true, buf.toString(), in ExportLinksPart()
94 MessageBox mb = new MessageBox(table.getShell(), SWT.OK); in ExportLinksPart()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
DApplicationAttributesPart.java98 Composite table = getTable(); in createUiAttributes() local
99 if (table == null || managedForm == null) { in createUiAttributes()
104 for (Control c : table.getChildren()) { in createUiAttributes()
129 ui_attr.createUiControl(table, managedForm); in createUiAttributes()
141 createLabel(table, managedForm.getToolkit(), in createUiAttributes()
165 Composite table = getTable(); in uiElementNodeUpdated() local
167 if (table != null && table.getEnabled() != exists) { in uiElementNodeUpdated()
168 table.setEnabled(exists); in uiElementNodeUpdated()
169 for (Control c : table.getChildren()) { in uiElementNodeUpdated()
DOverviewExportPart.java65 Composite table = createTableLayout(toolkit, 2 /* numColumns */); in OverviewExportPart() local
66 createFormText(table, toolkit, true, "<form></form>", false /* setupLayoutData */); in OverviewExportPart()
70 Composite table = createTableLayout(toolkit, 2 /* numColumns */); in OverviewExportPart() local
84 FormText text = createFormText(table, toolkit, true, buf.toString(), in OverviewExportPart()
DApplicationToggle.java99 Composite table = createTableLayout(toolkit, 1 /* numColumns */); in createFormControls() local
101 mTooltipFormText = createFormText(table, toolkit, true, "<form></form>", in createFormControls()
105 mCheckbox = toolkit.createButton(table, in createFormControls()
DOverviewLinksPart.java48 Composite table = createTableLayout(toolkit, 2 /* numColumns */); in OverviewLinksPart() local
84 mFormText = createFormText(table, toolkit, true, buf.toString(), in OverviewLinksPart()
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
DSystraceOptionsDialogV2.java181 Table table = new Table(c, SWT.CHECK | SWT.BORDER); in createTable() local
184 table.setLayoutData(gd); in createTable()
185 table.setHeaderVisible(false); in createTable()
186 table.setLinesVisible(false); in createTable()
189 TableItem item = new TableItem(table, SWT.NONE); in createTable()
194 TableHelper.createTableColumn(table, in createTable()
201 return table; in createTable()
306 private static Set<String> getEnabledTags(Table table, List<SystraceTag> tags) { in getEnabledTags() argument
309 for (int i = 0; i < table.getItemCount(); i++) { in getEnabledTags()
310 TableItem it = table.getItem(i); in getEnabledTags()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
DFrameSummaryViewPage.java160 final Table table = new Table(c, SWT.BORDER | SWT.FULL_SELECTION); in createFrameStatisticsPart() local
161 GridDataFactory.fillDefaults().grab(true, true).span(2, 1).applyTo(table); in createFrameStatisticsPart()
163 table.setLinesVisible(true); in createFrameStatisticsPart()
164 table.setHeaderVisible(true); in createFrameStatisticsPart()
166 mStatsTableViewer = new TableViewer(table); in createFrameStatisticsPart()
179 table.setSortColumn(tc); in createFrameStatisticsPart()
180 table.setSortDirection(mStatsTableComparator.getDirection()); in createFrameStatisticsPart()
200 table.addControlListener(new ControlAdapter() { in createFrameStatisticsPart()
203 int w = table.getClientArea().width; in createFrameStatisticsPart()
206 table.getColumn(i).setWidth((int) (w * STATS_TABLE_COLWIDTH_RATIOS[i])); in createFrameStatisticsPart()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
DUiElementDetail.java300 Composite table = useSubsections ? null : masterTable; in createUiAttributeControls() local
306 } else if (table == null || attr_desc instanceof SeparatorAttributeDescriptor) { in createUiAttributeControls()
315 table = createSubSectionTable(toolkit, masterTable, title); in createUiAttributeControls()
324 ui_attr.createUiControl(table, managedForm); in createUiAttributeControls()
328 ((Section) table.getParent()).setExpanded(true); in createUiAttributeControls()
391 Composite table; in createSubSectionTable() local
413 table = SectionHelper.createTableLayout(section, toolkit, 2 /* numColumns */); in createSubSectionTable()
414 return table; in createSubSectionTable()
/sdk/eclipse/sites/external/web/
Dsite.xsl14 <table width="100%" border="0" cellspacing="1" cellpadding="2">
55 <table>
76 </table>
127 <table>
148 </table>
182 <table>
203 </table>
209 </table>
/sdk/eclipse/sites/internal/web/
Dsite.xsl14 <table width="100%" border="0" cellspacing="1" cellpadding="2">
55 <table>
76 </table>
127 <table>
148 </table>
182 <table>
203 </table>
209 </table>
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
DProjectSelectionPage.java98 Table table = new Table(listComposite, in createControl() local
100 mTableViewer = new CheckboxTableViewer(table); in createControl()
101 table.setLayout(new TableLayout()); in createControl()
104 table.setLayoutData(data); in createControl()
DConfirmationPage.java105 Table table = new Table(group2, SWT.BORDER | SWT.V_SCROLL | SWT.H_SCROLL); in createControl() local
106 mTableViewer = new TableViewer(table); in createControl()
107 table.setLayout(new TableLayout()); in createControl()
108 table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); in createControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DColumnDialog.java67 Table table = mViewer.getTable(); in createDialogArea() local
68 table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1)); in createDialogArea()
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
DProfilesTableModel.java19 import javax.swing.table.DefaultTableModel;
DPropertiesTableModel.java21 import javax.swing.table.DefaultTableModel;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
DLibraryProperties.java360 private void adjustColumnsWidth(final Table table, in adjustColumnsWidth() argument
364 table.addControlListener(new ControlAdapter() { in adjustColumnsWidth()
367 Rectangle r = table.getClientArea(); in adjustColumnsWidth()
/sdk/templates/docs/
Dcssreset-min.css7 …form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:co… selector
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Dfragmentlayout-expected-complation77.txt5 …>Summary</h2> <!-- =========== ENUM CONSTANT SUMMARY =========== --> <table id="...
Dfragmentlayout-expected-complation78.txt5 …>Summary</h2> <!-- =========== ENUM CONSTANT SUMMARY =========== --> <table id="...
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
DXmlProperty.java40 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipProvider;
41 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipTextProvider;
DBooleanXmlPropertyEditor.java27 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
DPropertySheetPage.java52 import org.eclipse.wb.internal.core.model.property.table.IPropertyExceptionHandler;
53 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;

12