/packages/apps/FMRadio/res/layout/ |
editstation.xml | 35 android:maxLength="60"
|
/packages/apps/Launcher2/res/layout/ |
rename_folder.xml | 39 android:maxLength="30"
|
/packages/apps/Settings/res/layout/ |
dialog_edittext.xml | 27 android:maxLength="50"
|
bluetooth_device_settings_header.xml | 43 android:maxLength="@integer/bluetooth_name_length"
|
/packages/apps/Stk/res/layout/ |
stk_menu_item.xml | 37 android:maxLength="234"
|
/dalvik/dx/tests/115-merge/com/android/dx/merge/ |
DexMergeTest.java | 146 int maxLength = 0; 151 maxLength = Math.max(maxLength, merged.getLength()); 155 assertTrue(maxLength + " < " + maxExpectedLength, maxLength < maxExpectedLength);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
UCharacterName.java | 793 * @param maxlength maximum length to compare to 794 * @return the length that is either maxlength of the length of this 795 * algorithm name if it is longer than maxlength 797 int add(int set[], int maxlength) 840 if (length > maxlength) { 843 return maxlength; [all...] |
/packages/apps/Settings/src/com/android/settings/ |
ChooseLockGeneric.java | 406 int minLength, final int maxLength, 409 maxLength, requirePasswordToDecrypt, confirmCredentials); 413 int minLength, final int maxLength, 416 maxLength, requirePasswordToDecrypt, challenge); 420 final int maxLength, boolean requirePasswordToDecrypt, String password) { 421 return ChooseLockPassword.createIntent(context, quality, minLength, maxLength, 469 final int maxLength = mDPM.getPasswordMaximumLength(quality); 473 maxLength, mRequirePassword, mChallenge); 476 maxLength, mRequirePassword, mUserPassword);
|
/external/libxml2/test/schemas/ |
vdv-first2_0.xsd | 7 <xs:maxLength value="255"/>
12 <xs:maxLength value="32"/>
|
/external/zopfli/src/zopfli/ |
cache.c | 85 unsigned maxlength = ZopfliMaxCachedSublen(lmc, pos, length); local 99 if (length == maxlength) break;
|
/frameworks/data-binding/integration-tests/TestApp/app/src/main/res/layout/ |
text_view_adapter_test.xml | 52 android:maxLength="@{obj.maxLength}"
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/ |
patricia_trie_reading_utils.h | 42 const int maxLength, const int *const codePointTable, int *const outBuffer, 47 const int maxLength, const int *const codePointTable, int *const pos);
|
/external/clang/test/SemaObjC/ |
arc-dict-bridged-cast.m | 20 CFMutableStringRef CFStringCreateMutable(CFAllocatorRef alloc, CFIndex maxLength);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
BreakCTDictionary.java | 165 * @param maxLength The maximum number of code units to match. 171 public int matches(CharacterIterator text, int maxLength, int lengths[], 193 if (i >= maxLength) { 205 for (int j = 0; j < nodeCount && i < maxLength; j++) {
|
CharsetMatch.java | 80 * @param maxLength The maximium length of the String to be created when the 87 public String getString(int maxLength) throws java.io.IOException { 93 int max = maxLength < 0? Integer.MAX_VALUE : maxLength;
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
UrlEncoded.java | 384 * @param maxLength maximum number of keys to read or -1 for no limit 386 public static void decode88591To(InputStream in, MultiMap map, int maxLength, int maxKeys) 462 if (maxLength>=0 && (++totalLength > maxLength)) 483 * @param maxLength maximum number of keys to read or -1 for no limit 485 public static void decodeUtf8To(InputStream in, MultiMap map, int maxLength, int maxKeys) 569 if (maxLength>=0 && (++totalLength > maxLength)) 587 public static void decodeUtf16To(InputStream in, MultiMap map, int maxLength, int maxKeys) throws IOException 591 IO.copy(input,buf,maxLength); [all...] |
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/shortcut/ |
shortcut_list_reading_utils.h | 60 static int readShortcutTarget(const ReadOnlyByteArrayView buffer, const int maxLength,
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/ |
byte_array_utils.h | 186 const int maxLength, const int *const codePointTable, int *const outBuffer, 190 while (NOT_A_CODE_POINT != codePoint && length < maxLength) { 199 const uint8_t *const buffer, const int maxLength, int *const pos) { 202 while (NOT_A_CODE_POINT != codePoint && length < maxLength) {
|
/external/guava/guava/src/com/google/common/base/ |
Ascii.java | 552 * sequence is greater than {@code maxLength}, the returned string will be exactly 553 * {@code maxLength} chars in length and will end with the given {@code truncationIndicator}. 578 * @throws IllegalArgumentException if {@code maxLength} is less than the length of 584 public static String truncate(CharSequence seq, int maxLength, String truncationIndicator) { 588 int truncationLength = maxLength - truncationIndicator.length(); 590 // in this worst case, this allows a maxLength equal to the length of the truncationIndicator, 593 "maxLength (%s) must be >= length of the truncation indicator (%s)", 594 maxLength, truncationIndicator.length()); 596 if (seq.length() <= maxLength) { 598 if (string.length() <= maxLength) { [all...] |
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/ |
MarshalQueryableParcelable.java | 126 int maxLength = buffer.remaining(); 128 byte[] remaining = new byte[maxLength]; 131 parcel.unmarshall(remaining, /*offset*/0, maxLength);
|
/packages/inputmethods/LatinIME/native/jni/src/utils/ |
jni_data_utils.h | 74 const int maxLength, const int *const codePoints, const int codePointCount, 76 const int codePointBufSize = std::min(maxLength, codePointCount); 96 if (needsNullTermination && outputCodePointCount < maxLength) {
|
/external/mesa3d/src/mesa/main/ |
shaderapi.c | 138 * Copy string from <src> to <dst>, up to maxLength characters, returning 141 * \param maxLength max chars to copy 146 _mesa_copy_string(GLchar *dst, GLsizei maxLength, 150 for (len = 0; len < maxLength - 1 && src && src[len]; len++) 152 if (maxLength > 0) 675 get_shader_source(struct gl_context *ctx, GLuint shader, GLsizei maxLength, 683 _mesa_copy_string(sourceOut, maxLength, length, sh->Source); 1152 _mesa_GetInfoLogARB(GLhandleARB object, GLsizei maxLength, GLsizei * length, 1157 get_program_info_log(ctx, object, maxLength, length, infoLog); 1160 get_shader_info_log(ctx, object, maxLength, length, infoLog) [all...] |
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/ |
BitmapUtils.java | 139 Bitmap bitmap, int maxLength, boolean recycle) { 143 (float) maxLength / srcWidth, (float) maxLength / srcHeight);
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
BitmapUtils.java | 139 Bitmap bitmap, int maxLength, boolean recycle) { 143 (float) maxLength / srcWidth, (float) maxLength / srcHeight);
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
ShortName.java | 199 int minLength, int maxLength) { 208 if (str.length() > maxLength) 210 " has more than " + maxLength +
|