Home
last modified time | relevance | path

Searched refs:tooLong (Results 1 – 20 of 20) sorted by relevance

/external/clang/test/Sema/
Dformat-strings-darwin.c15 long tooLong = 2; in test() local
18 printf("%D", tooLong); in test()
20 printf("%U", tooLong); in test()
22 printf("%O", tooLong); in test()
/external/webkit/Source/WebCore/html/
DValidityState.cpp65 if (tooLong()) { in validationMessage()
150 bool ValidityState::tooLong() const in tooLong() function in WebCore::ValidityState
158 return input->tooLong(input->value(), HTMLTextFormControlElement::CheckDirtyFlag); in tooLong()
162 return textArea->tooLong(textArea->value(), HTMLTextFormControlElement::CheckDirtyFlag); in tooLong()
212 || tooLong() || patternMismatch() || valueMissing() || customError(); in valid()
DValidityState.h50 bool tooLong() const;
DHTMLTextAreaElement.h51 bool tooLong(const String&, NeedsToCheckDirtyFlag) const;
DHTMLTextAreaElement.cpp394 bool HTMLTextAreaElement::tooLong(const String& value, NeedsToCheckDirtyFlag check) const in tooLong() function in WebCore::HTMLTextAreaElement
408 return !valueMissing(candidate) && !tooLong(candidate, IgnoreDirtyFlag); in isValidValue()
DValidityState.idl29 readonly attribute boolean tooLong;
DHTMLInputElement.h54 bool tooLong(const String&, NeedsToCheckDirtyFlag) const;
DHTMLInputElement.cpp178 && !tooLong(value, IgnoreDirtyFlag) in isValidValue()
200 bool HTMLInputElement::tooLong(const String& value, NeedsToCheckDirtyFlag check) const in tooLong() function in WebCore::HTMLInputElement
/external/bzip2/
Dhuffman.c73 Bool tooLong; in BZ2_hbMakeCodeLengths() local
114 tooLong = False; in BZ2_hbMakeCodeLengths()
120 if (j > maxLen) tooLong = True; in BZ2_hbMakeCodeLengths()
123 if (! tooLong) break; in BZ2_hbMakeCodeLengths()
/external/valgrind/main/VEX/switchback/
Dtest_bzip2.c3228 Bool tooLong; in BZ2_hbMakeCodeLengths() local
3269 tooLong = False; in BZ2_hbMakeCodeLengths()
3275 if (j > maxLen) tooLong = True; in BZ2_hbMakeCodeLengths()
3278 if (! tooLong) break; in BZ2_hbMakeCodeLengths()
/external/valgrind/main/exp-sgcheck/tests/
Dhackedbz2.c3252 Bool tooLong; in BZ2_hbMakeCodeLengths() local
3293 tooLong = False; in BZ2_hbMakeCodeLengths()
3299 if (j > maxLen) tooLong = True; in BZ2_hbMakeCodeLengths()
3302 if (! tooLong) break; in BZ2_hbMakeCodeLengths()
/external/valgrind/main/memcheck/tests/
Dorigin5-bz2.c3243 Bool tooLong; in BZ2_hbMakeCodeLengths() local
3284 tooLong = False; in BZ2_hbMakeCodeLengths()
3290 if (j > maxLen) tooLong = True; in BZ2_hbMakeCodeLengths()
3293 if (! tooLong) break; in BZ2_hbMakeCodeLengths()
Dvarinfo6.c3281 Bool tooLong; in BZ2_hbMakeCodeLengths() local
3322 tooLong = False; in BZ2_hbMakeCodeLengths()
3328 if (j > maxLen) tooLong = True; in BZ2_hbMakeCodeLengths()
3331 if (! tooLong) break; in BZ2_hbMakeCodeLengths()
/external/valgrind/main/perf/
Dbz2.c3243 Bool tooLong; in BZ2_hbMakeCodeLengths() local
3284 tooLong = False; in BZ2_hbMakeCodeLengths()
3290 if (j > maxLen) tooLong = True; in BZ2_hbMakeCodeLengths()
3293 if (! tooLong) break; in BZ2_hbMakeCodeLengths()
Dtest_input_for_tinycc.c2753 Bool tooLong; in BZ2_hbMakeCodeLengths() local
2794 tooLong = ((Bool)0); in BZ2_hbMakeCodeLengths()
2800 if (j > maxLen) tooLong = ((Bool)1); in BZ2_hbMakeCodeLengths()
2803 if (! tooLong) break; in BZ2_hbMakeCodeLengths()
/external/webkit/Source/WebCore/
DChangeLog-2010-01-2932120 (WebCore::HTMLInputElement::tooLong):
52497 Adds ValidityState.tooLong support for <input> and <textarea>.
52499 Introduces tooLong() in HTMLFormControlElement and it always returns false.
52501 length and maxLength. tooLong() should work only for `dirty' values.
52509 Tests: fast/forms/ValidityState-tooLong-input.html
52510 fast/forms/ValidityState-tooLong-textarea.html
52513 (WebCore::HTMLFormControlElement::tooLong):
52515 (WebCore::HTMLInputElement::tooLong):
52523 (WebCore::HTMLTextAreaElement::tooLong):
52526 (WebCore::ValidityState::tooLong):
[all …]
DChangeLog-2010-05-2428495 (WebCore::HTMLInputElement::tooLong):
28499 (WebCore::HTMLTextAreaElement::tooLong):
48913 - ValidityState.tooLong behavior was inconsistent with UIs of
48914 <input> and <textarea>. tooLong checked Unicode code point length
48920 (WebCore::HTMLInputElement::tooLong): Use numGraphemeClusters() instead of length().
48929 (WebCore::HTMLTextAreaElement::tooLong): Use numGraphemeClusters() instead of length().
DChangeLog-2010-12-0628595 fast/forms/ValidityState-tooLong-input.html
28596 fast/forms/ValidityState-tooLong-textarea.html
67519 Remove virtual valueMissing(), patternMismatch(), and tooLong().
67527 (WebCore::HTMLInputElement::tooLong): Add String and NeedsToCheckDirtyFlag parameters.
67533 (WebCore::HTMLTextAreaElement::tooLong): Add String and NeedsToCheckDirtyFlag parameters.
67541 …(WebCore::ValidityState::tooLong): Calls valueMissing() of HTMLInputElement or HTMLTextAreaElement.
94985 (WebCore::HTMLInputElement::tooLong):
DChangeLog-2011-02-1641958 (WebCore::ValidityState::tooLong):
47102 (WebCore::ValidityState::tooLong):
DChangeLog2820 (WebCore::HTMLInputElement::tooLong):