Searched refs:minLength (Results 1 - 19 of 19) sorted by relevance

/external/icu4c/i18n/
H A Dsortkey.cpp210 int minLength; local
216 minLength = this->fCount;
220 minLength = target.fCount;
225 minLength = target.fCount;
229 if (minLength > 0) {
230 int diff = uprv_memcmp(src, tgt, minLength);
267 int minLength; local
273 minLength = this->fCount;
277 minLength = target.fCount;
282 minLength
[all...]
H A Ducol_wgt.c314 int32_t i, rangeCount, minLength/*, maxLength*/; local
362 minLength=ranges[0].length2;
371 if(n<=(lengthCounts[minLength]+lengthCounts[minLength+1])) {
387 /*maxLength=minLength+1;*/
390 power_1=powers[minLength-ranges[0].length];
412 ranges[1].length2=minLength;
432 ((byte>>(8*i))&(byte<<(8*(4-minLength))));
435 ranges[1].start=incWeight(ranges[0].end, minLength, maxByte);
450 /* no good match, lengthen all minLength range
[all...]
H A Dcolldata.cpp1010 int32_t minLength = minLengthInChars(ceList, offset, history); local
1014 return minLength;
/external/guava/src/com/google/common/primitives/
H A DSignedBytes.java170 int minLength = Math.min(left.length, right.length);
171 for (int i = 0; i < minLength; i++) {
H A DUnsignedBytes.java173 int minLength = Math.min(left.length, right.length);
174 for (int i = 0; i < minLength; i++) {
H A DBooleans.java203 * has a length of at least {@code minLength}, it is returned directly.
204 * Otherwise, a new array of size {@code minLength + padding} is returned,
208 * @param minLength the minimum length the returned array must guarantee
211 * @throws IllegalArgumentException if {@code minLength} or {@code padding} is
214 * minimum length {@code minLength}
217 boolean[] array, int minLength, int padding) {
218 checkArgument(minLength >= 0, "Invalid minLength: %s", minLength);
220 return (array.length < minLength)
216 ensureCapacity( boolean[] array, int minLength, int padding) argument
[all...]
H A DChars.java306 * has a length of at least {@code minLength}, it is returned directly.
307 * Otherwise, a new array of size {@code minLength + padding} is returned,
311 * @param minLength the minimum length the returned array must guarantee
314 * @throws IllegalArgumentException if {@code minLength} or {@code padding} is
317 * minimum length {@code minLength}
320 char[] array, int minLength, int padding) {
321 checkArgument(minLength >= 0, "Invalid minLength: %s", minLength);
323 return (array.length < minLength)
319 ensureCapacity( char[] array, int minLength, int padding) argument
[all...]
H A DDoubles.java239 * has a length of at least {@code minLength}, it is returned directly.
240 * Otherwise, a new array of size {@code minLength + padding} is returned,
244 * @param minLength the minimum length the returned array must guarantee
247 * @throws IllegalArgumentException if {@code minLength} or {@code padding} is
250 * minimum length {@code minLength}
253 double[] array, int minLength, int padding) {
254 checkArgument(minLength >= 0, "Invalid minLength: %s", minLength);
256 return (array.length < minLength)
252 ensureCapacity( double[] array, int minLength, int padding) argument
[all...]
H A DFloats.java236 * has a length of at least {@code minLength}, it is returned directly.
237 * Otherwise, a new array of size {@code minLength + padding} is returned,
241 * @param minLength the minimum length the returned array must guarantee
244 * @throws IllegalArgumentException if {@code minLength} or {@code padding} is
247 * minimum length {@code minLength}
250 float[] array, int minLength, int padding) {
251 checkArgument(minLength >= 0, "Invalid minLength: %s", minLength);
253 return (array.length < minLength)
249 ensureCapacity( float[] array, int minLength, int padding) argument
[all...]
H A DInts.java315 * has a length of at least {@code minLength}, it is returned directly.
316 * Otherwise, a new array of size {@code minLength + padding} is returned,
320 * @param minLength the minimum length the returned array must guarantee
323 * @throws IllegalArgumentException if {@code minLength} or {@code padding} is
326 * minimum length {@code minLength}
329 int[] array, int minLength, int padding) {
330 checkArgument(minLength >= 0, "Invalid minLength: %s", minLength);
332 return (array.length < minLength)
328 ensureCapacity( int[] array, int minLength, int padding) argument
[all...]
H A DLongs.java292 * has a length of at least {@code minLength}, it is returned directly.
293 * Otherwise, a new array of size {@code minLength + padding} is returned,
297 * @param minLength the minimum length the returned array must guarantee
300 * @throws IllegalArgumentException if {@code minLength} or {@code padding} is
303 * minimum length {@code minLength}
306 long[] array, int minLength, int padding) {
307 checkArgument(minLength >= 0, "Invalid minLength: %s", minLength);
309 return (array.length < minLength)
305 ensureCapacity( long[] array, int minLength, int padding) argument
[all...]
H A DShorts.java306 * has a length of at least {@code minLength}, it is returned directly.
307 * Otherwise, a new array of size {@code minLength + padding} is returned,
311 * @param minLength the minimum length the returned array must guarantee
314 * @throws IllegalArgumentException if {@code minLength} or {@code padding} is
317 * minimum length {@code minLength}
320 short[] array, int minLength, int padding) {
321 checkArgument(minLength >= 0, "Invalid minLength: %s", minLength);
323 return (array.length < minLength)
319 ensureCapacity( short[] array, int minLength, int padding) argument
[all...]
H A DBytes.java180 * has a length of at least {@code minLength}, it is returned directly.
181 * Otherwise, a new array of size {@code minLength + padding} is returned,
185 * @param minLength the minimum length the returned array must guarantee
188 * @throws IllegalArgumentException if {@code minLength} or {@code padding} is
191 * minimum length {@code minLength}
194 byte[] array, int minLength, int padding) {
195 checkArgument(minLength >= 0, "Invalid minLength: %s", minLength);
197 return (array.length < minLength)
193 ensureCapacity( byte[] array, int minLength, int padding) argument
[all...]
H A Dgenerate.sh329 * has a length of at least {@code minLength}, it is returned directly.
330 * Otherwise, a new array of size {@code minLength + padding} is returned,
334 * @param minLength the minimum length the returned array must guarantee
337 * @throws IllegalArgumentException if {@code minLength} or {@code padding} is
340 * minimum length {@code minLength}
343 primtyp[] array, int minLength, int padding) {
344 checkArgument(minLength >= 0, "Invalid minLength: %s", minLength);
346 return (array.length < minLength)
[all...]
/external/icu4c/common/
H A Duinvchar.c429 int32_t minLength; local
444 minLength= outLength<localLength ? outLength : localLength;
446 while(minLength>0) {
463 --minLength;
474 int32_t minLength; local
489 minLength= outLength<localLength ? outLength : localLength;
491 while(minLength>0) {
510 --minLength;
H A Ducnv_ext.c950 int32_t minLength,
970 UCNV_EXT_FROM_U_GET_LENGTH(value)>=minLength
990 sharedData, cx, sa, useFallback, minLength,
998 UCNV_EXT_FROM_U_GET_LENGTH(value)>=minLength
1016 int32_t st1, stage1Length, st2, st3, minLength; local
1040 minLength=3;
1045 minLength=2;
1047 minLength=1;
1077 sharedData, cx, sa, useFallback, minLength,
1085 UCNV_EXT_FROM_U_GET_LENGTH(value)>=minLength
946 ucnv_extGetUnicodeSetString(const UConverterSharedData *sharedData, const int32_t *cx, const USetAdder *sa, UBool useFallback, int32_t minLength, UChar32 c, UChar s[UCNV_EXT_MAX_UCHARS], int32_t length, int32_t sectionIndex, UErrorCode *pErrorCode) argument
[all...]
H A Dunistr.cpp594 int32_t minLength; local
605 minLength = length;
608 minLength = srcLength;
612 minLength = length;
624 if(minLength > 0 && chars != srcChars) {
629 result = uprv_memcmp(chars, srcChars, minLength * sizeof(UChar));
640 } while(--minLength > 0);
1544 int32_t minLength = length(); local
1546 if(newCapacity < minLength) {
1547 minLength
[all...]
H A Duidna.cpp77 int32_t minLength; local
83 minLength = s1Len;
86 minLength = s2Len;
91 minLength = s1Len;
101 if(i == minLength) {
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 102 milliseconds