HomeSort by relevance Sort by last modified time
    Searched refs:minLength (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium/third_party/icu/source/i18n/
sortkey.cpp 210 int minLength;
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;
273 minLength = this->fCount;
277 minLength = target.fCount;
282 minLength = target.fCount
    [all...]
ucol_wgt.c 314 int32_t i, rangeCount, minLength/*, maxLength*/;
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 ranges and iterate *
    [all...]
  /external/icu4c/i18n/
sortkey.cpp 210 int minLength;
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;
273 minLength = this->fCount;
277 minLength = target.fCount;
282 minLength = target.fCount
    [all...]
ucol_wgt.cpp 314 int32_t i, rangeCount, minLength/*, maxLength*/;
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 ranges and iterate *
    [all...]
  /frameworks/base/core/jni/android/graphics/
GraphicsJNI.h 107 int minLength = 0, JNIAccess = kRW_JNIAccess);
123 AutoJavaIntArray(JNIEnv* env, jintArray array, int minLength = 0);
139 int minLength = 0, JNIAccess = kRW_JNIAccess);
155 AutoJavaByteArray(JNIEnv* env, jbyteArray array, int minLength = 0);
  /external/guava/src/com/google/common/primitives/
SignedBytes.java 170 int minLength = Math.min(left.length, right.length);
171 for (int i = 0; i < minLength; i++) {
UnsignedBytes.java 173 int minLength = Math.min(left.length, right.length);
174 for (int i = 0; i < minLength; i++) {
Booleans.java 203 * 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)
    [all...]
Chars.java 306 * 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)
    [all...]
Doubles.java 239 * 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)
    [all...]
Floats.java 236 * 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)
    [all...]
Ints.java 315 * 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)
    [all...]
Longs.java 292 * 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)
    [all...]
Shorts.java 306 * 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)
    [all...]
Bytes.java 180 * 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)
    [all...]
  /external/chromium/third_party/icu/source/common/
uinvchar.c 429 int32_t minLength;
444 minLength= outLength<localLength ? outLength : localLength;
446 while(minLength>0) {
463 --minLength;
474 int32_t minLength;
489 minLength= outLength<localLength ? outLength : localLength;
491 while(minLength>0) {
510 --minLength;
ucnv_ext.c 950 int32_t minLength,
    [all...]
unistr.cpp 594 int32_t minLength;
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);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ChooseLockGeneric.java 170 int minLength = mDPM.getPasswordMinimumLength(null);
171 if (minLength < MIN_PASSWORD_LENGTH) {
172 minLength = MIN_PASSWORD_LENGTH;
177 intent.putExtra(ChooseLockPassword.PASSWORD_MIN_KEY, minLength);
ChooseLockPassword.java 113 int minLength = mLockPatternUtils.getRequestedMinimumPasswordLength();
114 if (mPasswordMinLength < minLength) {
115 mPasswordMinLength = minLength;
  /external/icu4c/common/
uinvchar.c 429 int32_t minLength;
444 minLength= outLength<localLength ? outLength : localLength;
446 while(minLength>0) {
463 --minLength;
474 int32_t minLength;
489 minLength= outLength<localLength ? outLength : localLength;
491 while(minLength>0) {
510 --minLength;
ucnv_ext.c 950 int32_t minLength,
    [all...]
unistr.cpp 595 int32_t minLength;
606 minLength = length;
609 minLength = srcLength;
613 minLength = length;
625 if(minLength > 0 && chars != srcChars) {
630 result = uprv_memcmp(chars, srcChars, minLength * sizeof(UChar));
641 } while(--minLength > 0);
    [all...]
  /frameworks/base/core/java/android/widget/
ScrollBarDrawable.java 129 int minLength = thickness * 2;
130 if (length < minLength) {
131 length = minLength;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 189 final int minLength = Math.min(originalLength, suggestionLength);
190 if (minLength <= 2) return true;
194 for (i = 0; i < minLength; i++) {
206 if (minLength <= 4) {
209 return matching > minLength / 2;

Completed in 814 milliseconds

1 2