/external/icu/android_icu4j/src/main/java/android/icu/text/ |
CompoundTransliterator.java | 344 * initial cursor index, but with the limit index as modified 355 * value) of transliterator i becomes the limit (input value) 356 * of transliterator i+1. Finally, the overall limit is fixed 360 * (1) contextStart <= start <= limit <= contextLimit <= text.length() 361 * (2) start <= start' <= limit' ;cursor doesn't move back 362 * (3) start <= limit' ;text before cursor unchanged 364 * - limit' is the value of limit after calling handleKT 370 * start, and limit. gl is the globalLimit. contextLimit is 371 * equal to limit throughout 429 int limit = index.limit; local [all...] |
MessagePatternUtil.java | 54 int limit = pattern.countParts() - 1; local 55 if (limit < 0) { 61 return buildMessageNode(pattern, 0, limit); 422 private static MessageNode buildMessageNode(MessagePattern pattern, int start, int limit) { 433 if (i == limit) { 451 private static ArgNode buildArgNode(MessagePattern pattern, int start, int limit) { 465 if (start < limit) { 472 node.complexStyle = buildChoiceStyleNode(pattern, start, limit); 476 node.complexStyle = buildPluralStyleNode(pattern, start, limit, argType); 480 node.complexStyle = buildSelectStyleNode(pattern, start, limit); [all...] |
UTF16.java | 348 * @param limit Offset to substring in the source array for analyzing 352 * @exception IndexOutOfBoundsException Thrown if offset16 is not within the range of start and limit. 354 public static int charAt(char source[], int start, int limit, int offset16) { 356 if (offset16 < start || offset16 >= limit) { 370 if (offset16 >= limit) { 526 * {0xD800, 0xDC00} has the result SINGLE_CHAR_BOUNDARY for start = offset16 = 0 and limit = 1. 530 * @param limit Offset to substring in the source array for analyzing 542 * @exception IndexOutOfBoundsException If offset16 is not within the range of start and limit. 544 public static int bounds(char source[], int start, int limit, int offset16) { 546 if (offset16 < start || offset16 >= limit) { [all...] |
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
CompoundTransliterator.java | 343 * initial cursor index, but with the limit index as modified 354 * value) of transliterator i becomes the limit (input value) 355 * of transliterator i+1. Finally, the overall limit is fixed 359 * (1) contextStart <= start <= limit <= contextLimit <= text.length() 360 * (2) start <= start' <= limit' ;cursor doesn't move back 361 * (3) start <= limit' ;text before cursor unchanged 363 * - limit' is the value of limit after calling handleKT 369 * start, and limit. gl is the globalLimit. contextLimit is 370 * equal to limit throughout 428 int limit = index.limit; local [all...] |
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/ |
Transport.java | 127 final int contentLimit = content.limit(); 141 content.limit(contentPosition + outputAvailable); 143 content.limit(contentLimit); 255 final int limit = buffer.limit(); local 256 while (buffer.position() < limit) { 264 buffer.limit(end); 266 buffer.limit(limit); 356 buffer.limit(next) [all...] |
/external/e2fsprogs/debugfs/ |
htree.c | 120 struct ext2_dx_countlimit limit; local 125 limit = *((struct ext2_dx_countlimit *) ent); 126 limit.count = ext2fs_le16_to_cpu(limit.count); 127 limit.limit = ext2fs_le16_to_cpu(limit.limit); 129 fprintf(pager, "Number of entries (count): %d\n", limit.count); 130 fprintf(pager, "Number of entries (limit): %d\n", limit.limit) [all...] |
/external/v8/test/cctest/heap/ |
test-lab.cc | 26 v8::internal::Address limit, 28 CHECK_LE(reinterpret_cast<intptr_t>(base), reinterpret_cast<intptr_t>(limit)); 31 while (base < limit) { 68 Address limit = base + kLabSize; local 78 VerifyIterable(base, limit, expected_sizes); 87 Address limit = base + kLabSize; local 105 VerifyIterable(base, limit, expected_sizes); 114 Address limit = base + kLabSize; local 134 VerifyIterable(base, limit, expected_sizes); 143 Address limit = base + kLabSize local 259 Address limit = base + kLabSize; local [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
TrieMap.java | 134 int limit = ByteConverter.getBytes(c, bytes, 0); local 135 result = limit == 1 ? bytesTrie.next(bytes[0]) : bytesTrie.next(bytes, 0, limit); 148 // int limit = ByteConverter.getBytes(c, bytes, 0); 149 // for (int j = 0; j < limit; ++j) { 239 int limit = ByteConverter.getBytes(c, bytes, 0); local 240 for (int j = 0; j < limit; ++j) { 243 if (j < limit - 1) { 299 int limit = 0; local 302 limit = ByteConverter.getBytes(c, bytes, limit) [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
TrieMap.java | 133 int limit = ByteConverter.getBytes(c, bytes, 0); local 134 result = limit == 1 ? bytesTrie.next(bytes[0]) : bytesTrie.next(bytes, 0, limit); 147 // int limit = ByteConverter.getBytes(c, bytes, 0); 148 // for (int j = 0; j < limit; ++j) { 238 int limit = ByteConverter.getBytes(c, bytes, 0); local 239 for (int j = 0; j < limit; ++j) { 242 if (j < limit - 1) { 298 int limit = 0; local 301 limit = ByteConverter.getBytes(c, bytes, limit) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/ |
FloatBufferTest.java | 87 buf.position(buf.limit()); 94 assertEquals(buf.limit(), readonly.limit()); 99 // readonly's position, mark, and limit should be independent to buf 103 assertEquals(buf.position(), buf.limit()); 117 assertEquals(buf.limit(), buf.capacity()); 128 buf.limit(0); 133 assertEquals(buf.limit(), buf.capacity()); 145 buf.limit(5); 150 assertEquals(buf.limit(), buf.capacity()) [all...] |
LongBufferTest.java | 87 buf.position(buf.limit()); 94 assertEquals(buf.limit(), readonly.limit()); 99 // readonly's position, mark, and limit should be independent to buf 103 assertEquals(buf.position(), buf.limit()); 116 assertEquals(buf.limit(), buf.capacity()); 127 buf.limit(0); 132 assertEquals(buf.limit(), buf.capacity()); 144 buf.limit(5); 149 assertEquals(buf.limit(), buf.capacity()) [all...] |
/libcore/ojluni/src/main/java/sun/security/ssl/ |
CipherBox.java | 287 * The byte buffers position and limit initially define the amount 288 * to encrypt. On return, the position and limit are 289 * set to last position padded/encrypted. The limit may have changed 297 bb.position(bb.limit()); 313 int limit = bb.limit(); local 319 limit - pos); 320 bb.limit(limit + prefix.length); 322 buf = new byte[limit - pos] 504 int limit = bb.limit(); local [all...] |
/external/icu/icu4c/source/i18n/ |
translit.cpp | 114 index.limit < index.start || 115 index.contextLimit < index.limit || 184 * <= limit</code>. 185 * @param limit the ending index, exclusive; <code>start <= limit 187 * @return the new limit index, or -1 190 int32_t start, int32_t limit) const { 192 limit < start || 193 text.length() < limit) { 199 offsets.contextLimit = limit; 644 int32_t limit = index.limit; local 1093 int32_t limit = parser.idBlockVector.size(); local [all...] |
/external/icu/icu4c/source/common/ |
utrie2.h | 408 * @param limit (const UChar *, in) the limit pointer for the text, or NULL if NUL-terminated 412 #define UTRIE2_U16_NEXT16(trie, src, limit, c, result) _UTRIE2_U16_NEXT(trie, index, src, limit, c, result) 420 * @param limit (const UChar *, in) the limit pointer for the text, or NULL if NUL-terminated 424 #define UTRIE2_U16_NEXT32(trie, src, limit, c, result) _UTRIE2_U16_NEXT(trie, data32, src, limit, c, result) 455 * @param limit (const char *, in) the limit pointer for the text (must not be NULL 659 const UChar *limit; member in class:ForwardUTrie2StringIterator [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
MessagePatternUtil.java | 55 int limit = pattern.countParts() - 1; local 56 if (limit < 0) { 62 return buildMessageNode(pattern, 0, limit); 458 private static MessageNode buildMessageNode(MessagePattern pattern, int start, int limit) { 469 if (i == limit) { 487 private static ArgNode buildArgNode(MessagePattern pattern, int start, int limit) { 501 if (start < limit) { 508 node.complexStyle = buildChoiceStyleNode(pattern, start, limit); 512 node.complexStyle = buildPluralStyleNode(pattern, start, limit, argType); 516 node.complexStyle = buildSelectStyleNode(pattern, start, limit); [all...] |
UTF16.java | 370 * @param limit Offset to substring in the source array for analyzing 374 * @exception IndexOutOfBoundsException Thrown if offset16 is not within the range of start and limit. 377 public static int charAt(char source[], int start, int limit, int offset16) { 379 if (offset16 < start || offset16 >= limit) { 393 if (offset16 >= limit) { 553 * {0xD800, 0xDC00} has the result SINGLE_CHAR_BOUNDARY for start = offset16 = 0 and limit = 1. 557 * @param limit Offset to substring in the source array for analyzing 569 * @exception IndexOutOfBoundsException If offset16 is not within the range of start and limit. 572 public static int bounds(char source[], int start, int limit, int offset16) { 574 if (offset16 < start || offset16 >= limit) { [all...] |
/libcore/ojluni/src/main/java/java/net/ |
URLStreamHandler.java | 118 * @param limit the character position to stop parsing at. This is the 123 protected void parseURL(URL u, String spec, int start, int limit) { 144 if (start < limit) { 147 if ((queryStart != -1) && (queryStart < limit)) { 148 query = spec.substring(queryStart+1, limit); 149 if (limit > queryStart) 150 limit = queryStart; 161 // boolean isUNCName = (start <= limit - 4) && 168 if (!isUNCName && (start <= limit - 2) && (spec.charAt(start) == '/') && 175 i = limit; [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget/d/ |
T_iget_2.d | 22 .limit regs 2 27 .limit regs 2 38 .limit regs 4
|
T_iget_9.d | 22 .limit regs 2 27 .limit regs 2 34 .limit regs 4
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct/d/ |
T_invoke_direct_10.d | 21 .limit regs 2 28 .limit regs 3 35 .limit regs 3
|
T_invoke_direct_11.d | 21 .limit regs 2 28 .limit regs 3 37 .limit regs 1
|
T_invoke_direct_15.d | 21 .limit regs 2 28 .limit regs 3 35 .limit regs 3
|
T_invoke_direct_16.d | 21 .limit regs 2 27 .limit regs 3 37 .limit regs 1
|
T_invoke_direct_2.d | 21 .limit regs 2 28 .limit regs 3 35 .limit regs 3
|
T_invoke_direct_3.d | 21 .limit regs 2 28 .limit regs 3 35 .limit regs 3
|