HomeSort by relevance Sort by last modified time
    Searched full:toolong (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/
ValidityState.cpp 49 bool ValidityState::tooLong() const
51 return m_control->tooLong();
ValidityState.idl 28 readonly attribute boolean tooLong;
FormAssociatedElement.h 76 // stepMismatch, tooLong and valueMissing must call willValidate method.
82 virtual bool tooLong() const;
HTMLTextAreaElement.h 54 virtual bool tooLong() const OVERRIDE;
120 bool tooLong(const String&, NeedsToCheckDirtyFlag) const;
HTMLTextFormControlElement.h 42 // Common flag for HTMLInputElement::tooLong() and HTMLTextAreaElement::tooLong().
ValidityState.h 51 bool tooLong() const;
HTMLTextAreaElement.cpp 447 if (tooLong())
458 bool HTMLTextAreaElement::tooLong() const
460 return willValidate() && tooLong(value(), CheckDirtyFlag);
463 bool HTMLTextAreaElement::tooLong(const String& value, NeedsToCheckDirtyFlag check) const
478 return !valueMissing(candidate) && !tooLong(candidate, IgnoreDirtyFlag);
FormAssociatedElement.cpp 219 bool FormAssociatedElement::tooLong() const
232 || tooLong() || patternMismatch() || valueMissing() || hasBadInput() || customError();
HTMLInputElement.h 63 virtual bool tooLong() const OVERRIDE;
350 bool tooLong(const String&, NeedsToCheckDirtyFlag) const;
HTMLInputElement.cpp 205 && !tooLong(value, IgnoreDirtyFlag)
210 bool HTMLInputElement::tooLong() const
212 return willValidate() && tooLong(value(), CheckDirtyFlag);
235 bool HTMLInputElement::tooLong(const String& value, NeedsToCheckDirtyFlag check) const
    [all...]
  /external/clang/test/Sema/
format-strings-darwin.c 15 long tooLong = 2;
18 printf("%D", tooLong);
20 printf("%U", tooLong);
22 printf("%O", tooLong);
  /external/bzip2/
huffman.c 73 Bool tooLong;
114 tooLong = False;
120 if (j > maxLen) tooLong = True;
123 if (! tooLong) break;
  /libcore/luni/src/test/java/libcore/java/io/
DataOutputStreamTest.java 119 String tooLong = new String(new char[65536]);
121 os.writeUTF(tooLong);
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewWordLimitsTest.java 112 final String TOOLONG = "ThisWordIsTooLongToBeDefinedAsAWordInTheSenseUsedInTextView";
126 verifyWordLimits(TOOLONG, 0, -1, -1);
  /external/grub/netboot/
sis900.h 214 TOOLONG = 0x00400000,
sis900.c 1008 if (rx_status & (ABORT|OVERRUN|TOOLONG|RUNT|RXISERR|CRCERR|FAERR)) {
via-rhine.c 481 unsigned long toolong:1; member in struct:rhine_rx_desc::VTC_rx_status_tag::__anon21142
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeFactory.java 389 boolean tooLong = false;
395 tooLong = true;
405 if (tooLong) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputType.cpp 390 if (element().tooLong())
  /external/valgrind/main/VEX/switchback/
test_bzip2.c     [all...]
  /external/valgrind/main/exp-sgcheck/tests/
hackedbz2.c     [all...]
  /external/valgrind/main/memcheck/tests/
origin5-bz2.c     [all...]
varinfo6.c     [all...]
  /external/valgrind/main/perf/
bz2.c     [all...]
test_input_for_tinycc.c     [all...]

Completed in 1180 milliseconds

1 2