Searched defs:poolStringIndexLimit (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/common/
H A Duresdata.h100 * bits 31..8 poolStringIndexLimit bits 23..0
122 * bits 15..12 poolStringIndexLimit bits 27..24
166 * - poolStringIndexLimit:
172 * Guarantee: poolStringIndex16Limit <= poolStringIndexLimit
174 * The local bundle's poolStringIndexLimit is greater than
176 * The poolStringIndexLimit should not be greater than
362 * Starting with formatVersion 3/ICU 56, if offset<poolStringIndexLimit
392 int32_t poolStringIndexLimit; member in struct:ResourceData
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DICUResourceBundleReader.java59 * bits 31..8 poolStringIndexLimit bits 23..0
81 * bits 15..12 poolStringIndexLimit bits 27..24
139 private int poolStringIndexLimit; field in class:ICUResourceBundleReader
272 // In version 3, they contain bits 23..0 of the poolStringIndexLimit.
274 poolStringIndexLimit = indexes0 >>> 8;
283 poolStringIndexLimit |= (att & 0xf000) << 12; // bits 15..12 -> 27..24
571 if (offset < poolStringIndexLimit) {
574 return getStringV2(res - poolStringIndexLimit);
599 if (offset < poolStringIndexLimit) {
602 return isStringV2NoInheritanceMarker(offset - poolStringIndexLimit);
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUResourceBundleReader.java57 * bits 31..8 poolStringIndexLimit bits 23..0
79 * bits 15..12 poolStringIndexLimit bits 27..24
137 private int poolStringIndexLimit; field in class:ICUResourceBundleReader
270 // In version 3, they contain bits 23..0 of the poolStringIndexLimit.
272 poolStringIndexLimit = indexes0 >>> 8;
281 poolStringIndexLimit |= (att & 0xf000) << 12; // bits 15..12 -> 27..24
569 if (offset < poolStringIndexLimit) {
572 return getStringV2(res - poolStringIndexLimit);
597 if (offset < poolStringIndexLimit) {
600 return isStringV2NoInheritanceMarker(offset - poolStringIndexLimit);
[all...]

Completed in 169 milliseconds