Home
last modified time | relevance | path

Searched refs:tableLength (Results 1 – 15 of 15) sorted by relevance

/external/icu/icu4c/source/common/
Drbbidata.cpp392 int32_t tableLength; in ubrk_swap() local
411 tableLength = ds->readUInt32(rbbiDH->fFTableLen); in ubrk_swap()
413 if (tableLength > 0) { in ubrk_swap()
416 ds->swapArray16(ds, inBytes+tableStartOffset+topSize, tableLength-topSize, in ubrk_swap()
422 tableLength = ds->readUInt32(rbbiDH->fRTableLen); in ubrk_swap()
424 if (tableLength > 0) { in ubrk_swap()
427 ds->swapArray16(ds, inBytes+tableStartOffset+topSize, tableLength-topSize, in ubrk_swap()
433 tableLength = ds->readUInt32(rbbiDH->fSFTableLen); in ubrk_swap()
435 if (tableLength > 0) { in ubrk_swap()
438 ds->swapArray16(ds, inBytes+tableStartOffset+topSize, tableLength-topSize, in ubrk_swap()
[all …]
/external/javassist/src/main/javassist/bytecode/
DLineNumberAttribute.java45 public int tableLength() { in tableLength() method in LineNumberAttribute
77 int n = tableLength(); in toLineNumber()
97 int n = tableLength(); in toStartPc()
129 int n = tableLength(); in toNearPc()
173 int n = tableLength(); in shiftPc()
DLocalVariableAttribute.java83 ByteArray.write16bit(tableLength() + 1, newInfo, 0); in addEntry()
97 int n = tableLength(); in renameClass()
115 int n = tableLength(); in renameClass()
151 public int tableLength() { in tableLength() method in LocalVariableAttribute
181 int n = tableLength(); in shiftPc()
DExceptionsAttribute.java164 public int tableLength() { return info.length / 2 - 1; } in tableLength() method in ExceptionsAttribute
DInnerClassesAttribute.java54 public int tableLength() { return ByteArray.readU16bit(get(), 0); } in tableLength() method in InnerClassesAttribute
DClassFile.java315 int n = ica.tableLength(); in getInnerAccessFlags()
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DOpenTypeTableWriter.java25 private int tableLength; field in OpenTypeTableWriter.OpenTypeTableDumper
30 tableLength = outputIndex; in OpenTypeTableDumper()
35 return tableLength; in length()
/external/icu/icu4c/source/test/intltest/
Dnumberformattesttuple.cpp72 int32_t tableLength, in toEnum() argument
83 for (int32_t i = 0; i < tableLength; ++i) { in toEnum()
94 int32_t tableLength, in fromEnum() argument
97 for (int32_t i = 0; i < tableLength; ++i) { in fromEnum()
/external/javassist/src/main/javassist/
DCtNewNestedClass.java47 int n = ica.tableLength(); in updateInnerEntry()
DCtClassType.java405 int n = ica.tableLength(); in getNestedClasses()
742 int n = ica.tableLength(); in getDeclaringClass()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationDataReader.java390 int tableLength = length / 2 - headerLength; in read() local
391 data.fastLatinTable = ICUBinary.getChars(inBytes, tableLength, length & 1); in read()
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationDataReader.java391 int tableLength = length / 2 - headerLength; in read() local
392 data.fastLatinTable = ICUBinary.getChars(inBytes, tableLength, length & 1); in read()
/external/javassist/src/main/javassist/compiler/
DJavac.java278 int n = va.tableLength(); in recordLocalVariables()
308 int n = va.tableLength(); in recordParamNames()
/external/skia/src/ports/
DSkFontHost_FreeType.cpp1604 FT_ULong tableLength = 0; in onGetTableData() local
1608 error = FT_Load_Sfnt_Table(face, tag, 0, nullptr, &tableLength); in onGetTableData()
1613 if (offset > tableLength) { in onGetTableData()
1616 FT_ULong size = SkTMin((FT_ULong)length, tableLength - (FT_ULong)offset); in onGetTableData()
/external/guava/guava/src/com/google/common/base/
DCharMatcher.java878 private static boolean isSmall(int totalCharacters, int tableLength) {
880 && tableLength > (totalCharacters * 4 * Character.SIZE);