HomeSort by relevance Sort by last modified time
    Searched refs:recordCount (Results 1 - 9 of 9) sorted by null

  /external/icu4c/layout/
OpenTypeUtilities.h 23 static Offset getTagOffset(LETag tag, const TagAndOffsetRecord *records, le_int32 recordCount);
24 static le_int32 getGlyphRangeIndex(TTGlyphID glyphID, const GlyphRangeRecord *records, le_int32 recordCount);
OpenTypeUtilities.cpp 54 Offset OpenTypeUtilities::getTagOffset(LETag tag, const TagAndOffsetRecord *records, le_int32 recordCount)
56 le_uint8 bit = highBit(recordCount);
58 le_int32 extra = recordCount - power;
81 le_int32 OpenTypeUtilities::getGlyphRangeIndex(TTGlyphID glyphID, const GlyphRangeRecord *records, le_int32 recordCount)
83 le_uint8 bit = highBit(recordCount);
85 le_int32 extra = recordCount - power;
89 if (recordCount == 0) {
PairPositioningSubtables.cpp 127 const PairValueRecord *PairPositioningFormat1Subtable::findPairValueRecord(TTGlyphID glyphID, const PairValueRecord *records, le_uint16 recordCount, le_uint16 recordSize) const
135 for(le_int32 r = 0; r < recordCount; r += 1) {
143 le_uint8 bit = OpenTypeUtilities::highBit(recordCount);
145 le_uint16 extra = (recordCount - power) * recordSize;
PairPositioningSubtables.h 55 le_uint16 recordCount, le_uint16 recordSize) const;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
PlayReadyHeader.java 59 int recordCount = IsoTypeReader.readUInt16BE(byteBuffer);
61 records = PlayReadyRecord.createFor(byteBuffer, recordCount);
99 sb.append(", recordCount=").append(records.size());
113 public static List<PlayReadyRecord> createFor(ByteBuffer byteBuffer, int recordCount) {
114 List<PlayReadyRecord> records = new ArrayList<PlayReadyRecord>(recordCount);
116 for (int i = 0; i < recordCount; i++) {
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityEvent.java     [all...]
  /frameworks/base/core/jni/
android_os_Debug.cpp 450 size_t recordCount = overallSize / infoSize;
452 fprintf(fp, "Allocation records: %zd\n", recordCount);
460 qsort(info, recordCount, infoSize, compareHeapRecords);
464 for (size_t idx = 0; idx < recordCount; idx++) {
  /frameworks/base/core/java/android/widget/
ActivityChooserModel.java     [all...]
  /frameworks/base/services/java/com/android/server/
TelephonyRegistry.java 317 final int recordCount = mRecords.size();
318 for (int i = 0; i < recordCount; i++) {
614 final int recordCount = mRecords.size();
631 pw.println("registrations: count=" + recordCount);

Completed in 349 milliseconds