Searched refs:maximumLength (Results 1 - 9 of 9) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DArrayConventions.h57 #define MAX_STORAGE_VECTOR_LENGTH (static_cast<unsigned>(IndexingHeader::maximumLength))
H A DIndexingHeader.h43 enum { maximumLength = 0x10000000 }; enumerator in enum:JSC::IndexingHeader::__anon2779
60 RELEASE_ASSERT(length <= maximumLength);
/macosx-10.9.5/WebCore-7537.78.1/Modules/websockets/
H A DWebSocketHandshake.cpp404 static const int maximumLength = 1024; local
434 if (lineLength > maximumLength) {
436 return maximumLength;
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DTextFieldInputType.cpp364 return limitLength(proposedValue.removeCharacters(isASCIILineBreak), HTMLInputElement::maximumLength);
386 unsigned maxLength = static_cast<unsigned>(isTextType() ? element()->maxLength() : HTMLInputElement::maximumLength); // maxLength can never be negative.
H A DHTMLInputElement.cpp112 const int HTMLInputElement::maximumLength = 524288; member in class:WebCore::HTMLInputElement
119 , m_maxLength(maximumLength)
1776 maxLength = maximumLength;
1777 if (maxLength < 0 || maxLength > maximumLength)
1778 maxLength = maximumLength;
H A DHTMLInputElement.h277 static const int maximumLength; member in class:WebCore::HTMLInputElement
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DInlineTextBox.cpp705 int maximumLength; local
713 maximumLength = textRenderer()->textLength() - m_start;
716 maximumLength = length;
720 TextRun textRun = constructTextRun(styleToUse, font, string, maximumLength, hasHyphen() ? &charactersWithHyphen : 0);
1620 TextRun InlineTextBox::constructTextRun(RenderStyle* style, const Font& font, String string, int maximumLength, BufferForAppendingHyphen* charactersWithHyphen) const argument
1631 maximumLength = length;
1634 ASSERT(maximumLength >= length);
1642 run.setCharactersLength(maximumLength);
H A DInlineTextBox.h113 TextRun constructTextRun(RenderStyle*, const Font&, String, int maximumLength, BufferForAppendingHyphen* = 0) const;
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DQWebPageAdapter.cpp718 return QVariant(HTMLInputElement::maximumLength);

Completed in 218 milliseconds