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

1 2 3 4 56 7 8 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/lang/
UCharacterNameIterator.java 86 // greater than limit
139 * @param limit 1 integer after the last integer in range
141 * illegal range. E.g limit <= start
144 public void setRange(int start, int limit)
146 if (start >= limit) {
148 "start or limit has to be valid Unicode codepoints and start < limit");
157 if (limit > UCharacter.MAX_VALUE + 1) {
161 m_limit_ = limit;
231 * @param limit last codepoint + 1 in range to searc
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
UCharacterNameIterator.java 86 // greater than limit
139 * @param limit 1 integer after the last integer in range
141 * illegal range. E.g limit <= start
144 public void setRange(int start, int limit)
146 if (start >= limit) {
148 "start or limit has to be valid Unicode codepoints and start < limit");
157 if (limit > UCharacter.MAX_VALUE + 1) {
161 m_limit_ = limit;
231 * @param limit last codepoint + 1 in range to searc
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
AnyTransliterator.java 82 int allLimit = pos.limit;
89 if (it.limit <= allStart) continue;
98 pos.start = it.limit;
102 // If the run end is before the transliteration limit, do
105 boolean incremental = isIncremental && (it.limit >= allLimit);
108 pos.limit = Math.min(allLimit, it.limit);
109 int limit = pos.limit; local
111 int delta = pos.limit - limit
330 public int limit; field in class:AnyTransliterator.ScriptRunIterator
    [all...]
RemoveTransliterator.java 52 text.replace(index.start, index.limit, "");
53 int len = index.limit - index.start;
55 index.limit -= len;
StringMatcher.java 44 * Limit offset, in the match text, of the <em>rightmost</em>
84 * @param limit index after the last character of theString to be
93 int limit,
96 this(theString.substring(start, limit), segmentNum, theData);
105 int limit,
113 if (limit < cursor[0]) {
119 if (cursor[0] > limit &&
127 subm.matches(text, cursor, limit, incremental);
134 // forward start, limit, and only if a prior match does not
142 if (incremental && cursor[0] == limit) {
    [all...]
UnescapeTransliterator.java 152 int limit = pos.limit; local
156 while (start < limit) {
175 if (s >= limit) {
199 if (s >= limit) {
222 if (s >= limit) {
241 limit -= s - start - str.length();
254 if (start < limit) {
259 pos.contextLimit += limit - pos.limit;
    [all...]
  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
SliceSpliteratorTest.java 63 void test(int size, int skip, int limit);
73 SliceTester r = (size, skip, limit) -> {
79 return new StreamSpliterators.SliceSpliterator.OfRef<>(s, skip, limit);
86 SliceTester r = (size, skip, limit) -> {
92 return new StreamSpliterators.SliceSpliterator.OfInt(s, skip, limit);
99 SliceTester r = (size, skip, limit) -> {
105 return new StreamSpliterators.SliceSpliterator.OfLong(s, skip, limit);
112 SliceTester r = (size, skip, limit) -> {
118 return new StreamSpliterators.SliceSpliterator.OfDouble(s, skip, limit);
128 SliceTester r = (size, skip, limit) ->
    [all...]
  /external/okhttp/okio/okio/src/main/java/okio/
Buffer.java 149 for (; offset >= (s.limit - s.pos); s = s.next) {
150 offset -= (s.limit - s.pos);
156 int toCopy = (int) Math.min(s.limit - pos, byteCount);
175 for (; offset >= (s.limit - s.pos); s = s.next) {
176 offset -= (s.limit - s.pos);
183 copy.limit = Math.min(copy.pos + (int) byteCount, copy.limit);
189 byteCount -= copy.limit - copy.pos;
208 int toCopy = (int) Math.min(byteCount, s.limit - s.pos);
215 if (s.pos == s.limit) {
    [all...]
  /external/freetype/src/psaux/
psconv.c 85 FT_Byte* limit,
98 if ( p >= limit )
112 if ( p == limit )
119 for ( ; p < limit; p++ )
159 FT_Byte* limit )
169 num = PS_Conv_Strtol( &p, limit, 10 );
174 if ( p < limit && *p == '#' )
179 num = PS_Conv_Strtol( &p, limit, num );
193 FT_Byte* limit,
208 if ( p >= limit )
    [all...]
  /external/pdfium/third_party/freetype/src/psaux/
psconv.c 85 FT_Byte* limit,
98 if ( p >= limit )
112 if ( p == limit )
119 for ( ; p < limit; p++ )
159 FT_Byte* limit )
169 num = PS_Conv_Strtol( &p, limit, 10 );
174 if ( p < limit && *p == '#' )
179 num = PS_Conv_Strtol( &p, limit, num );
193 FT_Byte* limit,
208 if ( p >= limit )
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
UTF16CollationIterator.java 36 limit = s.length();
69 limit = s.length();
74 if(pos == limit) {
79 if(Character.isHighSurrogate(c) && pos != limit &&
106 if(pos == limit) {
115 if(pos == limit) { return 0; }
125 while(num > 0 && pos != limit) {
128 if(Character.isHighSurrogate(c) && pos != limit &&
150 protected int limit; field in class:UTF16CollationIterator
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
UTF16CollationIterator.java 34 limit = s.length();
67 limit = s.length();
72 if(pos == limit) {
77 if(Character.isHighSurrogate(c) && pos != limit &&
104 if(pos == limit) {
113 if(pos == limit) { return 0; }
123 while(num > 0 && pos != limit) {
126 if(Character.isHighSurrogate(c) && pos != limit &&
148 protected int limit; field in class:UTF16CollationIterator
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lmem.c 47 int limit, const char *what) {
50 if (*size >= limit/2) { /* cannot double it? */
51 if (*size >= limit) /* cannot grow even a little? */
52 luaG_runerror(L, "too many %s (limit is %d)", what, limit);
53 newsize = limit; /* still have at least one free place */
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
DHKeyGeneratorHelper.java 23 int limit = dhParams.getL(); local
25 if (limit != 0)
27 int minWeight = limit >>> 2;
30 BigInteger x = new BigInteger(limit, random).setBit(limit - 1);
  /external/iproute2/netem/
stats.c 22 int limit; local
29 limit = 2*info.st_size/sizeof(double); /* @@ approximate */
31 limit = 10000;
33 x = (double *)malloc(limit*sizeof(double));
35 for (i=0; i<limit; ++i){
  /external/libnl/lib/route/qdisc/
plug.c 79 opts.limit = plug->limit;
140 * Set limit of PLUG qdisc.
142 * @arg limit New limit.
145 int rtnl_qdisc_plug_set_limit(struct rtnl_qdisc *qdisc, int limit)
153 plug->limit = limit;
  /external/skia/third_party/lua/src/
lmem.c 47 int limit, const char *what) {
50 if (*size >= limit/2) { /* cannot double it? */
51 if (*size >= limit) /* cannot grow even a little? */
52 luaG_runerror(L, "too many %s (limit is %d)", what, limit);
53 newsize = limit; /* still have at least one free place */
  /external/syslinux/com32/lua/src/
lmem.c 47 int limit, const char *what) {
50 if (*size >= limit/2) { /* cannot double it? */
51 if (*size >= limit) /* cannot grow even a little? */
52 luaG_runerror(L, "too many %s (limit is %d)", what, limit);
53 newsize = limit; /* still have at least one free place */
  /libcore/ojluni/src/main/java/java/util/zip/
Adler32.java 99 * limit; its limit will not have been changed.
106 int limit = buffer.limit(); local
107 assert (pos <= limit);
108 int rem = limit - pos;
120 buffer.position(limit);
CRC32.java 96 * be updated to its limit; its limit will not have been changed.
103 int limit = buffer.limit(); local
104 assert (pos <= limit);
105 int rem = limit - pos;
117 buffer.position(limit);
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
AnyTransliterator.java 55 run.start = run.limit; // show we processed
87 it.adjust(run.limit);
97 if (run.start == run.limit) offsets.start = offsets.limit;
109 + ", l: " + offsets.limit
134 * The only time that contextLimit != limit is for the last run
157 current.start = current.limit = current.contextLimit = expanse.start;
165 + ", l: " + current.limit
169 current.start = current.limit;
173 int limit = expanse.start local
    [all...]
  /external/icu/icu4c/source/samples/uciter8/
uit_len8.c 92 * The caller must not modify start and limit because they are used internally.
99 * limit UTF-8 length of the string
126 int32_t i, limit, index; local
130 limit=iter->start; /* count up to the UTF-8 index */
131 while(i<limit) {
132 L8_NEXT(s, i, limit, c);
141 if(i==iter->limit) {
155 int32_t i, limit, length; local
164 limit=iter->start;
167 while(i<limit) {
312 int32_t limit=iter->limit; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
ReplaceableTest.java 111 public String substring(int start, int limit) {
112 return chars.substring(start, limit);
131 public void replace(int start, int limit, String text) {
132 if (substring(start,limit).equals(text)) return; // NO ACTION!
134 "," + limit + "," + text) + ") -> ");
135 chars.replace(start, limit, text);
136 fixStyles(start, limit, text.length());
140 public void replace(int start, int limit, char[] charArray,
142 if (substring(start,limit).equals(new String(charArray, charsStart, charsLen-charsStart))) return; // NO ACTION!
143 this.chars.replace(start, limit, charArray, charsStart, charsLen)
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
ReplaceableTest.java 110 public String substring(int start, int limit) {
111 return chars.substring(start, limit);
130 public void replace(int start, int limit, String text) {
131 if (substring(start,limit).equals(text)) return; // NO ACTION!
133 "," + limit + "," + text) + ") -> ");
134 chars.replace(start, limit, text);
135 fixStyles(start, limit, text.length());
139 public void replace(int start, int limit, char[] charArray,
141 if (substring(start,limit).equals(new String(charArray, charsStart, charsLen-charsStart))) return; // NO ACTION!
142 this.chars.replace(start, limit, charArray, charsStart, charsLen)
    [all...]
  /external/icu/icu4c/source/common/unicode/
rep.h 46 * offset and a limit offset. The range of characters thus specified
47 * includes the characters at offset start..limit-1. That is, the
48 * start offset is inclusive, and the limit offset is exclusive.
113 * Copies characters in the range [<tt>start</tt>, <tt>limit</tt>)
116 * @param limit offset immediately following the last character to
123 int32_t limit,
132 * limit is equal to the replacement text, that replace has no
139 * <= limit</code>.
140 * @param limit the ending index, exclusive; <code>start <= limit
    [all...]

Completed in 553 milliseconds

1 2 3 4 56 7 8 91011>>