Home
last modified time | relevance | path

Searched refs:numRecords (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DPlmnActRecord.java122 int numRecords = recordBytes.length / ENCODED_LENGTH; in getRecords() local
123 if (VDBG) Rlog.v(LOG_TAG, "Extracting Logs, count=" + numRecords); in getRecords()
125 PlmnActRecord[] records = new PlmnActRecord[numRecords]; in getRecords()
127 for(int i = 0; i < numRecords; i++) { in getRecords()
/frameworks/minikin/libs/minikin/
DCmapCoverage.cpp306 const uint64_t numRecords = readU32(nonDefaultUVSTable, 0); in getVSCoverage() local
307 const uint64_t sizeToRead = numRecords * kUVSMappingRecordSize + kHeaderSize; in getVSCoverage()
314 for (uint32_t i = 0; i < numRecords; ++i) { in getVSCoverage()
338 const uint64_t numRecords = readU32(defaultUVSTable, 0); in getVSCoverage() local
339 const uint64_t sizeToRead = numRecords * kUnicodeRangeRecordSize + kHeaderSize; in getVSCoverage()
347 for (uint32_t i = 0; i < numRecords; ++i) { in getVSCoverage()
388 const uint64_t numRecords = readU32(data, kNumRecordOffset); in getCoverageFormat14() local
389 const uint64_t sizeToRead = kHeaderSize + kRecordSize * numRecords; in getCoverageFormat14()
390 if (numRecords == 0 || sizeToRead > length) { in getCoverageFormat14()
397 for (uint32_t i = 0; i < numRecords; ++i) { in getCoverageFormat14()
[all …]
/frameworks/base/core/java/android/app/
DFragmentManager.java2136 final int numRecords = records.size(); in removeRedundantOperationsAndExecute() local
2138 for (int recordNum = 0; recordNum < numRecords; recordNum++) { in removeRedundantOperationsAndExecute()
2149 while (reorderingEnd < numRecords in removeRedundantOperationsAndExecute()
2160 if (startIndex != numRecords) { in removeRedundantOperationsAndExecute()
2161 executeOpsTogether(records, isRecordPop, startIndex, numRecords); in removeRedundantOperationsAndExecute()
/frameworks/support/fragment/src/main/java/androidx/fragment/app/
DFragmentManager.java2346 final int numRecords = records.size(); in removeRedundantOperationsAndExecute() local
2348 for (int recordNum = 0; recordNum < numRecords; recordNum++) { in removeRedundantOperationsAndExecute()
2359 while (reorderingEnd < numRecords in removeRedundantOperationsAndExecute()
2370 if (startIndex != numRecords) { in removeRedundantOperationsAndExecute()
2371 executeOpsTogether(records, isRecordPop, startIndex, numRecords); in removeRedundantOperationsAndExecute()
/frameworks/base/services/core/java/com/android/server/notification/
DRankingHelper.java983 final int numRecords = mRecords.size(); in updateChannelsBypassingDnd() local
984 for (int recordIndex = 0; recordIndex < numRecords; recordIndex++) { in updateChannelsBypassingDnd()