/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | SimpleDateFormat.java | 2513 …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 …]
|
D | DateFormat.java | 1651 && 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/ |
D | SimpleDateFormat.java | 2500 …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 …]
|
D | DateFormat.java | 1532 && 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/ |
D | smpdtfmt.cpp | 2277 …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 …]
|
D | datefmt.cpp | 665 && 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
|
D | udat.cpp | 424 return ((DateFormat*)fmt)->getBooleanAttribute(attr, *status); in udat_getBooleanAttribute()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | DateFormatTest.java | 4886 …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/ |
D | DateFormatTest.java | 4885 …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/ |
D | dtfmttst.cpp | 4672 …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/ |
D | datefmt.h | 828 …virtual UBool U_EXPORT2 getBooleanAttribute(UDateFormatBooleanAttribute attr, UErrorCode &status) …
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.debug.core_3.6.0.v20100519.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.pde.core_3.6.1.v20100902_r361.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/icu/tools/srcgen/currysrc/libs/ |
D | org.eclipse.core.resources_3.10.0.v20150423-0755.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSE_.SF
META-INF/ECLIPSE_ ... |
/external/icu/icu4j/tools/build/ |
D | icu4j52.api3.gz |
|
D | icu4j57.api3.gz |
|
D | icu4j55.api3.gz |
|
D | icu4j53.api3.gz |
|
D | icu4j56.api3.gz |
|
D | icu4j54.api3.gz |
|
D | icu4j58.api3.gz |
|
/external/guice/extensions/struts2/lib/ |
D | core-3.1.1.jar | META-INF/
org/
org/eclipse/
org/eclipse/jdt/
org/eclipse ... |
/external/dagger2/lib/ |
D | google-java-format-0.1-20151017.042846-2.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |