Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSimpleDateFormat.java2577 …if (extra == '.' && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE) && ite… in parse()
2853 …if (ich == '.' && pos == originalPos && 0 < itemIndex && getBooleanAttribute(DateFormat.BooleanAtt… in matchLiteral()
2862 …} else if ((pch == ' ' || pch == '.') && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALL… in matchLiteral()
2865 …} else if (pos != originalPos && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_PARTIAL_LIT… in matchLiteral()
2875 …if (complete[0] == false && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE… in matchLiteral()
3320 …if ( number != null && (getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_NUMERIC) || fo… in subParse()
3327 …if (count <= 2 || (number != null && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_N… in subParse()
3353 …if(getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_MULTIPLE_PATTERNS_FOR_MATCH) || count == … in subParse()
3364 …if(getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_MULTIPLE_PATTERNS_FOR_MATCH) || count == … in subParse()
3399 …if(count <= 2 || (number != null && (getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_N… in subParse()
[all …]
DDateFormat.java1719 && getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC) in isLenient()
1720 && getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITESPACE); in isLenient()
1779 public boolean getBooleanAttribute(BooleanAttribute key) in getBooleanAttribute() method in DateFormat
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSimpleDateFormat.java2562 …if (extra == '.' && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE) && ite… in parse()
2838 …if (ich == '.' && pos == originalPos && 0 < itemIndex && getBooleanAttribute(DateFormat.BooleanAtt… in matchLiteral()
2847 …} else if ((pch == ' ' || pch == '.') && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALL… in matchLiteral()
2850 …} else if (pos != originalPos && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_PARTIAL_LIT… in matchLiteral()
2860 …if (complete[0] == false && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE… in matchLiteral()
3302 …if ( number != null && (getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_NUMERIC) || fo… in subParse()
3309 …if (count <= 2 || (number != null && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_N… in subParse()
3335 …if(getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_MULTIPLE_PATTERNS_FOR_MATCH) || count == … in subParse()
3346 …if(getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_MULTIPLE_PATTERNS_FOR_MATCH) || count == … in subParse()
3381 …if(count <= 2 || (number != null && (getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_N… in subParse()
[all …]
DDateFormat.java1596 && getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC) in isLenient()
1597 && getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITESPACE); in isLenient()
1652 public boolean getBooleanAttribute(BooleanAttribute key) in getBooleanAttribute() method in DateFormat
/external/icu/icu4c/source/i18n/
Dsmpdtfmt.cpp2400 …matchLiterals(fPattern, i, text, pos, getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, status), ge… in parse()
2408 if (text.charAt(pos) == 0x2e && getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, status)) { in parse()
3097 if (!getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, status)) { in subParse()
3233 …if (gotNumber && (getBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC,status) || value > fSymbols->fShort… in subParse()
3282 … if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 4) { in subParse()
3288 … if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 3) { in subParse()
3292 … if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 4) { in subParse()
3298 … if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 3) { in subParse()
3302 …if (newStart > 0 || !getBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC, status)) // currently we do no… in subParse()
3353 if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 4) { in subParse()
[all …]
Ddatefmt.cpp671 && getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, status) in isLenient()
672 && getBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC, status); in isLenient()
745 DateFormat::getBooleanAttribute(UDateFormatBooleanAttribute attr, UErrorCode &/*status*/) const { in getBooleanAttribute() function in DateFormat
Dudat.cpp433 return ((DateFormat*)fmt)->getBooleanAttribute(attr, *status); in udat_getBooleanAttribute()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDateFormatTest.java4978 …assertTrue("ALLOW_WHITESPACE default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITES… in TestParseLeniencyAPIs()
4979 …assertTrue("ALLOW_NUMERIC default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC)); in TestParseLeniencyAPIs()
4980 …assertTrue("PARTIAL_MATCH default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_PARTIAL_LITERAL… in TestParseLeniencyAPIs()
4981 …assertTrue("MULTIPLE_PATTERNS default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_MULTIPLE_PA… in TestParseLeniencyAPIs()
4988 …assertTrue("ALLOW_WHITESPACE after setCalendarLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttr… in TestParseLeniencyAPIs()
4989 …assertTrue("ALLOW_NUMERIC after setCalendarLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttrib… in TestParseLeniencyAPIs()
4996 …assertFalse("ALLOW_WHITESPACE after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.P… in TestParseLeniencyAPIs()
4997 …assertFalse("ALLOW_NUMERIC after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.PAR… in TestParseLeniencyAPIs()
4999 …assertTrue("PARTIAL_MATCH after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.PARSE… in TestParseLeniencyAPIs()
5000 …assertTrue("MULTIPLE_PATTERNS after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.P… in TestParseLeniencyAPIs()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DDateFormatTest.java4981 …assertTrue("ALLOW_WHITESPACE default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITES… in TestParseLeniencyAPIs()
4982 …assertTrue("ALLOW_NUMERIC default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC)); in TestParseLeniencyAPIs()
4983 …assertTrue("PARTIAL_MATCH default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_PARTIAL_LITERAL… in TestParseLeniencyAPIs()
4984 …assertTrue("MULTIPLE_PATTERNS default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_MULTIPLE_PA… in TestParseLeniencyAPIs()
4991 …assertTrue("ALLOW_WHITESPACE after setCalendarLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttr… in TestParseLeniencyAPIs()
4992 …assertTrue("ALLOW_NUMERIC after setCalendarLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttrib… in TestParseLeniencyAPIs()
4999 …assertFalse("ALLOW_WHITESPACE after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.P… in TestParseLeniencyAPIs()
5000 …assertFalse("ALLOW_NUMERIC after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.PAR… in TestParseLeniencyAPIs()
5002 …assertTrue("PARTIAL_MATCH after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.PARSE… in TestParseLeniencyAPIs()
5003 …assertTrue("MULTIPLE_PATTERNS after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.P… in TestParseLeniencyAPIs()
[all …]
/external/icu/icu4c/source/test/intltest/
Ddtfmttst.cpp4739 …assertTrue("ALLOW_WHITESPACE default", fmt->getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, statu… in TestParseLeniencyAPIs()
4740 assertTrue("ALLOW_NUMERIC default", fmt->getBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC, status)); in TestParseLeniencyAPIs()
4741 …assertTrue("PARTIAL_MATCH default", fmt->getBooleanAttribute(UDAT_PARSE_PARTIAL_LITERAL_MATCH, sta… in TestParseLeniencyAPIs()
4742 …assertTrue("MULTIPLE_PATTERNS default", fmt->getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_… in TestParseLeniencyAPIs()
4749 …assertTrue("ALLOW_WHITESPACE after setCalendarLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE… in TestParseLeniencyAPIs()
4750 …assertTrue("ALLOW_NUMERIC after setCalendarLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_A… in TestParseLeniencyAPIs()
4757 …assertFalse("ALLOW_WHITESPACE after setLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_ALLOW_… in TestParseLeniencyAPIs()
4758 …assertFalse("ALLOW_NUMERIC after setLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_ALLOW_NU… in TestParseLeniencyAPIs()
4760 …assertTrue("PARTIAL_MATCH after setLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_PARTIAL_LI… in TestParseLeniencyAPIs()
4761 …assertTrue("MULTIPLE_PATTERNS after setLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_MULTIP… in TestParseLeniencyAPIs()
[all …]
/external/icu/libicu/cts_headers/unicode/
Ddatefmt.h843 …virtual UBool U_EXPORT2 getBooleanAttribute(UDateFormatBooleanAttribute attr, UErrorCode &status) …
/external/icu/icu4c/source/i18n/unicode/
Ddatefmt.h843 …virtual UBool U_EXPORT2 getBooleanAttribute(UDateFormatBooleanAttribute attr, UErrorCode &status) …
/external/icu/android_icu4j/api/public/
Dcurrent.txt2225 method public boolean getBooleanAttribute(android.icu.text.DateFormat.BooleanAttribute);
/external/icu/icu4j/tools/build/
Dicu4j60.api3.gz
Dicu4j62.api3.gz12;ICU4J 62.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j61.api3.gz
Dicu4j59.api3.gz12;ICU4J 59.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j67.api3.gz12;ICU4J 67.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j63.api3.gz
Dicu4j65.api3.gz
Dicu4j68.api3.gz
Dicu4j64.api3.gz12;ICU4J 64.2;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j66.api3.gz