Home
last modified time | relevance | path

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

12

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSimpleDateFormat.java2513 …if (extra == '.' && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE) && ite… in parse()
2793 …if (ich == '.' && pos == originalPos && 0 < itemIndex && getBooleanAttribute(DateFormat.BooleanAtt… in matchLiteral()
2802 …} else if ((pch == ' ' || pch == '.') && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALL… in matchLiteral()
2805 …} else if (pos != originalPos && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_PARTIAL_LIT… in matchLiteral()
2815 …if (complete[0] == false && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE… in matchLiteral()
3263 …if ( number != null && (getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_NUMERIC) || fo… in subParse()
3270 …if (count <= 2 || (number != null && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_N… in subParse()
3296 …if(getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_MULTIPLE_PATTERNS_FOR_MATCH) || count == … in subParse()
3307 …if(getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_MULTIPLE_PATTERNS_FOR_MATCH) || count == … in subParse()
3342 …if(count <= 2 || (number != null && (getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_N… in subParse()
[all …]
DDateFormat.java1651 && getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC) in isLenient()
1652 && getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITESPACE); in isLenient()
1711 public boolean getBooleanAttribute(BooleanAttribute key) in getBooleanAttribute() method in DateFormat
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSimpleDateFormat.java2500 …if (extra == '.' && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE) && ite… in parse()
2780 …if (ich == '.' && pos == originalPos && 0 < itemIndex && getBooleanAttribute(DateFormat.BooleanAtt… in matchLiteral()
2789 …} else if ((pch == ' ' || pch == '.') && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALL… in matchLiteral()
2792 …} else if (pos != originalPos && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_PARTIAL_LIT… in matchLiteral()
2802 …if (complete[0] == false && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE… in matchLiteral()
3247 …if ( number != null && (getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_NUMERIC) || fo… in subParse()
3254 …if (count <= 2 || (number != null && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_N… in subParse()
3280 …if(getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_MULTIPLE_PATTERNS_FOR_MATCH) || count == … in subParse()
3291 …if(getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_MULTIPLE_PATTERNS_FOR_MATCH) || count == … in subParse()
3326 …if(count <= 2 || (number != null && (getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_N… in subParse()
[all …]
DDateFormat.java1532 && getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC) in isLenient()
1533 && getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITESPACE); in isLenient()
1588 public boolean getBooleanAttribute(BooleanAttribute key) in getBooleanAttribute() method in DateFormat
/external/icu/icu4c/source/i18n/
Dsmpdtfmt.cpp2277 …matchLiterals(fPattern, i, text, pos, getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, status), ge… in parse()
2285 if (text.charAt(pos) == 0x2e && getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, status)) { in parse()
2978 if (!getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, status)) { in subParse()
3114 …if (gotNumber && (getBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC,status) || value > fSymbols->fShort… in subParse()
3163 … if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 4) { in subParse()
3169 … if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 3) { in subParse()
3173 … if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 4) { in subParse()
3179 … if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 3) { in subParse()
3183 …if (newStart > 0 || !getBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC, status)) // currently we do no… in subParse()
3234 if(getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH, status) || count == 4) { in subParse()
[all …]
Ddatefmt.cpp665 && getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, status) in isLenient()
666 && getBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC, status); in isLenient()
739 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/android_icu4j/src/main/tests/android/icu/dev/test/format/
DDateFormatTest.java4886 …assertTrue("ALLOW_WHITESPACE default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITES… in TestParseLeniencyAPIs()
4887 …assertTrue("ALLOW_NUMERIC default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC)); in TestParseLeniencyAPIs()
4888 …assertTrue("PARTIAL_MATCH default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_PARTIAL_LITERAL… in TestParseLeniencyAPIs()
4889 …assertTrue("MULTIPLE_PATTERNS default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_MULTIPLE_PA… in TestParseLeniencyAPIs()
4896 …assertTrue("ALLOW_WHITESPACE after setCalendarLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttr… in TestParseLeniencyAPIs()
4897 …assertTrue("ALLOW_NUMERIC after setCalendarLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttrib… in TestParseLeniencyAPIs()
4904 …assertFalse("ALLOW_WHITESPACE after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.P… in TestParseLeniencyAPIs()
4905 …assertFalse("ALLOW_NUMERIC after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.PAR… in TestParseLeniencyAPIs()
4907 …assertTrue("PARTIAL_MATCH after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.PARSE… in TestParseLeniencyAPIs()
4908 …assertTrue("MULTIPLE_PATTERNS after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.P… in TestParseLeniencyAPIs()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDateFormatTest.java4885 …assertTrue("ALLOW_WHITESPACE default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITES… in TestParseLeniencyAPIs()
4886 …assertTrue("ALLOW_NUMERIC default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC)); in TestParseLeniencyAPIs()
4887 …assertTrue("PARTIAL_MATCH default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_PARTIAL_LITERAL… in TestParseLeniencyAPIs()
4888 …assertTrue("MULTIPLE_PATTERNS default", fmt.getBooleanAttribute(BooleanAttribute.PARSE_MULTIPLE_PA… in TestParseLeniencyAPIs()
4895 …assertTrue("ALLOW_WHITESPACE after setCalendarLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttr… in TestParseLeniencyAPIs()
4896 …assertTrue("ALLOW_NUMERIC after setCalendarLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttrib… in TestParseLeniencyAPIs()
4903 …assertFalse("ALLOW_WHITESPACE after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.P… in TestParseLeniencyAPIs()
4904 …assertFalse("ALLOW_NUMERIC after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.PAR… in TestParseLeniencyAPIs()
4906 …assertTrue("PARTIAL_MATCH after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.PARSE… in TestParseLeniencyAPIs()
4907 …assertTrue("MULTIPLE_PATTERNS after setLenient(FALSE)", fmt.getBooleanAttribute(BooleanAttribute.P… in TestParseLeniencyAPIs()
[all …]
/external/icu/icu4c/source/test/intltest/
Ddtfmttst.cpp4672 …assertTrue("ALLOW_WHITESPACE default", fmt->getBooleanAttribute(UDAT_PARSE_ALLOW_WHITESPACE, statu… in TestParseLeniencyAPIs()
4673 assertTrue("ALLOW_NUMERIC default", fmt->getBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC, status)); in TestParseLeniencyAPIs()
4674 …assertTrue("PARTIAL_MATCH default", fmt->getBooleanAttribute(UDAT_PARSE_PARTIAL_LITERAL_MATCH, sta… in TestParseLeniencyAPIs()
4675 …assertTrue("MULTIPLE_PATTERNS default", fmt->getBooleanAttribute(UDAT_PARSE_MULTIPLE_PATTERNS_FOR_… in TestParseLeniencyAPIs()
4682 …assertTrue("ALLOW_WHITESPACE after setCalendarLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE… in TestParseLeniencyAPIs()
4683 …assertTrue("ALLOW_NUMERIC after setCalendarLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_A… in TestParseLeniencyAPIs()
4690 …assertFalse("ALLOW_WHITESPACE after setLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_ALLOW_… in TestParseLeniencyAPIs()
4691 …assertFalse("ALLOW_NUMERIC after setLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_ALLOW_NU… in TestParseLeniencyAPIs()
4693 …assertTrue("PARTIAL_MATCH after setLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_PARTIAL_LI… in TestParseLeniencyAPIs()
4694 …assertTrue("MULTIPLE_PATTERNS after setLenient(FALSE)", fmt->getBooleanAttribute(UDAT_PARSE_MULTIP… in TestParseLeniencyAPIs()
[all …]
/external/icu/icu4c/source/i18n/unicode/
Ddatefmt.h828 …virtual UBool U_EXPORT2 getBooleanAttribute(UDateFormatBooleanAttribute attr, UErrorCode &status) …
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.debug.core_3.6.0.v20100519.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/icu/tools/srcgen/currysrc/libs/
Dorg.eclipse.core.resources_3.10.0.v20150423-0755.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_ ...
/external/icu/icu4j/tools/build/
Dicu4j52.api3.gz
Dicu4j57.api3.gz
Dicu4j55.api3.gz
Dicu4j53.api3.gz
Dicu4j56.api3.gz
Dicu4j54.api3.gz
Dicu4j58.api3.gz
/external/guice/extensions/struts2/lib/
Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse ...
/external/dagger2/lib/
Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...

12