/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
ChoiceFormatTest.java | 23 import java.text.ParsePosition; 352 * java.text.ParsePosition) 357 // java.text.ParsePosition) 360 .parse("One", new ParsePosition(0)).intValue()); 362 ParsePosition pos = new ParsePosition(0); 368 pos = new ParsePosition(0); 372 pos = new ParsePosition(2);
|
SimpleDateFormatTest.java | 23 import java.text.ParsePosition; 84 ParsePosition position = new ParsePosition(start); 573 * java.text.ParsePosition) 578 // java.text.ParsePosition) [all...] |
/external/icu4c/i18n/unicode/ |
choicfmt.h | 489 * If no string matches, then the parsePosition is unchanged. 494 * @param parsePosition The position to start parsing at on input. 501 ParsePosition& parsePosition) const; 586 const UnicodeString &source, ParsePosition &pos);
|
smpdtfmt.h | 12 * 07/09/97 helena Make ParsePosition into a class. 646 * ParsePosition pp(0); [all...] |
tmutfmt.h | 182 * @see Format#parseObject(const UnicodeString&, Formattable&, ParsePosition&) const; 187 ParsePosition& pos) const;
|
datefmt.h | 126 * You can also use forms of the parse and format methods with ParsePosition and 396 * parse() that takes a ParsePosition. 412 * parse(const UnicodeString&, Calendar& cal, ParsePosition&) 454 ParsePosition& pos) const = 0; 475 * parse(const UnicodeString&, Calendar& cal, ParsePosition&) 487 ParsePosition& pos) const; 514 ParsePosition& parse_pos) const; [all...] |
numfmt.h | 142 * ParsePosition and FieldPosition to allow you to: 308 ParsePosition& parse_pos) const; 600 * @param parsePosition The position to start parsing at on input. 607 ParsePosition& parsePosition) const = 0; 646 ParsePosition& pos) const; [all...] |
/external/chromium_org/third_party/icu/source/common/ |
rbbirb.h | 73 ParsePosition& pos, int32_t limit) const;
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
tmutfmt.h | 184 * @see Format#parseObject(const UnicodeString&, Formattable&, ParsePosition&) const; 189 ParsePosition& pos) const;
|
datefmt.h | 126 * You can also use forms of the parse and format methods with ParsePosition and 430 ParsePosition& pos) const = 0; 452 ParsePosition& pos) const; 482 ParsePosition& parse_pos) const;
|
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...] |
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...] |
/external/icu4c/common/ |
rbbirb.h | 73 ParsePosition& pos, int32_t limit) const;
|
uniset_closure.cpp | 68 UnicodeSet::UnicodeSet(const UnicodeString& pattern, ParsePosition& pos, 97 ParsePosition pos(0); 115 ParsePosition& pos,
|
/external/icu4c/i18n/ |
nfrs.h | 54 UBool parse(const UnicodeString& text, ParsePosition& pos, double upperBound, Formattable& result) const;
|
nfsubs.cpp | 159 ParsePosition& parsePosition, 227 ParsePosition& parsePosition, 300 ParsePosition& parsePosition, 335 ParsePosition& /*parsePosition*/, 680 * @param parsePosition On entry, ignored, but assumed to be 0. 698 * no match this is new Long(0) (not null), and parsePosition [all...] |
/libcore/luni/src/main/java/java/text/ |
NumberFormat.java | 107 * {@code ParsePosition} and {@code FieldPosition} to allow you to: 538 ParsePosition pos = new ParsePosition(0); 549 * the index of the {@code ParsePosition} is updated to the index following 551 * {@code ParsePosition} is set to the index where the error occurred. 564 public abstract Number parse(String string, ParsePosition position); 567 public final Object parseObject(String string, ParsePosition position) {
|
ChoiceFormat.java | 129 ParsePosition position = new ParsePosition(0); 347 * successfully parsed then the index of the {@code ParsePosition} passed to 375 public Number parse(String string, ParsePosition position) {
|
SimpleDateFormat.java | [all...] |
/libcore/luni/src/main/java/java/sql/ |
Timestamp.java | 20 import java.text.ParsePosition; 418 ParsePosition pp = new ParsePosition(0); 424 * with the ParsePosition indicating the index of the "." which should
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
DateUtils.java | 23 import java.text.ParsePosition; 73 ParsePosition parsePosition = new ParsePosition(0); 82 date = CommonDateUtils.NO_YEAR_DATE_FORMAT.parse(string, parsePosition); 84 noYearParsed = parsePosition.getIndex() == string.length(); 94 parsePosition.setIndex(0); 95 date = f.parse(string, parsePosition); 96 if (parsePosition.getIndex() == string.length()) {
|
/external/icu4c/common/unicode/ |
uniset.h | 26 class ParsePosition; 412 UnicodeSet(const UnicodeString& pattern, ParsePosition& pos, 623 * parse, the ParsePosition is updated to point to the character 649 ParsePosition& pos, [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
OldMessageFormatTest.java | 27 import java.text.ParsePosition; 387 * java.text.ParsePosition) Test of method 389 * java.text.ParsePosition). Case 1: Parsing of correct data string. 391 * argument ParsePosition as null. 401 ParsePosition pp = new ParsePosition(0); 422 // case 3: Try to use argument ParsePosition as null. 446 ParsePosition pos = new ParsePosition(2);
|
/external/chromium_org/third_party/icu/source/i18n/ |
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...] |
/external/icu4c/test/intltest/ |
dtfmrgts.cpp | 314 ParsePosition pos(0); 345 ParsePosition pos(0); 817 ParsePosition ppos [] = { 818 ParsePosition(10), 819 ParsePosition(0), 820 ParsePosition(0) 830 "time 10:30", new ParsePosition(10), new Date(70, Calendar.JANUARY, 1, 10, 30), 831 "time 10:x", new ParsePosition(0), null, 832 "time 10x", new ParsePosition(0), null, 837 ParsePosition finish = ppos[i] [all...] |