HomeSort by relevance Sort by last modified time
    Searched refs:lenient (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/v8/test/mjsunit/regress/
regress-bind-receiver.js 29 function lenient() { return this; } function
39 assertEquals(true, lenient.bind(true)() instanceof Boolean);
40 assertEquals(true, lenient.bind(42)() instanceof Number);
41 assertEquals(true, lenient.bind("")() instanceof String);
42 assertEquals(this, lenient.bind(null)());
43 assertEquals(this, lenient.bind(undefined)());
44 assertEquals(obj, lenient.bind(obj)());
  /frameworks/base/core/java/android/util/
JsonWriter.java 141 private boolean lenient; field in class:JsonWriter
177 * to lenient permits the following:
185 public void setLenient(boolean lenient) {
186 this.lenient = lenient;
193 return lenient;
334 * {@link Double#isInfinite() infinities} unless this writer is lenient.
338 if (!lenient && (Double.isNaN(value) || Double.isInfinite(value))) {
361 * {@link Double#isInfinite() infinities} unless this writer is lenient.
370 if (!lenient &
    [all...]
JsonReader.java 57 * exception. Lenient parsers should call {@link #skipValue()} to recursively
187 private boolean lenient = false; field in class:JsonReader
244 * parser to lenient causes it to ignore the following syntax errors:
261 public void setLenient(boolean lenient) {
262 this.lenient = lenient;
269 return lenient;
335 if (!lenient && token != JsonToken.BEGIN_ARRAY && token != JsonToken.BEGIN_OBJECT) {
353 if (lenient) {
612 /* In lenient mode, a 0-length literal means 'null' *
    [all...]
  /external/icu/icu4c/source/i18n/
datefmt.cpp 262 // We arrive here if fCalendar => calClone is non-lenient and
565 DateFormat::setLenient(UBool lenient)
568 fCalendar->setLenient(lenient);
571 setBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, lenient, status);
572 setBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC, lenient, status);
580 UBool lenient = TRUE; local
582 lenient = fCalendar->isLenient();
585 return lenient
591 DateFormat::setCalendarLenient(UBool lenient)
594 fCalendar->setLenient(lenient);
    [all...]
rbnf.cpp 54 }; /* "%%lenient-parse:" */
664 , lenient(FALSE)
686 , lenient(FALSE)
708 , lenient(FALSE)
729 , lenient(FALSE)
751 , lenient(FALSE)
770 , lenient(FALSE)
834 , lenient(FALSE)
857 lenient = rhs.lenient;
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
QuotedStringTokenizer.java 423 * @param lenient if true, will leave in backslashes that aren't valid escapes
426 public static String unquoteOnly(String s, boolean lenient)
447 if (lenient && !isValidEscaping(c))
477 public static String unquote(String s, boolean lenient)
534 if (lenient && !isValidEscaping(c))
  /cts/libs/json/src/com/android/json/stream/
JsonReader.java 55 * exception. Lenient parsers should call {@link #skipValue()} to recursively
179 private boolean lenient = false; field in class:JsonReader
230 * parser to lenient causes it to ignore the following syntax errors:
247 public void setLenient(boolean lenient) {
248 this.lenient = lenient;
580 /* In lenient mode, a 0-length literal means 'null' */
642 * Read the name/value separator. Usually a colon ':'. In lenient mode
765 if (!lenient) {
    [all...]
  /external/icu/icu4c/source/test/intltest/
calregts.h 80 void dowTest(UBool lenient) ;
caltest.h 35 void dowTest(UBool lenient);
dtfmttst.cpp 837 expLittleD = expBigD; // Expect the same, with default lenient parsing
3775 UBool lenient; member in struct:__anon10216
    [all...]
  /libcore/luni/src/main/java/java/util/
Calendar.java 64 * When a {@code Calendar} is <em>lenient</em>, it accepts a wider
65 * range of field values than it produces. For example, a lenient
68 * non-lenient {@code GregorianCalendar} throws an exception when given
338 private boolean lenient; field in class:Calendar
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
rbnf.h 216 * <p>The user can also specify a special &quot;rule set&quot; named <tt>%%lenient-parse</tt>.
217 * The body of <tt>%%lenient-parse</tt> isn't a set of number-formatting rules, but a <tt>RuleBasedCollator</tt>
218 * description which is used to define equivalences for lenient parsing. For more information
219 * on the syntax, see <tt>RuleBasedCollator</tt>. For more information on lenient parsing,
222 * of the <tt>lenient-parse</tt> rule set.</p>
571 * for lenient parsing.
577 * lenient parsing.
606 * lenient parsing.
999 UBool lenient; member in class:RuleBasedNumberFormat
    [all...]
datefmt.h 393 * By default, parsing is lenient: If the input is not in the form used by
426 * By default, parsing is lenient: If the input is not in the form used by
456 * By default, parsing is lenient: If the input is not in the form used by
679 * numeric processing is lenient.
685 * Specifies whether date/time parsing is to be lenient. With
686 * lenient parsing, the parser may use heuristics to interpret inputs that
687 * do not precisely match this object's format. Without lenient parsing,
700 * @param lenient True specifies date/time interpretation to be lenient.
704 virtual void setLenient(UBool lenient);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateFormat.java 653 * <p> By default, parsing is lenient: If the input is not in the form used
701 * <p> By default, parsing is lenient: If the input is not in the form used
736 * <p> By default, parsing is lenient: If the input is not in the form used
773 // This occurs if the calendar is non-lenient and there is
    [all...]
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
CalendarICU.java 241 public void setLenient(boolean lenient) {
242 fIcuCal.setLenient(lenient);
SimpleDateFormatICU.java 285 public void setLenient(boolean lenient) {
286 fIcuSdf.setLenient(lenient);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
Utils.java 46 int nibble = Utils.fromHex(s.charAt(n), true); // Set lenient to not blow up on ':'
165 public static int fromHex(char ch, boolean lenient) throws NumberFormatException {
172 } else if (lenient) {
  /prebuilts/tools/common/m2/repository/net/sf/ezmorph/ezmorph/1.0.6/
ezmorph-1.0.6.jar 
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
CompatibilityTest.java 314 boolean lenient = ( i > 0 );
315 cal.setLenient(lenient);
316 if (lenient != cal.isLenient()) errln("FAIL: setLenient/isLenient failed");
317 // Later: Check for lenient behavior
468 void dowTest(boolean lenient) {
472 cal.setLenient(lenient);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Calendar.java 75 * <p>When a <code>Calendar</code> is <em>lenient</em>, it accepts a wider range
76 * of field values than it produces. For example, a lenient
79 * non-lenient <code>GregorianCalendar</code> throws an exception when given
614 * calendar is set to not be lenient, out-of-range field values will
1374 private boolean lenient = true; field in class:Calendar
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
commons-io-2.2.jar 
plexus-utils-3.0.17.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-utils/2.0.5/
plexus-utils-2.0.5.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-utils/3.0/
plexus-utils-3.0.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-utils/3.0.7/
plexus-utils-3.0.7.jar 

Completed in 2901 milliseconds

1 2 3