/external/clang/test/Sema/ |
D | format-strings-darwin.c | 15 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/ |
D | ValidityState.cpp | 65 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()
|
D | ValidityState.h | 50 bool tooLong() const;
|
D | HTMLTextAreaElement.h | 51 bool tooLong(const String&, NeedsToCheckDirtyFlag) const;
|
D | HTMLTextAreaElement.cpp | 394 bool HTMLTextAreaElement::tooLong(const String& value, NeedsToCheckDirtyFlag check) const in tooLong() function in WebCore::HTMLTextAreaElement 408 return !valueMissing(candidate) && !tooLong(candidate, IgnoreDirtyFlag); in isValidValue()
|
D | ValidityState.idl | 29 readonly attribute boolean tooLong;
|
D | HTMLInputElement.h | 54 bool tooLong(const String&, NeedsToCheckDirtyFlag) const;
|
D | HTMLInputElement.cpp | 178 && !tooLong(value, IgnoreDirtyFlag) in isValidValue() 200 bool HTMLInputElement::tooLong(const String& value, NeedsToCheckDirtyFlag check) const in tooLong() function in WebCore::HTMLInputElement
|
/external/bzip2/ |
D | huffman.c | 73 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/ |
D | test_bzip2.c | 3228 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/ |
D | hackedbz2.c | 3252 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/ |
D | origin5-bz2.c | 3243 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()
|
D | varinfo6.c | 3281 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/ |
D | bz2.c | 3243 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()
|
D | test_input_for_tinycc.c | 2753 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/ |
D | ChangeLog-2010-01-29 | 32120 (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 …]
|
D | ChangeLog-2010-05-24 | 28495 (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().
|
D | ChangeLog-2010-12-06 | 28595 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):
|
D | ChangeLog-2011-02-16 | 41958 (WebCore::ValidityState::tooLong): 47102 (WebCore::ValidityState::tooLong):
|
D | ChangeLog | 2820 (WebCore::HTMLInputElement::tooLong):
|