Searched refs:limit (Results 1 - 25 of 1077) sorted by relevance

1234567891011>>

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiRun.java21 * <p>The &quot;limit&quot; of the run is the position just after the
33 int limit; /* last visual position of the run +1 */ field in class:BidiRun
41 * Note that members start and limit of a run instance have different
47 * - limit is one after the last visual position of the run.
50 * - limit is one after the last logical position of the run.
60 BidiRun(int start, int limit, byte embeddingLevel) argument
63 this.limit = limit;
73 this.limit = run.limit;
[all...]
H A DDictionaryMatcher.java24 * @param limit The maximum amount of words to output. Must be less than or equal to lengths.length.
29 int[] count, int limit, int[] values);
32 int[] count, int limit) {
33 return matches(text, maxLength, lengths, count, limit, null);
28 matches(CharacterIterator text, int maxLength, int[] lengths, int[] count, int limit, int[] values) argument
31 matches(CharacterIterator text, int maxLength, int[] lengths, int[] count, int limit) argument
H A DReplaceable.java25 * offset and a limit offset. The range of characters thus specified
26 * includes the characters at offset start..limit-1. That is, the
27 * start offset is inclusive, and the limit offset is exclusive.
99 * <= start <= limit</code>.
101 * <code>start <= limit <= length()</code>.
112 * limit is equal to the replacement text, that replace has no
119 * <= limit</code>.
120 * @param limit the ending index, exclusive; <code>start <= limit
123 * to <code>limit
126 replace(int start, int limit, String text) argument
149 replace(int start, int limit, char[] chars, int charsStart, int charsLen) argument
175 copy(int start, int limit, int dest) argument
[all...]
H A DReplaceableString.java69 public String substring(int start, int limit) { argument
70 return buf.substring(start, limit);
119 * <= start <= limit</code>.
121 * <code>start <= limit <= length()</code>.
136 * <= limit</code>.
137 * @param limit the ending index, exclusive; <code>start <= limit
140 * <code>limit - 1</code>
143 public void replace(int start, int limit, String text) { argument
144 buf.replace(start, limit, tex
160 replace(int start, int limit, char[] chars, int charsStart, int charsLen) argument
181 copy(int start, int limit, int dest) argument
[all...]
H A DUnicodeFilter.java36 int limit,
39 if (offset[0] < limit &&
44 if (offset[0] > limit && contains(text.char32At(offset[0]))) {
54 if (incremental && offset[0] == limit) {
34 matches(Replaceable text, int[] offset, int limit, boolean incremental) argument
/external/icu/icu4c/source/tools/gentest/
H A Dgenres32.c27 incKey(char *key, char *limit) { argument
30 while(limit>key) {
31 c=*--limit;
33 *limit='1';
36 *limit='o';
51 char *limit; local
70 /* find the limit of the key string */
71 for(limit=key; *limit!=0; ++limit) {
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUCharArrayIterator.java21 private final int limit; field in class:UCharArrayIterator
24 public UCharArrayIterator(char[] text, int start, int limit) { argument
25 if (start < 0 || limit > text.length || start > limit) {
26 throw new IllegalArgumentException("start: " + start + " or limit: "
27 + limit + " out of range [0, "
32 this.limit = limit;
38 return pos < limit ? text[pos] : DONE;
42 return limit
[all...]
H A DBMPSet.java131 * @return the limit (exclusive end) of the span
141 int limit = s.length();
145 while (i < limit) {
156 c >= 0xdc00 || (i + 1) == limit || (c2 = s.charAt(i + 1)) < 0xdc00 || c2 >= 0xe000) {
184 while (i < limit) {
195 c >= 0xdc00 || (i + 1) == limit || (c2 = s.charAt(i + 1)) < 0xdc00 || c2 >= 0xe000) {
232 * limit and spanCondition==0 or 1.
236 public final int spanBack(CharSequence s, int limit, SpanCondition spanCondition) { argument
242 c = s.charAt(--limit);
252 c < 0xdc00 || 0 == limit || (c
326 set32x64Bits(int[] table, int start, int limit) argument
[all...]
H A DPatternProps.java106 int limit=s.length();
107 while(start<limit && isWhiteSpace(s.charAt(start))) {
110 if(start<limit) {
111 // There is non-white space at start; we will not move limit below that,
112 // so we need not test start<limit in the loop.
113 while(isWhiteSpace(s.charAt(limit-1))) {
114 --limit;
117 return s.substring(start, limit);
126 int limit=s.length();
127 if(limit
145 isIdentifier(CharSequence s, int start, int limit) argument
[all...]
/external/freetype/src/psaux/
H A Dpsconv.h31 FT_Byte* limit,
37 FT_Byte* limit );
41 FT_Byte* limit,
47 FT_Byte* limit,
54 FT_Byte* limit,
60 FT_Byte* limit,
H A Dpsobjs.c104 FT_Byte** limit = offset + table->max_elems; local
107 for ( ; offset < limit; offset++ )
286 FT_Byte* limit )
291 while ( cur < limit )
304 FT_Byte* limit )
309 while ( cur < limit )
315 skip_comment( &cur, limit );
334 FT_Byte* limit )
342 while ( cur < limit )
358 if ( cur == limit )
515 FT_Byte* limit = parser->limit; local
617 FT_Byte* limit; local
734 T1_Token limit = cur + max_tokens; local
769 ps_tocoordarray( FT_Byte* *acur, FT_Byte* limit, FT_Int max_coords, FT_Short* coords ) argument
848 ps_tofixedarray( FT_Byte* *acur, FT_Byte* limit, FT_Int max_values, FT_Fixed* values, FT_Int power_ten ) argument
1028 FT_Byte* limit; local
1476 ps_parser_init( PS_Parser parser, FT_Byte* base, FT_Byte* limit, FT_Memory memory ) argument
[all...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DFunctionReplacer.java49 int limit,
53 int len = replacer.replace(text, start, limit, cursor);
54 limit = start + len;
57 limit = translit.transliterate(text, start, limit);
59 return limit - start;
47 replace(Replaceable text, int start, int limit, int[] cursor) argument
/external/pdfium/third_party/freetype/src/psaux/
H A Dpsconv.h31 FT_Byte* limit,
37 FT_Byte* limit );
41 FT_Byte* limit,
47 FT_Byte* limit,
54 FT_Byte* limit,
60 FT_Byte* limit,
H A Dpsobjs.c104 FT_Byte** limit = offset + table->max_elems; local
107 for ( ; offset < limit; offset++ )
292 FT_Byte* limit )
297 while ( cur < limit )
310 FT_Byte* limit )
315 while ( cur < limit )
321 skip_comment( &cur, limit );
340 FT_Byte* limit )
348 while ( cur < limit )
364 if ( cur == limit )
521 FT_Byte* limit = parser->limit; local
623 FT_Byte* limit; local
740 T1_Token limit = cur + max_tokens; local
775 ps_tocoordarray( FT_Byte* *acur, FT_Byte* limit, FT_Int max_coords, FT_Short* coords ) argument
854 ps_tofixedarray( FT_Byte* *acur, FT_Byte* limit, FT_Int max_values, FT_Fixed* values, FT_Int power_ten ) argument
1034 FT_Byte* limit; local
1482 ps_parser_init( PS_Parser parser, FT_Byte* base, FT_Byte* limit, FT_Memory memory ) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DRangeValueIterator.java16 * &lt;start, limit, value> where</p>
19 * <li> limit is 1 after the maximum integer that follows start, such that
20 * all integers between start and (limit - 1), inclusive, have the same
22 * <li> value is the integer value that all integers from start to (limit - 1)
27 * value(limit - 1). However value(start -1) != value(start) and
28 * value(limit) != value(start).
41 * Integer.toHexString(result.limit - 1) +
54 * Stores the start and limit of the continous result range and the
55 * common value all integers between [start, limit - 1] has.
73 public int limit; field in class:RangeValueIterator.Element
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DRetryableSink.java34 private final int limit; field in class:RetryableSink
37 public RetryableSink(int limit) { argument
38 this.limit = limit;
48 if (content.size() < limit) {
50 "content-length promised " + limit + " bytes, but received " + content.size());
57 if (limit != -1 && content.size() > limit - byteCount) {
58 throw new ProtocolException("exceeded content-length limit of " + limit
[all...]
/external/okhttp/okio/okio/src/main/java/okio/
H A DSegment.java30 * {@code limit} and beyond. There is a single owning segment for each byte array. Positions,
43 int limit; field in class:Segment
48 /** True if this segment owns the byte array and can append to it, extending {@code limit}. */
64 this(shareFrom.data, shareFrom.pos, shareFrom.limit);
68 Segment(byte[] data, int pos, int limit) { argument
71 this.limit = limit;
104 * segment contains the data in {@code [pos+byteCount..limit)}. This can be
110 if (byteCount <= 0 || byteCount > limit - pos) throw new IllegalArgumentException();
112 prefix.limit
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DUtf8.java116 * limit}, exclusive.
119 * partialIsValidUtf8(bytes, index, limit) == Utf8.COMPLETE}.
121 public static boolean isValidUtf8(byte[] bytes, int index, int limit) { argument
122 return partialIsValidUtf8(bytes, index, limit) == COMPLETE;
129 * {@code limit}, exclusive.
144 int state, byte[] bytes, int index, int limit) {
153 if (index >= limit) { // No bytes? No progress.
175 if (index >= limit) {
196 if (index >= limit) {
204 if (index >= limit) {
143 partialIsValidUtf8( int state, byte[] bytes, int index, int limit) argument
248 partialIsValidUtf8( byte[] bytes, int index, int limit) argument
260 partialIsValidUtf8NonAscii( byte[] bytes, int index, int limit) argument
340 incompleteStateFor(byte[] bytes, int index, int limit) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DLimitedInputStream.java13 int limit)
16 this._limit = limit;
11 LimitedInputStream( InputStream in, int limit) argument
/external/v8/test/mjsunit/regress/
H A Dregress-117794.js35 function assertHasOwnProperties(object, limit) {
36 for (var i = 0; i < limit; i++) { }
/external/icu/icu4c/source/i18n/
H A Duni2name.cpp78 offsets.start = offsets.limit;
85 offsets.start = offsets.limit;
90 int32_t limit = offsets.limit; local
96 while (cursor < limit) {
106 limit += len-clen; // change in length
112 offsets.contextLimit += limit - offsets.limit;
113 offsets.limit = limit;
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DByteBufferHelper.java32 nuSamples.get(lastIndex).arrayOffset() + nuSamples.get(lastIndex).limit() == buffer.arrayOffset()) {
34 ByteBuffer nu = ByteBuffer.wrap(buffer.array(), oldBuffer.arrayOffset(), oldBuffer.limit() + buffer.limit()).slice();
39 nuSamples.get(lastIndex).limit() == nuSamples.get(lastIndex).capacity() - buffer.capacity()) {
42 oldBuffer.limit(buffer.limit() + oldBuffer.limit());
/external/wpa_supplicant_8/wpa_supplicant/
H A Dautoscan_exponential.c18 int limit; member in struct:autoscan_exponential_data
39 data->limit = atoi(pos);
60 "and limit is %d", data->base, data->limit);
84 if (data->interval >= data->limit)
85 return data->limit;
91 if (data->interval > data->limit)
92 return data->limit;
/external/icu/icu4c/source/common/unicode/
H A Durep.h91 * Function pointer that replaces text between start and limit in
98 * @param limit the ending index of the text to be replaced,
101 * start..limit-1.
108 int32_t limit,
114 * [<tt>start</tt>, <tt>limit</tt>) into the array <tt>dst</tt>.
119 * @param limit offset immediately following the last character to
122 * <tt>dst</tt> must be at least <tt>(limit - start)</tt>.
127 int32_t limit,
131 * Function pointer that copies text between start and limit in
135 * start..limit
[all...]
/external/messageformat/java/com/ibm/icu/impl/
H A DPatternProps.java106 int limit=s.length();
107 while(start<limit && isWhiteSpace(s.charAt(start))) {
110 if(start<limit) {
111 // There is non-white space at start; we will not move limit below that,
112 // so we need not test start<limit in the loop.
113 while(isWhiteSpace(s.charAt(limit-1))) {
114 --limit;
117 return s.substring(start, limit);
126 int limit=s.length();
127 if(limit
145 isIdentifier(CharSequence s, int start, int limit) argument
[all...]

Completed in 1059 milliseconds

1234567891011>>