/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
KeyboardInterpreter.java | 29 private final PhotoTable mTable; 35 mTable = table; 38 final View focus = mTable.getFocus(); 40 if (mTable.hasSelection()) { 45 mTable.setFocus(mTable.getSelection()); 46 mTable.clearSelection(); 53 mTable.selectPrevious(); 61 mTable.selectNext(); 69 mTable.refreshSelection() [all...] |
EdgeSwipeDetector.java | 32 private final PhotoTable mTable; 35 mTable = table; 64 if (mTable.hasFocus()) { 65 mTable.fling(mTable.getFocus()); 66 } else if (mTable.hasSelection()) { 67 mTable.clearSelection();
|
DragGestureDetector.java | 29 private final PhotoTable mTable; 39 mTable = table; 73 mDrag = mTable.hasFocus(); 98 mTable.refreshFocus(); 105 mTable.move(mTable.getFocus(),
|
PhotoTouchListener.java | 35 private final PhotoTable mTable; 56 mTable = table; 118 mTable.fling(target, x1 - x0, y1 - y0, (int) (1000f * n / 60f), false); 134 mTable.moveToTopOfPile(target); 184 if (!mTable.hasSelection()) { 190 mTable.move(target, 210 if (mTable.hasSelection()) { 212 mTable.clearSelection(); 215 mTable.selectPrevious(); 217 mTable.selectNext() [all...] |
/frameworks/base/libs/hwui/utils/ |
TinyHashMap.h | 41 ssize_t index = mTable.find(-1, hash, key); 43 mTable.removeAt(index); 47 mTable.add(hash, initEntry); 55 ssize_t index = mTable.find(-1, hash, key); 59 outValue = mTable.entryAt(index).value; 63 void clear() { mTable.clear(); } 66 BasicHashtable<TKey, TEntry> mTable;
|
/frameworks/av/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...] |
/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/native/include/utils/ |
LruCache.h | 51 mIndex = mCache.mTable->next(mIndex); 60 return mCache.mTable->entryAt(mIndex).value; 64 return mCache.mTable->entryAt(mIndex).key; 89 UniquePtr<BasicHashtable<TKey, Entry> > mTable; 100 mNullValue(NULL), mTable(new BasicHashtable<TKey, Entry>), mYoungest(NULL), mOldest(NULL), 111 return mTable->size(); 117 ssize_t index = mTable->find(-1, hash, key); 121 Entry& entry = mTable->editEntryAt(index); 134 ssize_t index = mTable->find(-1, hash, key); 138 if (!mTable->hasMoreRoom()) [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...] |
/frameworks/base/core/java/android/webkit/ |
ClientCertRequestHandler.java | 40 private final SslClientCertLookupTable mTable; 48 mTable = table; 57 mTable.Allow(mHostAndPort, privateKey, chainBytes); 112 mTable.Deny(mHostAndPort);
|
/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/av/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/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)); 108 mTable.setSelection(0); 115 mTable.addSelectionListener(this); 116 mTable.addKeyListener(this); 207 if (mTable.getSelectionCount() == 1) { 208 TableItem item = mTable.getSelection()[0];
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
SampleSelectionPage.java | 54 private Table mTable; 78 mTable = mTableViewer.getTable(); 81 mTable.setLayoutData(gridData); 82 mTable.addSelectionListener(this); 144 mTable.select(0); 175 if (e.getSource() == mTable) { 177 int index = mTable.getSelectionIndex();
|
ImportPage.java | 87 private Table mTable; 133 mTable = new Table(container, SWT.CHECK); 134 mTable.setHeaderVisible(true); 135 mCheckboxTableViewer = new CheckboxTableViewer(mTable); 147 mTable.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 2, 4)); 148 mTable.setLinesVisible(true); 149 mTable.setHeaderVisible(true); 150 mTable.addSelectionListener(this); 151 mTable.addControlListener(this); 185 Rectangle r = mTable.getClientArea() [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
SystraceOptionsDialogV2.java | 66 private Table mTable; 137 mTable = new Table(c, SWT.CHECK | SWT.BORDER); 140 mTable.setLayoutData(gd); 141 mTable.setHeaderVisible(false); 142 mTable.setLinesVisible(false); 145 TableItem item = new TableItem(mTable, SWT.NONE); 149 TableHelper.createTableColumn(mTable, 251 for (int i = 0; i < mTable.getItemCount(); i++) { 252 TableItem it = mTable.getItem(i);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/ |
AddTranslationDialog.java | 109 private Table mTable; 168 mTable = mTableViewer.getTable(); 169 mTable.setEnabled(false); 170 mTable.setLinesVisible(true); 171 mTable.setHeaderVisible(true); 172 mTable.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 6, 2)); 173 mTable.addControlListener(this); 174 mTable.addTraverseListener(this); 306 Rectangle r = mTable.getClientArea(); 309 int columnCount = mTable.getColumnCount() [all...] |
/frameworks/base/cmds/settings/src/com/android/commands/settings/ |
SettingsCmd.java | 43 String mTable = null; 82 } else if (mTable == null) { 89 mTable = arg.toLowerCase(); 134 System.out.println(getForUser(provider, mUser, mTable, mKey)); 137 putForUser(provider, mUser, mTable, mKey, mValue);
|
/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/av/media/libstagefright/include/ |
SampleIterator.h | 38 SampleTable *mTable;
|
/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;
|
/frameworks/base/services/java/com/android/server/content/ |
SyncManager.java | [all...] |
/frameworks/base/libs/androidfw/ |
ResourceTypes.cpp | [all...] |
/frameworks/base/include/androidfw/ |
ResourceTypes.h | [all...] |