Home
last modified time | relevance | path

Searched refs:getBooleanAttribute (Results 1 – 21 of 21) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSimpleDateFormat.java2534 …if (extra == '.' && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE) && ite… in parse()
2814 …if (ich == '.' && pos == originalPos && 0 < itemIndex && getBooleanAttribute(DateFormat.BooleanAtt… in matchLiteral()
2823 …} else if ((pch == ' ' || pch == '.') && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALL… in matchLiteral()
2826 …} else if (pos != originalPos && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_PARTIAL_LIT… in matchLiteral()
2836 …if (complete[0] == false && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE… in matchLiteral()
3281 …if ( number != null && (getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_NUMERIC) || fo… in subParse()
3288 …if (count <= 2 || (number != null && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_N… in subParse()
3314 …if(getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_MULTIPLE_PATTERNS_FOR_MATCH) || count == … in subParse()
3325 …if(getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_MULTIPLE_PATTERNS_FOR_MATCH) || count == … in subParse()
3360 …if(count <= 2 || (number != null && (getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_N… in subParse()
[all …]
DDateFormat.java1658 && getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC) in isLenient()
1659 && getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITESPACE); in isLenient()
1718 public boolean getBooleanAttribute(BooleanAttribute key) in getBooleanAttribute() method in DateFormat
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSimpleDateFormat.java2521 …if (extra == '.' && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE) && ite… in parse()
2801 …if (ich == '.' && pos == originalPos && 0 < itemIndex && getBooleanAttribute(DateFormat.BooleanAtt… in matchLiteral()
2810 …} else if ((pch == ' ' || pch == '.') && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALL… in matchLiteral()
2813 …} else if (pos != originalPos && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_PARTIAL_LIT… in matchLiteral()
2823 …if (complete[0] == false && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE… in matchLiteral()
3265 …if ( number != null && (getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_NUMERIC) || fo… in subParse()
3272 …if (count <= 2 || (number != null && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_N… in subParse()
3298 …if(getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_MULTIPLE_PATTERNS_FOR_MATCH) || count == … in subParse()
3309 …if(getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_MULTIPLE_PATTERNS_FOR_MATCH) || count == … in subParse()
3344 …if(count <= 2 || (number != null && (getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_N… in subParse()
[all …]
DDateFormat.java1539 && getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC) in isLenient()
1540 && getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITESPACE); in isLenient()
1595 public boolean getBooleanAttribute(BooleanAttribute key) in getBooleanAttribute() method in DateFormat
/external/icu/icu4c/source/i18n/
Dsmpdtfmt.cpp2312 …matchLiterals(fPattern, i, text, pos, getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, status), ge… in parse()
2320 if (text.charAt(pos) == 0x2e && getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, status)) { in parse()
3013 if (!getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, status)) { in subParse()
3149 …if (gotNumber && (getBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC,status) || value > fSymbols->fShort… in subParse()
3198 … if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 4) { in subParse()
3204 … if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 3) { in subParse()
3208 … if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 4) { in subParse()
3214 … if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 3) { in subParse()
3218 …if (newStart > 0 || !getBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC, status)) // currently we do no… in subParse()
3269 if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 4) { in subParse()
[all …]
Ddatefmt.cpp666 && getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, status) in isLenient()
667 && getBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC, status); in isLenient()
740 DateFormat::getBooleanAttribute(UDateFormatBooleanAttribute attr, UErrorCode &/*status*/) const { in getBooleanAttribute() function in DateFormat
Dudat.cpp424 return ((DateFormat*)fmt)->getBooleanAttribute(attr, *status); in udat_getBooleanAttribute()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDateFormatTest.java4890 …assertTrue("ALLOW_WHITESPACE default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITES… in TestParseLeniencyAPIs()
4891 …assertTrue("ALLOW_NUMERIC default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC)); in TestParseLeniencyAPIs()
4892 …assertTrue("PARTIAL_MATCH default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_PARTIAL_LITERAL… in TestParseLeniencyAPIs()
4893 …assertTrue("MULTIPLE_PATTERNS default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_MULTIPLE_PA… in TestParseLeniencyAPIs()
4900 …assertTrue("ALLOW_WHITESPACE after setCalendarLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttr… in TestParseLeniencyAPIs()
4901 …assertTrue("ALLOW_NUMERIC after setCalendarLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttrib… in TestParseLeniencyAPIs()
4908 …assertFalse("ALLOW_WHITESPACE after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.P… in TestParseLeniencyAPIs()
4909 …assertFalse("ALLOW_NUMERIC after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.PAR… in TestParseLeniencyAPIs()
4911 …assertTrue("PARTIAL_MATCH after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.PARSE… in TestParseLeniencyAPIs()
4912 …assertTrue("MULTIPLE_PATTERNS after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.P… in TestParseLeniencyAPIs()
[all …]
/external/icu/icu4c/source/test/intltest/
Ddtfmttst.cpp4677 …assertTrue("ALLOW_WHITESPACE default", fmt->getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, statu… in TestParseLeniencyAPIs()
4678 assertTrue("ALLOW_NUMERIC default", fmt->getBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC, status)); in TestParseLeniencyAPIs()
4679 …assertTrue("PARTIAL_MATCH default", fmt->getBooleanAttribute(UDAT_PARSE_PARTIAL_LITERAL_MATCH, sta… in TestParseLeniencyAPIs()
4680 …assertTrue("MULTIPLE_PATTERNS default", fmt->getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_… in TestParseLeniencyAPIs()
4687 …assertTrue("ALLOW_WHITESPACE after setCalendarLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE… in TestParseLeniencyAPIs()
4688 …assertTrue("ALLOW_NUMERIC after setCalendarLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_A… in TestParseLeniencyAPIs()
4695 …assertFalse("ALLOW_WHITESPACE after setLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_ALLOW_… in TestParseLeniencyAPIs()
4696 …assertFalse("ALLOW_NUMERIC after setLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_ALLOW_NU… in TestParseLeniencyAPIs()
4698 …assertTrue("PARTIAL_MATCH after setLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_PARTIAL_LI… in TestParseLeniencyAPIs()
4699 …assertTrue("MULTIPLE_PATTERNS after setLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_MULTIP… in TestParseLeniencyAPIs()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DDateFormatTest.java4893 …assertTrue("ALLOW_WHITESPACE default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITES… in TestParseLeniencyAPIs()
4894 …assertTrue("ALLOW_NUMERIC default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC)); in TestParseLeniencyAPIs()
4895 …assertTrue("PARTIAL_MATCH default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_PARTIAL_LITERAL… in TestParseLeniencyAPIs()
4896 …assertTrue("MULTIPLE_PATTERNS default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_MULTIPLE_PA… in TestParseLeniencyAPIs()
4903 …assertTrue("ALLOW_WHITESPACE after setCalendarLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttr… in TestParseLeniencyAPIs()
4904 …assertTrue("ALLOW_NUMERIC after setCalendarLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttrib… in TestParseLeniencyAPIs()
4911 …assertFalse("ALLOW_WHITESPACE after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.P… in TestParseLeniencyAPIs()
4912 …assertFalse("ALLOW_NUMERIC after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.PAR… in TestParseLeniencyAPIs()
4914 …assertTrue("PARTIAL_MATCH after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.PARSE… in TestParseLeniencyAPIs()
4915 …assertTrue("MULTIPLE_PATTERNS after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.P… in TestParseLeniencyAPIs()
[all …]
/external/icu/icu4c/source/i18n/unicode/
Ddatefmt.h833 …virtual UBool U_EXPORT2 getBooleanAttribute(UDateFormatBooleanAttribute attr, UErrorCode &status) …
/external/icu/icu4j/tools/build/
Dicu4j55.api3.gz
Dicu4j56.api3.gz12;ICU4J 56.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j57.api3.gz
Dicu4j54.api3.gz
Dicu4j59.api3.gz
Dicu4j58.api3.gz
Dicu4j61.api3.gz12;ICU4J 61.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j60.api3.gz
Dicu4j62.api3.gz
Dicu4j63.api3.gz