/external/chromium_org/third_party/WebKit/Source/core/editing/ |
SurroundingText.cpp | 42 SurroundingText::SurroundingText(const VisiblePosition& visiblePosition, unsigned maxLength) 48 const unsigned halfMaxLength = maxLength / 2; 51 forwardIterator.advance(maxLength - halfMaxLength);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebSurroundingText.cpp | 42 void WebSurroundingText::initialize(const WebNode& webNode, const WebPoint& nodePoint, size_t maxLength) 48 m_private.reset(new SurroundingText(VisiblePosition(node->renderer()->positionForPoint(static_cast<IntPoint>(nodePoint))), maxLength));
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebSurroundingText.h | 52 // The maximum length of the contents retrieved is defined by maxLength. 53 BLINK_EXPORT void initialize(const WebNode&, const WebPoint&, size_t maxLength);
|
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
Preprocessor.cpp | 84 void Preprocessor::setMaxTokenLength(size_t maxLength) 86 mImpl->tokenizer.setMaxTokenLength(maxLength);
|
Preprocessor.h | 45 void setMaxTokenLength(size_t maxLength);
|
/external/chromium_org/third_party/icu/source/common/ |
triedict.h | 84 * @param maxLength The maximum number of code units to match. 92 int32_t maxLength, 180 * @param maxLength The maximum number of code units to match. 188 int32_t maxLength, 232 * @param maxLength The maximum number of code units to match. 242 int32_t maxLength, 327 * @param maxLength The maximum number of code units to match. 335 int32_t maxLength,
|
/packages/apps/Settings/res/layout/ |
user_dictionary_add_word_fullscreen.xml | 33 android:maxLength="@integer/maximum_user_dictionary_word_length" > 64 android:maxLength="@integer/maximum_user_dictionary_word_length" />
|
dialog_edittext.xml | 27 android:maxLength="50"
|
/packages/inputmethods/LatinIME/java/res/layout/ |
user_dictionary_add_word_fullscreen.xml | 33 android:maxLength="@integer/user_dictionary_max_word_length" > 64 android:maxLength="@integer/user_dictionary_max_word_length" />
|
/packages/inputmethods/OpenWnn/res/layout/ |
user_dictionary_tools_edit.xml | 31 android:maxLength="20"/> 42 android:maxLength="20"/>
|
/external/chromium_org/chrome/common/importer/ |
firefox_importer_utils_mac.mm | 42 if (![ff_library_path getFileSystemRepresentation:buf maxLength:sizeof(buf)])
|
/external/chromium_org/components/json_schema/ |
json_schema_constants.cc | 21 const char kMaxLength[] = "maxLength";
|
json_schema_validator_unittest.cc | 75 " \"maxLength\": -1" // Must be >= 0. 103 " \"maxLength\": 100,"
|
/external/chromium_org/tools/grit/grit/testdata/ |
searchbox.html | 15 <tr><td nowrap><form name=gs method=GET action='[$~SEARCHURL~$]'><input type=text name=q size=41 maxlength=2048 value="[DISP_QUERY]"><input type=hidden name=ie value="UTF-8">
|
/external/icu4c/common/ |
dictionarydata.cpp | 38 int32_t UCharsDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t *lengths, int32_t &count, int32_t limit, int32_t *values) const { 64 if (numChars >= maxLength) { 102 int32_t BytesDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t *lengths, int32_t &count, int32_t limit, int32_t *values) const { 128 if (numChars >= maxLength) {
|
/packages/apps/Launcher2/res/layout/ |
rename_folder.xml | 39 android:maxLength="30"
|
/packages/apps/Launcher3/res/layout/ |
rename_folder.xml | 39 android:maxLength="30"
|
/packages/apps/Stk/res/layout/ |
stk_menu_item.xml | 37 android:maxLength="234"
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTextAreaElement.cpp | 286 int signedMaxLength = maxLength(); 308 String HTMLTextAreaElement::sanitizeUserInputValue(const String& proposedValue, unsigned maxLength) 310 if (maxLength > 0 && U16_IS_LEAD(proposedValue[maxLength - 1])) 311 --maxLength; 312 return proposedValue.left(maxLength); 421 int HTMLTextAreaElement::maxLength() const 448 return locale().validationMessageTooLongText(computeLengthForSubmission(value()), maxLength()); 466 // longer than maxLength. 470 int max = maxLength(); [all...] |
/external/smack/src/org/xbill/DNS/ |
Message.java | 22 public static final int MAXLENGTH = 65535; 403 int maxLength) 418 if (out.current() > maxLength) { 428 toWire(DNSOutput out, int maxLength) { 429 if (maxLength < Header.LENGTH) 434 int tempMaxLength = maxLength; 499 * could happen if maxLength is smaller than a DNS header, for example. 500 * @param maxLength The maximum length of the message. 507 toWire(int maxLength) { 509 toWire(out, maxLength); [all...] |
/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/chromium/chrome/browser/resources/chromeos/ |
sim_unlock.html | 31 maxlength="8" size="14"> 67 maxlength="8" size="14"> 88 maxlength="8" size="14"> 95 maxlength="8" size="14"> 103 maxlength="8" size="14">
|
/external/chromium_org/chrome/browser/resources/chromeos/ |
sim_unlock.html | 32 maxlength="8" size="14"> 68 maxlength="8" size="14"> 89 maxlength="8" size="14"> 96 maxlength="8" size="14"> 104 maxlength="8" size="14">
|
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
WebSocketDeflater.cpp | 90 size_t maxLength = deflateBound(m_stream.get(), length); 93 m_buffer.grow(writePosition + maxLength); 94 setStreamParameter(m_stream.get(), data, length, m_buffer.data() + writePosition, maxLength); 98 m_buffer.shrink(writePosition + maxLength - m_stream->avail_out); 99 maxLength *= 2;
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
TextFieldInputType.cpp | 408 static String limitLength(const String& string, unsigned maxLength) 410 unsigned newLength = std::min(maxLength, string.length()); 434 // Make sure that the text to be inserted will not violate the maxLength. 451 unsigned maxLength = static_cast<unsigned>(isTextType() ? element().maxLength() : HTMLInputElement::maximumLength); // maxLength can never be negative. 452 unsigned appendableLength = maxLength > baseLength ? maxLength - baseLength : 0; 454 // Truncate the inserted text to avoid violating the maxLength and other constraints.
|