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

1 2 3 4

  /external/icu/icu4c/source/i18n/unicode/
rbnf.h 225 * <p>The user can also specify a special &quot;rule set&quot; named <tt>%%lenient-parse</tt>.
226 * The body of <tt>%%lenient-parse</tt> isn't a set of number-formatting rules, but a <tt>RuleBasedCollator</tt>
227 * description which is used to define equivalences for lenient parsing. For more information
228 * on the syntax, see <tt>RuleBasedCollator</tt>. For more information on lenient parsing,
231 * of the <tt>lenient-parse</tt> rule set.</p>
610 * for lenient parsing.
616 * lenient parsing.
645 * lenient parsing.
1046 UBool lenient; member in class:RuleBasedNumberFormat
    [all...]
  /libcore/ojluni/src/test/java/time/test/java/time/format/
TestReducedParser.java 97 private static final boolean LENIENT = false;
138 // Parse data and values that are consistent whether strict or lenient
214 // Parse data and values in strict and lenient modes.
216 // Strict Pair(endPos, value), Lenient Pair(endPos, value)
222 {YEAR, 2, 2, 2010, "3", 0, strict(0, null), lenient(1, 3)},
223 {YEAR, 2, 2, 2010, "4", 0, strict(0, null), lenient(1, 4)},
224 {YEAR, 2, 2, 2010, "5", 1, strict(1, null), lenient(1, null)},
225 {YEAR, 2, 2, 2010, "6-2", 0, strict(0, null), lenient(1, 6)},
226 {YEAR, 2, 2, 2010, "9", 0, strict(0, null), lenient(1, 9)},
229 {YEAR, 1, 4, 2000, "7A", 0, strict(1, 2007), lenient(1, 2007)}
501 private static Pair lenient(int parseLen, Integer parseVal) { method in class:TestReducedParser
    [all...]
  /external/icu/icu4c/source/i18n/
datefmt.cpp 343 // We arrive here if fCalendar => calClone is non-lenient and
644 DateFormat::setLenient(UBool lenient)
647 fCalendar->setLenient(lenient);
650 setBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, lenient, status);
651 setBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC, lenient, status);
659 UBool lenient = TRUE; local
661 lenient = fCalendar->isLenient();
664 return lenient
670 DateFormat::setCalendarLenient(UBool lenient)
673 fCalendar->setLenient(lenient);
    [all...]
  /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...]
  /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/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberFormatTestData.java 117 public Integer lenient = null; field in class:NumberFormatTestData
221 "lenient",
402 lenient = Integer.valueOf(value);
  /external/icu/icu4c/source/test/intltest/
numberformattesttuple.h 125 int32_t lenient; member in class:NumberFormatTestTuple
caltest.cpp 458 UBool lenient = ( i > 0 ); local
459 cal->setLenient(lenient);
460 if (lenient != cal->isLenient()) errln("FAIL: setLenient/isLenient failed");
461 // Later: Check for lenient behavior
706 void CalendarTest::dowTest(UBool lenient)
715 logln((lenient?UnicodeString("LENIENT0: "):UnicodeString("nonlenient0: ")) + UnicodeString(calToStr(*cal)));
716 cal->setLenient(lenient);
719 logln((lenient?UnicodeString("LENIENT: "):UnicodeString("nonlenient: ")) + UnicodeString(calToStr(*cal)));
    [all...]
dtfmttst.cpp 874 expLittleD = expBigD; // Expect the same, with default lenient parsing
3817 UBool lenient; member in struct:__anon20212
    [all...]
numfmtst.cpp 215 fmt.setLenient(NFTT_GET_FIELD(tuple, lenient, 1) != 0);
3500 UBool lenient; member in struct:__anon20236
7677 UBool lenient; member in struct:__anon20238
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberFormatTestData.java 116 public Integer lenient = null; field in class:NumberFormatTestData
220 "lenient",
401 lenient = Integer.valueOf(value);
  /prebuilts/tools/common/m2/repository/net/sf/ezmorph/ezmorph/1.0.6/
ezmorph-1.0.6.jar 
  /libcore/ojluni/src/main/java/java/util/
Calendar.java 105 * fields, <em>lenient</em> and <em>non-lenient</em>. When a
106 * <code>Calendar</code> is in lenient mode, it accepts a wider range of
109 * the calendar fields are normalized. For example, a lenient
113 * <p>When a <code>Calendar</code> is in non-lenient mode, it throws an
117 * non-lenient <code>GregorianCalendar</code> throws an exception upon
356 // the Calendar is lenient, the fields are also renormalized to standard
896 private boolean lenient = true; field in class:Calendar
1083 private boolean lenient = true; field in class:Calendar.Builder
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Calendar.java 78 * <p>When a <code>Calendar</code> is <em>lenient</em>, it accepts a wider range
79 * of field values than it produces. For example, a lenient
82 * non-lenient <code>GregorianCalendar</code> throws an exception when given
617 * calendar is set to not be lenient, out-of-range field values will
1320 private boolean lenient = true; field in class:Calendar
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Calendar.java 77 * <p>When a <code>Calendar</code> is <em>lenient</em>, it accepts a wider range
78 * of field values than it produces. For example, a lenient
81 * non-lenient <code>GregorianCalendar</code> throws an exception when given
616 * calendar is set to not be lenient, out-of-range field values will
1378 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/tools/common/m2/repository/com/google/code/gson/gson/2.6.2/
gson-2.6.2.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.8.0/
gson-2.8.0.jar 
  /prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/
commons-io-2.4.jar 
  /prebuilts/tools/common/offline-m2/commons-io/commons-io/2.4/
commons-io-2.4.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 812 milliseconds

1 2 3 4