/aosp14/frameworks/base/core/java/com/android/internal/app/procstats/ |
H A D | SparseMappingTable.java | 74 private int[] mTable; field in SparseMappingTable.Table 89 mTable = null; in copyFrom() 125 return mTable[idx]; in getOrAddKey() 150 mTable = GrowingArrayUtils.insert(mTable != null ? mTable : EmptyArray.INT, in getOrAddKey() 168 return mTable[idx]; in getKey() 298 mTable = null; in resetTable() 315 out.writeInt(mTable[i]); in writeToParcel() 333 mTable = null; in readFromParcel() 342 mTable = null; in readFromParcel() 358 return mTable[i]; in getKeyAt() [all …]
|
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/layout/table/ |
H A D | AddColumnTest.java | 35 private TableLayout mTable; field in AddColumnTest 47 mTable = (TableLayout) activity.findViewById(R.id.table); in setUp() 53 assertNotNull(mTable); in testSetUpConditions() 62 TableRow row1 = (TableRow) mTable.getChildAt(0); in testWidths() 63 TableRow row2 = (TableRow) mTable.getChildAt(1); in testWidths()
|
/aosp14/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
H A D | SettingsService.java | 111 String mTable = null; field in SettingsService.MyShellCommand 162 } else if (mTable == null) { in onCommand() 169 mTable = arg.toLowerCase(); in onCommand() 275 pout.println(getForUser(iprovider, mUser, mTable, mKey)); in onCommand() 278 putForUser(iprovider, mUser, mTable, mKey, mValue, mTag, mMakeDefault); in onCommand() 282 + deleteForUser(iprovider, mUser, mTable, mKey) + " rows"); in onCommand() 285 for (String line : listForUser(iprovider, mUser, mTable)) { in onCommand() 290 resetForUser(iprovider, mUser, mTable, mTag); in onCommand()
|
/aosp14/frameworks/base/cmds/incident_helper/src/ |
H A D | ih_util.cpp | 388 :mTable(table), in Message() 402 for (auto iter = mTable->mFields.begin(); iter != mTable->mFields.end(); iter++) { in addSubMessage() 414 if (mTable->mFields.find(name) != mTable->mFields.end()) { in insertField() 422 return mTable->insertField(proto, name, value); in insertField() 447 uint64_t fieldId = mTable->mFields[name]; in startSession()
|
H A D | ih_util.h | 196 Table* mTable;
|
/aosp14/frameworks/base/services/core/java/com/android/server/content/ |
H A D | SyncManager.java | 4170 private ArrayList<String[]> mTable = Lists.newArrayList(); field in SyncManager.PrintTable 4182 for (int i = mTable.size(); i <= row; i++) { in set() 4184 mTable.add(list); in set() 4189 final String[] rowArray = mTable.get(row); in set() 4201 for (Object[] row : mTable) { in writeTo() 4211 printRow(out, formats, mTable.get(0)); in writeTo() 4217 for (int i = 1, mTableSize = mTable.size(); i < mTableSize; i++) { in writeTo() 4218 Object[] row = mTable.get(i); in writeTo() 4232 return mTable.size(); in getNumRows()
|
/aosp14/frameworks/base/libs/androidfw/include/androidfw/ |
H A D | ResourceTypes.h | 2068 inline const ResTable& getResTable() const { return mTable; } in getResTable() 2134 const ResTable& mTable; variable
|
/aosp14/frameworks/base/libs/androidfw/ |
H A D | ResourceTypes.cpp | 3797 : mTable(table) in Theme() 3847 mTable.lock(); in applyStyle() 3848 const ssize_t N = mTable.getBagLocked(resID, &bag, &bagTypeSpecFlags); in applyStyle() 3853 mTable.unlock(); in applyStyle() 3874 const ssize_t pidx = mTable.getResourcePackageIndex(attrRes); in applyStyle() 3899 PackageGroup* const grp = mTable.mPackageGroups[curPackageIndex]; in applyStyle() 3933 mTable.unlock(); in applyStyle() 3951 if (&mTable == &other.mTable) { in setTo() 4020 const ssize_t p = mTable.getResourcePackageIndex(resID); in getAttribute() 4095 return mTable.resolveReference(inOutValue, blockIndex, outLastRef, in resolveAttributeReference()
|