HomeSort by relevance Sort by last modified time
    Searched defs:mTable (Results 1 - 16 of 16) sorted by null

  /frameworks/av/media/libeffects/testlibs/
AudioCoefInterpolator.h 72 const audio_coef_t * mTable;
  /frameworks/base/core/java/android/webkit/
ClientCertRequestHandler.java 40 private final SslClientCertLookupTable mTable;
48 mTable = table;
57 mTable.Allow(mHostAndPort, privateKey, chainBytes);
115 mTable.Deny(mHostAndPort);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
FlagXmlPropertyDialog.java 54 private Table mTable;
82 mTable = mViewer.getTable();
83 mTable.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
103 mTable.setSelection(0);
110 mTable.addSelectionListener(this);
111 mTable.addKeyListener(this);
202 if (mTable.getSelectionCount() == 1) {
203 TableItem item = mTable.getSelection()[0];
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
InfoPanel.java 34 private Table mTable;
57 mTable = new Table(parent, SWT.MULTI | SWT.FULL_SELECTION);
58 mTable.setHeaderVisible(false);
59 mTable.setLinesVisible(false);
61 TableColumn col1 = new TableColumn(mTable, SWT.RIGHT);
63 mCol2 = new TableColumn(mTable, SWT.LEFT);
68 item = new TableItem(mTable, SWT.NONE);
76 return mTable;
84 mTable.setFocus();
105 if (mTable.isDisposed()
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
AddColumnTest.java 35 private TableLayout mTable;
47 mTable = (TableLayout) activity.findViewById(R.id.table);
53 assertNotNull(mTable);
62 TableRow row1 = (TableRow) mTable.getChildAt(0);
63 TableRow row2 = (TableRow) mTable.getChildAt(1);
  /frameworks/av/media/libstagefright/include/
SampleIterator.h 38 SampleTable *mTable;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogFilter.java 62 private Table mTable;
170 mTable = table;
178 return (mTable != null && mTabItem != null);
186 return mTable;
190 mTable.dispose();
192 mTable = null;
333 mTable.removeAll();
402 ScrollBar bar = mTable.getVerticalBar();
406 int topIndex = mTable.getTopIndex();
409 mTable.setRedraw(false)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 60 private Table mTable;
141 mTable = new Table(mTop, SWT.BORDER | SWT.FULL_SELECTION | SWT.SINGLE);
142 mTable.setLayoutData(new GridData(GridData.FILL_BOTH));
143 mTable.setHeaderVisible(true);
144 mTable.setLinesVisible(false);
145 mTable.addSelectionListener(new SelectionAdapter() {
152 final TableColumn column0 = new TableColumn(mTable, SWT.NONE);
154 final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
190 TableItem selection = mTable.getSelection()[0];
193 mTable.remove(mTable.getSelectionIndex())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiFlagAttributeNode.java 189 private Table mTable;
207 if (mTable != null) {
210 for (TableItem item : mTable.getItems()) {
232 mTable = new Table(composite, SWT.CHECK | SWT.BORDER);
241 mTable.setLayoutData(data);
243 mTable.setHeaderVisible(false);
244 final TableColumn column = new TableColumn(mTable, SWT.NONE);
250 TableItem item = new TableItem(mTable, SWT.NONE);
270 TableItem item = new TableItem(mTable, SWT.NONE);
283 Rectangle r = mTable.getClientArea()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
SampleSelectionPage.java 53 private Table mTable;
77 mTable = mTableViewer.getTable();
80 mTable.setLayoutData(gridData);
81 mTable.addSelectionListener(this);
143 mTable.select(0);
170 if (e.getSource() == mTable) {
172 int index = mTable.getSelectionIndex();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
UiElementPart.java 50 private Composite mTable;
141 mTable = table;
148 return mTable;
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
SdkTargetSelector.java 59 private Table mTable;
97 mTable = new Table(mInnerGroup, style);
98 mTable.setHeaderVisible(true);
99 mTable.setLinesVisible(false);
106 mTable.setLayoutData(data);
112 final TableColumn column0 = new TableColumn(mTable, SWT.NONE);
114 final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
116 final TableColumn column2 = new TableColumn(mTable, SWT.NONE);
118 final TableColumn column3 = new TableColumn(mTable, SWT.NONE);
121 adjustColumnsWidth(mTable, column0, column1, column2, column3)
    [all...]
AvdSelector.java 85 private Table mTable;
244 mTable = new Table(group, style);
245 mTable.setHeaderVisible(true);
246 mTable.setLinesVisible(false);
373 final TableColumn column0 = new TableColumn(mTable, SWT.NONE);
375 final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
377 final TableColumn column2 = new TableColumn(mTable, SWT.NONE);
379 final TableColumn column3 = new TableColumn(mTable, SWT.NONE);
381 final TableColumn column4 = new TableColumn(mTable, SWT.NONE);
384 adjustColumnsWidth(mTable, column0, column1, column2, column3, column4)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleWizard.java 78 private Table mTable;
154 mTable = mCheckedView.getTable();
155 mTable.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 2, 2));
156 ((GridData) mTable.getLayoutData()).heightHint = 200;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/net/
NetworkPanel.java 153 private Table mTable;
345 mTable = new Table(mPanel, SWT.BORDER | SWT.MULTI | SWT.FULL_SELECTION);
351 mTable.setLayoutData(data);
353 mTable.setHeaderVisible(true);
354 mTable.setLinesVisible(true);
358 TableHelper.createTableColumn(mTable, "", SWT.CENTER, buildSampleText(2), null, null);
360 mTable, "Tag", SWT.LEFT, buildSampleText(32), PREFS_NETWORK_COL_TITLE, store);
361 TableHelper.createTableColumn(mTable, "RX bytes", SWT.RIGHT, buildSampleText(12),
363 TableHelper.createTableColumn(mTable, "RX packets", SWT.RIGHT, buildSampleText(12),
365 TableHelper.createTableColumn(mTable, "TX bytes", SWT.RIGHT, buildSampleText(12)
    [all...]
  /frameworks/base/include/androidfw/
ResourceTypes.h     [all...]

Completed in 1194 milliseconds