HomeSort by relevance Sort by last modified time
    Searched full:entrycount (Results 26 - 50 of 169) sorted by null

12 3 4 5 6 7

  /libcore/support/src/test/java/tests/support/
Support_MapTest.java 139 int entryCount = 0;
148 assertEquals(set1Entry, set1TypedArray1[entryCount]);
150 entryCount++;
153 assertEquals(set1.size(), entryCount);
  /libcore/luni/src/main/java/libcore/util/
ZoneInfoDB.java 172 int entryCount = indexSize / (SIZEOF_TZNAME + 3*SIZEOF_TZINT);
174 char[] idChars = new char[entryCount * SIZEOF_TZNAME];
175 int[] idEnd = new int[entryCount];
178 byteOffsets = new int[entryCount];
180 for (int i = 0; i < entryCount; i++) {
207 ids = new String[entryCount];
208 for (int i = 0; i < entryCount; i++) {
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
trie_map.h 302 bool freeTable(const int tableIndex, const int entryCount);
303 int allocateTable(const int entryCount);
360 AK_FORCE_INLINE int readEmptyTableLink(const int entryCount) const {
361 return mBuffer.readUint(FIELD1_SIZE, (entryCount - 1) * FIELD1_SIZE);
364 AK_FORCE_INLINE bool writeEmptyTableLink(const int tableIndex, const int entryCount) {
365 return mBuffer.writeUint(tableIndex, FIELD1_SIZE, (entryCount - 1) * FIELD1_SIZE);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
LazyObjectReference.java 94 @Override public int entryCount() throws IncompatibleThreadStateException {
95 return getValue().entryCount();
  /frameworks/base/tools/aapt2/flatten/
TableFlattener.cpp 315 const uint32_t entryCount =
318 typeHeader->entryCount = util::hostToDevice32(entryCount);
319 uint32_t* indices = typeWriter.nextBlock<uint32_t>(entryCount);
321 assert((size_t) entryCount <= std::numeric_limits<uint16_t>::max() + 1);
322 memset(indices, 0xff, entryCount * sizeof(uint32_t));
328 assert(flatEntry.entry->id.value() < entryCount);
387 specHeader->entryCount = util::hostToDevice32(numEntries);
  /libcore/luni/src/test/java/libcore/java/util/zip/
AbstractZipFileTest.java 190 int entryCount = 0;
193 ++entryCount;
195 assertEquals(expectedEntryCount, entryCount);
205 int entryCount = 0;
208 ++entryCount;
210 assertEquals(1024, entryCount);
218 protected void writeEntries(ZipOutputStream out, int entryCount, long entrySize,
224 for (int entry = 0; entry < entryCount; ++entry) {
ZipEntryTest.java 75 int entryCount = 0;
78 ++entryCount;
80 assertEquals(filenames.size(), entryCount);
  /packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
AppDeletionPreferenceGroup.java 53 int entryCount = apps.size();
56 for (int i = 0; i < entryCount; i++) {
  /frameworks/base/include/androidfw/
TypeWrappers.h 73 return iterator(this, dtohl(data->entryCount));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmjoin.h 53 NET_API_STATUS WINAPI NetEnumerateComputerNames(LPCWSTR Server,NET_COMPUTER_NAME_TYPE NameType,ULONG Reserved,PDWORD EntryCount,LPWSTR **ComputerNames);
tdh.h 52 ULONG EntryCount;
  /external/icu/icu4c/source/test/letest/
sfnt.h 98 le_uint16 entryCount;
167 le_uint16 entryCount;
176 le_uint16 entryCount;
  /external/icu/icu4c/source/test/perf/leperf/
sfnt.h 98 le_uint16 entryCount;
167 le_uint16 entryCount;
176 le_uint16 entryCount;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
SampleGroupDescriptionBox.java 60 size += 4; // entryCount
96 long entryCount = IsoTypeReader.readUInt32(content);
97 while (entryCount-- > 0) {
SampleToGroupBox.java 83 long entryCount = IsoTypeReader.readUInt32(content);
84 while (entryCount-- > 0) {
  /external/fonttools/Lib/fontTools/ttLib/tables/
_c_m_a_p.py 228 self.entryCount = None
258 for i in range(subHeader.entryCount):
289 (subHeader.firstCode, subHeader.entryCount, subHeader.idDelta, \
294 giList.fromstring(data[giDataPos:giDataPos + subHeader.entryCount*2])
307 # Each subheader references a range in the glyphIndexArray whose length is entryCount.
312 # {firstChar 0, EntryCount 0,idDelta 0,idRangeOffset xx}
315 # firstChar and EntryCount values. If the byte value is outside the subrange, then the glyphIndex is zero
323 # subheader 1 = {firstChar 64, EntryCount 108,idDelta 42,idRangeOffset 0252}
343 if (firstByte < subHeader.firstCode) or (firstByte >= subHeader.firstCode + subHeader.entryCount):
355 if subHeader.entryCount
    [all...]
  /frameworks/base/cmds/idmap/
inspect.cpp 262 const uint32_t entryCount = static_cast<uint32_t>(data16);
263 print("", "entry count", entryCount, "");
272 for (uint32_t i = 0; i < entryCount; i++) {
  /frameworks/base/core/java/android/preference/
MultiSelectListPreference.java 196 final int entryCount = entries.length;
198 boolean[] result = new boolean[entryCount];
200 for (int i = 0; i < entryCount; i++) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ImportProcessor.java 149 final int entryCount = request.entryCount;
150 mTotalCount += entryCount;
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/header/
header_policy.cpp 165 const int entryCount = HeaderReadWriteUtils::readIntAttributeValue(&mAttributeMap,
167 entryCounters.setNgramCount(ngramType, entryCount);
  /bootable/recovery/applypatch/
imgdiff.cpp 225 int entrycount = 0; local
268 temp_entries[entrycount].data_offset = hoffset+30+nlen+xlen;
269 temp_entries[entrycount].deflate_len = clen;
270 temp_entries[entrycount].uncomp_len = ulen;
271 temp_entries[entrycount].filename = filename;
272 ++entrycount;
275 qsort(temp_entries, entrycount, sizeof(ZipFileEntry), fileentry_compare);
278 printf("found %d deflated entries\n", entrycount);
279 for (i = 0; i < entrycount; ++i) {
290 *chunks = reinterpret_cast<ImageChunk*>(malloc((entrycount*2+2) * sizeof(ImageChunk)))
    [all...]
  /frameworks/support/v14/preference/src/android/support/v14/preference/
MultiSelectListPreference.java 238 final int entryCount = entries.length;
240 boolean[] result = new boolean[entryCount];
242 for (int i = 0; i < entryCount; i++) {
  /frameworks/av/services/camera/libcameraservice/api1/client2/
StreamingProcessor.cpp 109 if (mPreviewRequest.entryCount() == 0) {
271 if (mRecordingRequest.entryCount() == 0) {
597 if (mPreviewRequest.entryCount() != 0) {
606 if (mRecordingRequest.entryCount() != 0) {
  /frameworks/base/libs/androidfw/tests/
TypeWrappers_test.cpp 31 t.entryCount = 3;
  /external/guava/guava/src/com/google/common/collect/
Serialization.java 106 int entryCount = multiset.entrySet().size();
107 stream.writeInt(entryCount);

Completed in 1296 milliseconds

12 3 4 5 6 7