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

12 3 4 5

  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLInputElement10.js 78 The maxLength attribute is the maximum number of text characters for text
104 vmaxlength = testNode.maxLength;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 140 Bitmap bitmap, int maxLength, boolean recycle) {
144 (float) maxLength / srcWidth, (float) maxLength / srcHeight);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 198 public SuggestionsGatherer newSuggestionsGatherer(final String text, int maxLength) {
200 text, mSuggestionThreshold, mRecommendedThreshold, maxLength);
229 final float recommendedThreshold, final int maxLength) {
233 mMaxLength = maxLength;
234 mSuggestions = CollectionUtils.newArrayList(maxLength + 1);
249 // If the maxLength is 0 (should never be less, but if it is, it's treated as 0)
  /external/apache-http/src/org/apache/commons/codec/language/
DoubleMetaphone.java     [all...]
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 254 unsigned maxLength = 0;
258 maxLength = std::max((size_t)maxLength, RegNums.size());
265 if (!maxLength)
271 for (unsigned i = I->second.size(), e = maxLength; i != e; ++i)
280 for (unsigned i = 0, e = maxLength; i != e; ++i) {
335 for (unsigned i = 0, e = maxLength; i != e; ++i) {
377 unsigned maxLength = 0;
380 maxLength = std::max((size_t)maxLength,
    [all...]
  /external/icu4c/tools/gensprep/
store.c 155 static int32_t maxLength = 0; /* maximum length of mapping string */
483 if(maxLength < value->length){
484 maxLength = value->length;
613 printf("Maximum length of the mapping string is : %i \n", (int)maxLength);
  /external/webkit/Source/WebCore/html/
HTMLFormControlElement.h 213 virtual int maxLength() const = 0;
ValidityState.cpp 71 return validationMessageTooLongText(numGraphemeClusters(text->value()), text->maxLength());
HTMLInputElement.idl 44 attribute long maxLength setter raises(DOMException);
HTMLInputElement.cpp 206 int max = maxLength();
210 // Return false for the default value even if it is longer than maxLength.
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPairingDialog.java 186 int maxLength;
192 maxLength = BLUETOOTH_PIN_MAX_LENGTH;
199 maxLength = BLUETOOTH_PASSKEY_MAX_LENGTH;
214 new LengthFilter(maxLength) });
  /cts/tests/tests/database/src/android/database/cts/
CursorJoinerTest.java 184 int maxLength = Integer.toString(maxValue).length();
187 for (int i = 0; i < (maxLength - basicLength); i++) {
  /external/clang/lib/Driver/
WindowsToolChain.cpp 111 char *value, size_t maxLength) {
116 DWORD valueSize = maxLength - 1;
  /external/webkit/Source/WebKit/chromium/src/
LocalizedStrings.cpp 365 String validationMessageTooLongText(int valueLength, int maxLength)
367 return query(WebLocalizedString::ValidationTooLong, String::number(valueLength), String::number(maxLength));
  /frameworks/base/services/jni/
com_android_server_location_GpsLocationProvider.cpp 535 const size_t maxLength = 2047;
536 char buffer[maxLength+1];
537 size_t length = sGpsDebugInterface->get_internal_state(buffer, maxLength);
538 if (length > maxLength) length = maxLength;
  /external/icu4c/common/
udataswp.c 279 int32_t maxLength;
299 maxLength=headerSize-infoSize;
301 for(length=0; length<maxLength && s[length]!=0; ++length) {}
triedict.cpp 111 int32_t maxLength,
125 for (i = 0; i < maxLength && p != NULL; ++i) {
155 // maxLength is 0 coming in.
219 int32_t maxLength,
225 return search(text, maxLength, lengths, count, limit, parent, pMatched);
466 int32_t maxLength,
486 if (i >= maxLength) {
498 for (int j = 0; j < nodeCount && i < maxLength; ++j) {
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
ThumbnailManager.java 391 Bitmap bitmap, int maxLength, boolean recycle) {
395 (float) maxLength / srcWidth, (float) maxLength / srcHeight);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
Tnaf.java 327 int maxLength = log2Norm > 30 ? log2Norm + 4 : 34;
330 byte[] u = new byte[maxLength];
737 int maxLength = log2Norm > 30 ? log2Norm + 4 + width : 34 + width;
740 byte[] u = new byte[maxLength];
  /external/icu4c/i18n/
digitlst.cpp 576 int32_t maxLength = fDecNumber->digits + 14;
578 char *buffer = str.clear().getAppendBuffer(maxLength, 0, capacity, status);
582 U_ASSERT(capacity >= maxLength);
584 U_ASSERT((int32_t)uprv_strlen(buffer) <= maxLength);
  /external/webkit/Tools/DumpRenderTree/
LayoutTestController.cpp 327 size_t maxLength = JSStringGetMaximumUTF8CStringSize(encodedAudioData.get());
328 OwnArrayPtr<char> encodedAudioDataBuffer = adoptArrayPtr(new char[maxLength + 1]);
329 JSStringGetUTF8CString(encodedAudioData.get(), encodedAudioDataBuffer.get(), maxLength + 1);
378 size_t maxLength = JSStringGetMaximumUTF8CStringSize(origin.get());
379 OwnArrayPtr<char> originBuffer = adoptArrayPtr(new char[maxLength + 1]);
380 JSStringGetUTF8CString(origin.get(), originBuffer.get(), maxLength + 1);
382 maxLength = JSStringGetMaximumUTF8CStringSize(destination.get());
383 OwnArrayPtr<char> destinationBuffer = adoptArrayPtr(new char[maxLength + 1]);
384 JSStringGetUTF8CString(destination.get(), destinationBuffer.get(), maxLength + 1);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /external/webkit/Source/WebCore/wml/
WMLInputElement.cpp 334 return InputElement::sanitizeUserInputValue(this, proposedValue, m_data.maxLength());
430 m_numOfCharsAllowedByMask = m_data.maxLength();
  /packages/apps/Settings/src/com/android/settings/
ChooseLockGeneric.java 369 final int maxLength = mDPM.getPasswordMaximumLength(quality);
373 intent.putExtra(ChooseLockPassword.PASSWORD_MAX_KEY, maxLength);
  /external/icu4c/common/unicode/
ubidi.h 505 * be set to <code>maxLength</code> (the only failproof value) to avoid
510 * @param maxLength is the maximum text or line length that internal memory
521 * 1 and <code>maxLength</code>. It is typically small.
529 ubidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode *pErrorCode);
    [all...]

Completed in 474 milliseconds

12 3 4 5