HomeSort by relevance Sort by last modified time
    Searched refs:limit (Results 126 - 150 of 4660) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
RemoveTransliterator.java 47 text.replace(index.start, index.limit, "");
48 int len = index.limit - index.start;
50 index.limit -= len;
StringMatcher.java 41 * Limit offset, in the match text, of the <em>rightmost</em>
81 * @param limit index after the last character of theString to be
90 int limit,
93 this(theString.substring(start, limit), segmentNum, theData);
101 int limit,
109 if (limit < cursor[0]) {
115 if (cursor[0] > limit &&
123 subm.matches(text, cursor, limit, incremental);
130 // forward start, limit, and only if a prior match does not
138 if (incremental && cursor[0] == limit) {
    [all...]
UnescapeTransliterator.java 141 int limit = pos.limit; local
145 while (start < limit) {
164 if (s >= limit) {
188 if (s >= limit) {
211 if (s >= limit) {
230 limit -= s - start - str.length();
243 if (start < limit) {
248 pos.contextLimit += limit - pos.limit;
    [all...]
NormalizationTransliterator.java 77 // start and limit of the input range
79 int limit = offsets.limit; local
80 if(start >= limit) {
87 * In incremental mode, a chunk that ends with offsets.limit
105 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start)));
106 if(start == limit && isIncremental && !norm2.hasBoundaryAfter(c)) {
107 // stop in incremental mode when we reach the input limit
121 limit += delta;
123 } while(start < limit);
    [all...]
AnyTransliterator.java 79 int allLimit = pos.limit;
86 if (it.limit <= allStart) continue;
95 pos.start = it.limit;
99 // If the run end is before the transliteration limit, do
102 boolean incremental = isIncremental && (it.limit >= allLimit);
105 pos.limit = Math.min(allLimit, it.limit);
106 int limit = pos.limit; local
108 int delta = pos.limit - limit
327 public int limit; field in class:AnyTransliterator.ScriptRunIterator
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/io/nio/
IndirectNIOBuffer.java 35 _buf.limit(_buf.capacity());
46 _put=buffer.limit();
48 buffer.limit(buffer.capacity());
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TrieTest.java 59 SetRange(int start, int limit, int value, boolean overwrite)
62 this.limit = limit;
67 int start, limit; field in class:TrieTest.SetRange
74 * value is set from the previous boundary's limit to before
75 * this boundary's limit
79 CheckRange(int limit, int value)
81 this.limit = limit;
85 int limit; field in class:TrieTest.CheckRange
100 int limit = start + 0x400; local
158 int limit = s.length(); local
213 int limit = setRanges[i].limit; local
231 int limit = checkRanges[i].limit; local
252 int limit = checkRanges[i].limit; local
276 int limit = checkRanges[i].limit; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
TrieTest.java 55 SetRange(int start, int limit, int value, boolean overwrite)
58 this.limit = limit;
63 int start, limit; field in class:TrieTest.SetRange
70 * value is set from the previous boundary's limit to before
71 * this boundary's limit
75 CheckRange(int limit, int value)
77 this.limit = limit;
81 int limit; field in class:TrieTest.CheckRange
96 int limit = start + 0x400; local
154 int limit = s.length(); local
209 int limit = setRanges[i].limit; local
227 int limit = checkRanges[i].limit; local
248 int limit = checkRanges[i].limit; local
272 int limit = checkRanges[i].limit; local
    [all...]
  /external/icu/icu4c/source/i18n/
funcrepl.cpp 80 int32_t limit,
85 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
86 limit = start + len;
89 limit = translit->transliterate(text, start, limit);
91 return limit - start;
  /external/valgrind/none/tests/x86-linux/
seg_override.c 46 unsigned int limit = ent->LimitLow | (ent->HighWord.Bits.LimitHi << 16);
47 if (ent->HighWord.Bits.Granularity) limit = (limit << 12) | 0xfff;
48 return limit;
76 unsigned int limit; member in struct:modify_ldt_ldt_s
99 ldt_entry.limit = 10;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BidiLine.java 115 static Bidi setLine(Bidi paraBidi, int start, int limit) {
127 lineBidi.resultLength = limit - start;
138 for (j = start; j < limit; j++) {
168 } else if (paraBidi.trailingWSStart < limit) {
290 logicalLimit = iRun.start + iRun.limit - visualStart;
295 visualStart = iRun.limit;
298 newRun.limit = logicalLimit;
306 int limit; local
310 limit = start +
311 bidi.runs[runIndex].limit
491 int length = bidi.length, limit; local
673 int start, limit, sumOfSosEos; local
742 int start, end, limit, temp; local
867 int i, j, start, limit, length, insertRemove; local
987 int begin = 0, limit = runCount; local
    [all...]
NormalizationTransliterator.java 78 // start and limit of the input range
80 int limit = offsets.limit; local
81 if(start >= limit) {
88 * In incremental mode, a chunk that ends with offsets.limit
106 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start)));
107 if(start == limit && isIncremental && !norm2.hasBoundaryAfter(c)) {
108 // stop in incremental mode when we reach the input limit
122 limit += delta;
124 } while(start < limit);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BidiLine.java 114 static Bidi setLine(Bidi paraBidi, int start, int limit) {
126 lineBidi.resultLength = limit - start;
137 for (j = start; j < limit; j++) {
167 } else if (paraBidi.trailingWSStart < limit) {
289 logicalLimit = iRun.start + iRun.limit - visualStart;
294 visualStart = iRun.limit;
297 newRun.limit = logicalLimit;
305 int limit; local
309 limit = start +
310 bidi.runs[runIndex].limit
490 int length = bidi.length, limit; local
672 int start, limit, sumOfSosEos; local
741 int start, end, limit, temp; local
866 int i, j, start, limit, length, insertRemove; local
986 int begin = 0, limit = runCount; local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
MessageDigestSpiTest.java 97 int limit = buf.limit(); local
99 assertEquals(limit, buf.limit());
100 assertEquals(limit, buf.position());
107 assertEquals(limit, buf.limit());
108 assertEquals(limit, buf.position());
  /external/icu/icu4c/source/common/
patternprops.cpp 180 int32_t limit=length; local
181 while(start<limit && isWhiteSpace(s[start])) {
184 if(start<limit) {
185 // There is non-white space at start; we will not move limit below that,
186 // so we need not test start<limit in the loop.
187 while(isWhiteSpace(s[limit-1])) {
188 --limit;
191 length=limit-start;
200 const UChar *limit=s+length; local
205 } while(s<limit);
    [all...]
util_props.cpp 26 int32_t ICU_Utility::parseInteger(const UnicodeString& rule, int32_t& pos, int32_t limit) {
32 if (p < limit && rule.charAt(p) == 48 /*0*/) {
33 if (p+1 < limit && (rule.charAt(p+1) == 0x78 /*x*/ || rule.charAt(p+1) == 0x58 /*X*/)) {
44 while (p < limit) {
86 int32_t ICU_Utility::parsePattern(const UnicodeString& rule, int32_t pos, int32_t limit,
96 if (pos >= limit) {
109 parsedInts[intCount++] = parseInteger(rule, p, limit);
117 if (pos >= limit) {
  /external/okhttp/okio/okio/src/main/java/okio/
DeflaterSink.java 64 int toDeflate = (int) Math.min(byteCount, head.limit - head.pos);
73 if (head.pos == head.limit) {
95 ? deflater.deflate(s.data, s.limit, Segment.SIZE - s.limit, Deflater.SYNC_FLUSH)
96 : deflater.deflate(s.data, s.limit, Segment.SIZE - s.limit);
99 s.limit += deflated;
103 if (s.pos == s.limit) {
  /external/valgrind/none/tests/x86/
x87trigOOR.c 126 Double limit = 9223372036854775808.0; // 2^63 local
143 try( name, fn, limit * 0.900000 );
144 try( name, fn, limit * 0.999999 );
145 try( name, fn, limit * 1.000000 );
146 try( name, fn, limit * 1.000001 );
147 try( name, fn, limit * 1.100000 );
150 try( name, fn, -limit * 0.900000 );
151 try( name, fn, -limit * 0.999999 );
152 try( name, fn, -limit * 1.000000 );
153 try( name, fn, -limit * 1.000001 )
    [all...]
  /external/pdfium/third_party/freetype/src/type1/
t1parse.c 233 parser->root.limit = parser->root.cursor + parser->base_len;
336 FT_Byte* limit = cur + parser->base_len; local
345 cur + 9 < limit ) /* 9 = 5 letters for `eexec' + */
355 if ( cur >= limit )
368 /* set limit to `eexec' + whitespace + 4 characters */
369 parser->root.limit = cur + 10;
372 limit = parser->root.limit;
374 while ( cur < limit )
377 cur + 5 < limit )
    [all...]
  /bionic/libc/arch-arm64/generic/bionic/
strncmp.S 42 #define limit x2 define
68 cbz limit, .Lret0
76 sub limit_wd, limit, #1 /* limit != 0, so no underflow. */
97 /* Not reached the limit, must have found the end or a diff. */
100 /* Limit % 8 == 0 => all bytes significant. */
101 ands limit, limit, #7
104 lsl limit, limit, #3 /* Bits -> bytes. *
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_connlimit.h 40 unsigned int limit; member in struct:xt_connlimit_info
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/if_eq/d/
T_if_eq_1.d 7 .limit regs 1
14 .limit regs 8
T_if_eq_10.d 7 .limit regs 1
14 .limit regs 8
T_if_eq_11.d 7 .limit regs 1
14 .limit regs 8
T_if_eq_12.d 7 .limit regs 1
14 .limit regs 8

Completed in 1197 milliseconds

1 2 3 4 56 7 8 91011>>