/packages/apps/Contacts/src/com/android/contacts/util/ |
DateUtils.java | 22 import java.text.ParsePosition; 75 ParsePosition parsePosition = new ParsePosition(0); 79 parsePosition.setIndex(0); 80 Date date = f.parse(string, parsePosition); 81 if (parsePosition.getIndex() == string.length()) { 104 ParsePosition parsePosition = new ParsePosition(0) [all...] |
/external/icu4c/i18n/ |
format.cpp | 15 * 07/20/98 stephen Added explicit init values for Field/ParsePosition 143 ParsePosition parsePosition(0); 144 parseObject(source, result, parsePosition); 145 if (parsePosition.getIndex() == 0) {
|
nfsubs.cpp | 152 ParsePosition& parsePosition, 212 ParsePosition& parsePosition, 279 ParsePosition& parsePosition, 311 ParsePosition& /*parsePosition*/, 654 * @param parsePosition On entry, ignored, but assumed to be 0. 672 * no match this is new Long(0) (not null), and parsePosition [all...] |
nfsubs.h | 165 * @param parsePosition On entry, ignored, but assumed to be 0. 183 * no match this is new Long(0) (not null), and parsePosition 187 ParsePosition& parsePosition,
|
winnmfmt.h | 100 virtual void parse(const UnicodeString& text, Formattable& result, ParsePosition& parsePosition) const;
|
nfrule.cpp | 725 * @param parsePosition On entry, the value is ignored and assumed to 757 ParsePosition& parsePosition, 763 // (because we're going to change it) and use our own ParsePosition 764 ParsePosition pp; 795 // commented out because ParsePosition doesn't have error index in 1.1.x 797 parsePosition.setErrorIndex(pp.getErrorIndex()); [all...] |
rbnf.cpp | [all...] |
winnmfmt.cpp | 217 void Win32NumberFormat::parse(const UnicodeString& text, Formattable& result, ParsePosition& parsePosition) const 223 nf->parse(text, result, parsePosition);
|
decimfmt.cpp | 22 * 07/09/97 helena Made ParsePosition into a class. [all...] |
numfmt.cpp | 540 ParsePosition& parse_pos) const 588 ParsePosition parsePosition(0); 589 parse(text, result, parsePosition); 590 if (parsePosition.getIndex() == 0) { 597 ParsePosition& pos) const { [all...] |
/external/icu4c/i18n/unicode/ |
choicfmt.h | 577 * If no object can be parsed, parsePosition is unchanged, and NULL is 583 * @param parsePosition The position to start parsing at on input. 591 ParsePosition& parsePosition) const; 599 * If no object can be parsed, parsePosition is unchanged, and NULL is
|
decimfmt.h | 17 * 07/10/97 helena Made ParsePosition a class and get rid of the function 361 * <p>If parse(UnicodeString&,Formattable&,ParsePosition&) [all...] |
numfmt.h | 136 * ParsePosition and FieldPosition to allow you to: 311 ParsePosition& parse_pos) const; 549 * @param parsePosition The position to start parsing at on input. 558 ParsePosition& parsePosition) const = 0; 600 ParsePosition& pos) const; [all...] |
rbnf.h | [all...] |
/external/icu4c/test/intltest/ |
dtfmttst.cpp | 561 ParsePosition pos(0); 689 ParsePosition pos(0); 696 pos = ParsePosition(0); [all...] |
numfmtst.cpp | 154 ParsePosition ppos; 181 ParsePosition& ) const {} 366 ParsePosition pos(0); 414 ParsePosition pos(0); [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
OldNumberFormatTest.java | 25 import java.text.ParsePosition; 109 new ParsePosition(-1))); 112 new ParsePosition(1), new Double(23.123), 7, true); 115 new ParsePosition(3), new Double(0.123), 7, true); 120 new ParsePosition(3), new Double(123.123), 10, true); 124 new ParsePosition(0), null, 0, false); 129 new ParsePosition(3), new Long(123), 6, true); 133 new ParsePosition(1), new Double(-123123.123), 13, true); 136 new ParsePosition(0), null, 0, false); 139 new ParsePosition(13), null, 13, false) [all...] |
/prebuilt/common/jfreechart/ |
jfreechart-1.0.9.jar | |