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

12 3

  /external/icu4c/i18n/
digitlst.cpp 542 int32_t maxLength = fDecNumber->digits + 15;
543 str.setLength(maxLength, status);
549 U_ASSERT(len <= maxLength);
  /external/webkit/WebCore/wml/
WMLInputElement.cpp 323 return InputElement::sanitizeUserInputValue(this, proposedValue, m_data.maxLength());
419 m_numOfCharsAllowedByMask = m_data.maxLength();
  /packages/apps/Nfc/src/com/android/nfc/
NativeNfcTag.java 437 int javaType, int maxLength, int cardState) {
443 extras.putInt(Ndef.EXTRA_NDEF_MAXLENGTH, maxLength);
  /external/chromium/third_party/icu/public/common/unicode/
ubidi.h 473 * be set to <code>maxLength</code> (the only failproof value) to avoid
478 * @param maxLength is the maximum text or line length that internal memory
489 * 1 and <code>maxLength</code>. It is typically small.
497 ubidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode *pErrorCode);
    [all...]
  /external/chromium/third_party/icu/source/common/
unisetspan.cpp 47 * Note: If maxLength were guaranteed to be no more than 32 or 64,
64 void setMaxLength(int32_t maxLength) {
65 if(maxLength<=(int32_t)sizeof(staticList)) {
68 UBool *l=(UBool *)uprv_malloc(maxLength);
71 capacity=maxLength;
90 // delta=[1..maxLength]
104 // offset=[1..maxLength]
114 // offset=[1..maxLength]
125 // Returns [1..maxLength].
    [all...]
triedict.cpp 128 int32_t maxLength,
147 for (i = 0; i < maxLength && p != NULL; ++i) {
181 // maxLength is 0 coming in.
250 int32_t maxLength,
257 return search(text, maxLength, lengths, count, limit, parent, pMatched, values);
678 int32_t maxLength,
719 if (i >= maxLength) {
731 for (int j = 0; j < nodeCount && i < maxLength; ++j) {
    [all...]
ubidi.c 126 ubidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode *pErrorCode) {
132 } else if(maxLength<0 || maxRunCount<0) {
155 if(maxLength>0) {
156 if( !getInitialDirPropsMemory(pBiDi, maxLength) ||
157 !getInitialLevelsMemory(pBiDi, maxLength)
    [all...]
uresbund.c     [all...]
  /external/icu4c/common/unicode/
ubidi.h 474 * be set to <code>maxLength</code> (the only failproof value) to avoid
479 * @param maxLength is the maximum text or line length that internal memory
490 * 1 and <code>maxLength</code>. It is typically small.
498 ubidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode *pErrorCode);
    [all...]
  /external/icu4c/common/
unisetspan.cpp 47 * Note: If maxLength were guaranteed to be no more than 32 or 64,
64 void setMaxLength(int32_t maxLength) {
65 if(maxLength<=(int32_t)sizeof(staticList)) {
68 UBool *l=(UBool *)uprv_malloc(maxLength);
71 capacity=maxLength;
90 // delta=[1..maxLength]
104 // offset=[1..maxLength]
114 // offset=[1..maxLength]
125 // Returns [1..maxLength].
    [all...]
ubidi.c 126 ubidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode *pErrorCode) {
132 } else if(maxLength<0 || maxRunCount<0) {
155 if(maxLength>0) {
156 if( !getInitialDirPropsMemory(pBiDi, maxLength) ||
157 !getInitialLevelsMemory(pBiDi, maxLength)
    [all...]
uresbund.c     [all...]
  /external/webkit/WebCore/html/
HTMLInputElement.h 236 int maxLength() const;
HTMLInputElement.cpp 266 int max = maxLength();
269 // Return false for the default value even if it is longer than maxLength.
    [all...]
  /external/webkit/WebKit/win/Interfaces/
DOMHTML.idl 685 - (int)maxLength;
687 HRESULT maxLength([out, retval] int* result);
690 - (void)setMaxLength:(int)maxLength;
692 HRESULT setMaxLength([in] int maxLength);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameSplitter.java 273 int maxLength = 0;
275 if (suffix.length() > maxLength) {
276 maxLength = suffix.length();
280 mMaxSuffixLength = maxLength;
    [all...]
  /external/webkit/WebCore/platform/text/
StringImpl.cpp 146 unsigned maxLength = m_length - start;
147 if (length >= maxLength) {
150 length = maxLength;
  /external/webkit/WebKitTools/DumpRenderTree/
LayoutTestController.cpp 664 size_t maxLength = JSStringGetMaximumUTF8CStringSize(password.get());
665 char* passwordBuffer = new char[maxLength + 1];
666 JSStringGetUTF8CString(password.get(), passwordBuffer, maxLength + 1);
684 size_t maxLength = JSStringGetMaximumUTF8CStringSize(username.get());
685 char* usernameBuffer = new char[maxLength + 1];
686 JSStringGetUTF8CString(username.get(), usernameBuffer, maxLength + 1);
    [all...]
  /external/chromium/third_party/icu/source/tools/gencase/
store.c 794 getLengthOfCodePoints(const UChar32 *s, int32_t maxLength) {
797 for(i=length=0; i<maxLength && s[i]!=0; ++i) {
    [all...]
  /external/icu4c/tools/gencase/
store.c 802 getLengthOfCodePoints(const UChar32 *s, int32_t maxLength) {
805 for(i=length=0; i<maxLength && s[i]!=0; ++i) {
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
cucdtst.c     [all...]
  /external/icu4c/test/cintltst/
cucdtst.c     [all...]
  /external/v8/src/
mirror-debugger.js 549 StringMirror.prototype.getTruncatedValue = function(maxLength) {
550 if (maxLength != -1 && this.length() > maxLength) {
551 return this.value_.substring(0, maxLength) +
    [all...]
  /external/webkit/WebKit/win/
DOMHTMLClasses.cpp 1091 HRESULT STDMETHODCALLTYPE DOMHTMLInputElement::maxLength(
1099 /* [in] */ int /*maxLength*/)
    [all...]
  /system/core/libacc/
acc.cpp     [all...]

Completed in 5732 milliseconds

12 3