Home
last modified time | relevance | path

Searched refs:typeIndex (Results 1 – 12 of 12) sorted by relevance

/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
DFakeAdapter.java66 int typeIndex = mTypes.indexOf(viewRef); in FakeAdapter() local
67 if (typeIndex == -1) { in FakeAdapter()
68 typeIndex = mTypes.size(); in FakeAdapter()
74 int index = typeCount[typeIndex]; in FakeAdapter()
75 typeCount[typeIndex] += count; in FakeAdapter()
78 mItems.add(new AdapterItem(dataBindingItem, typeIndex, mItems.size(), index++)); in FakeAdapter()
DFakeExpandableAdapter.java66 int typeIndex = types.indexOf(viewRef); in createItems() local
67 if (typeIndex == -1) { in createItems()
68 typeIndex = types.size(); in createItems()
80 int index = typeCount[typeIndex]; in createItems()
81 typeCount[typeIndex] += count; in createItems()
84 AdapterItem item = new AdapterItem(dataBindingItem, typeIndex, mItems.size(), in createItems()
/frameworks/rs/rsov/driver/
DrsovContext.cpp151 uint32_t* typeIndex) { in MemoryTypeFromProperties() argument
156 *typeIndex = i; in MemoryTypeFromProperties()
DrsovContext.h38 uint32_t* typeIndex);
/frameworks/rs/script_api/
DSpecification.cpp149 typeIndex = findCType(rsBaseType); in parseParameterDefinition()
215 if (typeIndex >= 0) { in parseParameterDefinition()
216 javaBaseType = TYPES[typeIndex].javaType; in parseParameterDefinition()
217 specType = TYPES[typeIndex].specType; in parseParameterDefinition()
218 isFloatType = TYPES[typeIndex].exponentBits > 0; in parseParameterDefinition()
221 if (typeIndex < 0 || TYPES[typeIndex].kind != FLOATING_POINT) { in parseParameterDefinition()
732 if (def->typeIndex < 0 && mTest != "none") { in FunctionPermutation()
DGenerateTestFiles.cpp325 if (TYPES[param.typeIndex].kind == FLOATING_POINT) { in writeJavaInputAllocationDefinition()
328 TYPES[param.typeIndex]); in writeJavaInputAllocationDefinition()
332 TYPES[param.typeIndex]); in writeJavaInputAllocationDefinition()
689 if (p.typeIndex >= 0) { in writeJavaArrayInitialization()
690 mJava->indent() << "Arrays.fill(" << p.javaArrayName << ", (" << TYPES[p.typeIndex].javaType in writeJavaArrayInitialization()
DSpecification.h113 int typeIndex; // Index in the TYPES array. Negative if not found in the array. member
/frameworks/base/core/java/android/view/
DPointerIcon.java211 int typeIndex = getSystemIconTypeIndex(type); in getSystemIcon() local
212 if (typeIndex == 0) { in getSystemIcon()
213 typeIndex = getSystemIconTypeIndex(TYPE_DEFAULT); in getSystemIcon()
221 int resourceId = a.getResourceId(typeIndex, -1); in getSystemIcon()
/frameworks/base/libs/androidfw/
DResourceTypes.cpp4989 uint32_t ResTable::findEntry(const PackageGroup* group, ssize_t typeIndex, const char16_t* name, in findEntry() argument
4991 const TypeList& typeList = group->types[typeIndex]; in findEntry()
5012 uint32_t resId = Res_MAKEID(group->id - 1, typeIndex, iter.index()); in findEntry()
5015 if (getEntry(group, typeIndex, iter.index(), NULL, &result) != NO_ERROR) { in findEntry()
6355 const PackageGroup* packageGroup, int typeIndex, int entryIndex, in getEntry() argument
6359 const TypeList& typeList = packageGroup->types[typeIndex]; in getEntry()
6361 ALOGV("Skipping entry type index 0x%02x because type is NULL!\n", typeIndex); in getEntry()
6369 uint8_t actualTypeIndex = typeIndex; in getEntry()
6379 int realTypeIndex = typeIndex; in getEntry()
6400 Res_MAKEID(packageGroup->id - 1, typeIndex, entryIndex), in getEntry()
[all …]
/frameworks/support/room/runtime/src/main/java/androidx/room/util/
DTableInfo.java218 int typeIndex = cursor.getColumnIndex("type"); in readColumns() local
224 final String type = cursor.getString(typeIndex); in readColumns()
/frameworks/base/libs/androidfw/include/androidfw/
DResourceTypes.h2050 const PackageGroup* packageGroup, int typeIndex, int entryIndex,
2054 uint32_t findEntry(const PackageGroup* group, ssize_t typeIndex, const char16_t* name,
/frameworks/base/services/core/java/com/android/server/accounts/
DAccountsDb.java717 int typeIndex = cursor.getColumnIndex(ACCOUNTS_TYPE); in getSharedAccounts() local
720 cursor.getString(typeIndex))); in getSharedAccounts()