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

  /frameworks/base/media/libstagefright/
SampleIterator.cpp 34 : mTable(table),
57 if (sampleIndex >= mTable->mNumSampleSizes) {
61 if (mTable->mSampleToChunkOffset < 0
62 || mTable->mChunkOffsetOffset < 0
63 || mTable->mSampleSizeOffset < 0
64 || mTable->mTimeToSampleCount == 0) {
152 if (mSampleToChunkIndex == mTable->mNumSampleToChunkOffsets) {
159 &mTable->mSampleToChunkEntries[mSampleToChunkIndex];
165 if (mSampleToChunkIndex + 1 < mTable->mNumSampleToChunkOffsets) {
185 if (chunk >= mTable->mNumChunkOffsets)
    [all...]
  /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();
104 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);
  /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/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
SdkTargetSelector.java 56 private Table mTable;
91 mTable = new Table(mInnerGroup, style);
92 mTable.setHeaderVisible(true);
93 mTable.setLinesVisible(false);
100 mTable.setLayoutData(data);
106 final TableColumn column0 = new TableColumn(mTable, SWT.NONE);
108 final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
110 final TableColumn column2 = new TableColumn(mTable, SWT.NONE);
112 final TableColumn column3 = new TableColumn(mTable, SWT.NONE);
115 adjustColumnsWidth(mTable, column0, column1, column2, column3)
    [all...]
AvdSelector.java 83 private Table mTable;
237 mTable = new Table(group, style);
238 mTable.setHeaderVisible(true);
239 mTable.setLinesVisible(false);
355 final TableColumn column0 = new TableColumn(mTable, SWT.NONE);
357 final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
359 final TableColumn column2 = new TableColumn(mTable, SWT.NONE);
361 final TableColumn column3 = new TableColumn(mTable, SWT.NONE);
364 adjustColumnsWidth(mTable, column0, column1, column2, column3);
365 setupSelectionListener(mTable);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 60 private Table mTable;
138 mTable = new Table(mTop, SWT.BORDER | SWT.FULL_SELECTION | SWT.SINGLE);
139 mTable.setLayoutData(new GridData(GridData.FILL_BOTH));
140 mTable.setHeaderVisible(true);
141 mTable.setLinesVisible(false);
142 mTable.addSelectionListener(new SelectionAdapter() {
149 final TableColumn column0 = new TableColumn(mTable, SWT.NONE);
151 final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
187 TableItem selection = mTable.getSelection()[0];
190 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...]
  /frameworks/base/media/libeffects/testlibs/
AudioCoefInterpolator.h 72 const audio_coef_t * mTable;
AudioCoefInterpolator.cpp 33 mTable = table;
63 memcpy(out, mTable + index, mNumOutDims * sizeof(audio_coef_t));
  /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;
  /frameworks/base/media/libstagefright/include/
SampleIterator.h 38 SampleTable *mTable;
  /frameworks/base/libs/utils/
ResourceTypes.cpp     [all...]
  /frameworks/base/include/utils/
ResourceTypes.h     [all...]

Completed in 593 milliseconds