/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/ |
D | UiElementPart.java | 140 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 …]
|
D | SectionHelper.java | 197 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/ |
D | ExportFieldsPart.java | 40 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()
|
D | ExportLinksPart.java | 47 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/ |
D | ApplicationAttributesPart.java | 98 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()
|
D | OverviewExportPart.java | 65 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()
|
D | ApplicationToggle.java | 99 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()
|
D | OverviewLinksPart.java | 48 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/ |
D | SystraceOptionsDialogV2.java | 181 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/ |
D | FrameSummaryViewPage.java | 160 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/ |
D | UiElementDetail.java | 300 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/ |
D | site.xsl | 14 <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/ |
D | site.xsl | 14 <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/ |
D | ProjectSelectionPage.java | 98 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()
|
D | ConfirmationPage.java | 105 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/ |
D | ColumnDialog.java | 67 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/ |
D | ProfilesTableModel.java | 19 import javax.swing.table.DefaultTableModel;
|
D | PropertiesTableModel.java | 21 import javax.swing.table.DefaultTableModel;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/ |
D | LibraryProperties.java | 360 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/ |
D | cssreset-min.css | 7 …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/ |
D | fragmentlayout-expected-complation77.txt | 5 …>Summary</h2> <!-- =========== ENUM CONSTANT SUMMARY =========== --> <table id="...
|
D | fragmentlayout-expected-complation78.txt | 5 …>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/ |
D | XmlProperty.java | 40 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipProvider; 41 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipTextProvider;
|
D | BooleanXmlPropertyEditor.java | 27 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
|
D | PropertySheetPage.java | 52 import org.eclipse.wb.internal.core.model.property.table.IPropertyExceptionHandler; 53 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
|