HomeSort by relevance Sort by last modified time
    Searched refs:maxLength (Results 26 - 50 of 603) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/text/
CharsetMatch.java 79 * @param maxLength The maximium length of the String to be created when the
84 public String getString(int maxLength) throws java.io.IOException {
90 int max = maxLength < 0? Integer.MAX_VALUE : maxLength;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsetMatch.java 82 * @param maxLength The maximium length of the String to be created when the
89 public String getString(int maxLength) throws java.io.IOException {
95 int max = maxLength < 0? Integer.MAX_VALUE : maxLength;
BytesDictionaryMatcher.java 45 public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit, int[] values) {
72 if (numChars >= maxLength) {
  /frameworks/base/packages/ExtServices/src/android/ext/services/autofill/
EditDistanceScorer.java 54 final int maxLength = Math.max(actualValueLength, userDatalength);
55 return ((float) maxLength - distance) / maxLength;
  /packages/apps/TV/common/src/com/android/tv/common/util/
PostalCodeUtils.java 133 Integer maxLength =
135 return maxLength == null ? DEFAULT_MAX_LENGTH : maxLength;
  /frameworks/base/core/java/com/android/internal/util/
LineBreakBufferedWriter.java 123 int maxLength = bufferSize - bufferIndex;
124 for (int i = 0; i < maxLength; i++) {
177 int maxLength = bufferSize - bufferIndex;
178 for (int i = 0; i < maxLength; i++) {
  /libcore/luni/src/test/java/libcore/dalvik/system/
VMRuntimeTest.java 29 private void doTestNewNonMovableArray(Class<?> componentType, int step, int maxLength) {
44 for (int i = 0; i <= maxLength; i += step) {
83 private void doTestNewUnpaddedArray(Class<?> componentType, int step, int maxLength) {
98 for (int i = 0; i <= maxLength; i += step) {
  /packages/apps/Dialer/java/com/android/voicemail/
PinChanger.java 65 public int maxLength;
  /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,
  /hardware/interfaces/wifi/1.2/vts/functional/
wifi_sta_iface_hidl_test.cpp 91 << " maxLength=" << status_and_caps.second.maxLength;
95 std::min(status_and_caps.second.maxLength, static_cast<uint32_t>(500));
  /dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java 148 int maxLength = 0;
154 maxLength = Math.max(maxLength, merged.getLength());
158 assertTrue(maxLength + " < " + maxExpectedLength, maxLength < maxExpectedLength);
  /developers/build/prebuilts/gradle/NetworkConnect/Application/src/main/java/com/example/android/networkconnect/
NetworkFragment.java 264 private String readStream(InputStream stream, int maxLength) throws IOException {
269 char[] buffer = new char[maxLength];
273 while (numChars < maxLength && readSize != -1) {
275 int pct = (100 * numChars) / maxLength;
283 numChars = Math.min(numChars, maxLength);
  /developers/samples/android/connectivity/network/NetworkConnect/Application/src/main/java/com/example/android/networkconnect/
NetworkFragment.java 264 private String readStream(InputStream stream, int maxLength) throws IOException {
269 char[] buffer = new char[maxLength];
273 while (numChars < maxLength && readSize != -1) {
275 int pct = (100 * numChars) / maxLength;
283 numChars = Math.min(numChars, maxLength);
  /development/samples/browseable/NetworkConnect/src/com.example.android.networkconnect/
NetworkFragment.java 264 private String readStream(InputStream stream, int maxLength) throws IOException {
269 char[] buffer = new char[maxLength];
273 while (numChars < maxLength && readSize != -1) {
275 int pct = (100 * numChars) / maxLength;
283 numChars = Math.min(numChars, maxLength);
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArray.java 319 int maxLength = size - cursor;
320 if (length > maxLength) {
321 length = maxLength;
  /dalvik/dx/src/com/android/dx/util/
ByteArray.java 318 int maxLength = size - cursor;
319 if (length > maxLength) {
320 length = maxLength;
  /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);
  /libcore/ojluni/src/test/java/time/tck/java/time/
TCKMonth.java 417 // maxLength()
421 assertEquals(Month.JANUARY.maxLength(), 31);
422 assertEquals(Month.FEBRUARY.maxLength(), 29);
423 assertEquals(Month.MARCH.maxLength(), 31);
424 assertEquals(Month.APRIL.maxLength(), 30);
425 assertEquals(Month.MAY.maxLength(), 31);
426 assertEquals(Month.JUNE.maxLength(), 30);
427 assertEquals(Month.JULY.maxLength(), 31);
428 assertEquals(Month.AUGUST.maxLength(), 31);
429 assertEquals(Month.SEPTEMBER.maxLength(), 30)
    [all...]
  /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) {
  /libcore/luni/src/test/java/libcore/java/io/
DataOutputStreamTest.java 98 String maxLength = new String(chars);
99 os.writeUTF(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/deqp/framework/delibs/depool/
deMemPool.h 76 char* deMemPool_strnDup (deMemPool* pool, const char* str, int maxLength);
  /external/google-breakpad/src/client/mac/sender/
crash_report_sender.h 54 - (void)setMaximumLength:(NSUInteger)maxLength;
  /external/icu/icu4c/source/common/
dictionarydata.cpp 45 int32_t UCharsDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t limit,
78 if (lengthMatched >= maxLength) {
113 int32_t BytesDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t limit,
145 if (lengthMatched >= maxLength) {
  /external/pdfium/fxjs/xfa/
cjx_exdata.cpp 45 void CJX_ExData::maxLength(CFXJSE_Value* pValue,

Completed in 770 milliseconds

12 3 4 5 6 7 8 91011>>