/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
DecimalFormatTest.java | 29 import java.text.ParsePosition; 70 Number number = form.parse("23.1", new ParsePosition(0)); 77 number = form.parse("23.1", new ParsePosition(0)); 81 number = form.parse("23.1", new ParsePosition(0)); 93 number = form.parse("23.1f", new ParsePosition(0)); 97 number = form.parse("23.0", new ParsePosition(0)); 100 number = form.parse("-0.0", new ParsePosition(0)); 105 new ParsePosition(0)); 113 number = form.parse(symbols.getNaN(), new ParsePosition(0)); 122 number = form.parse(symbols.getInfinity(), new ParsePosition(0)) [all...] |
/frameworks/base/media/java/android/media/ |
ExifInterface.java | 20 import java.text.ParsePosition; 357 ParsePosition pos = new ParsePosition(0); 380 ParsePosition pos = new ParsePosition(0);
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
smpdtfmt.h | 12 * 07/09/97 helena Make ParsePosition into a class. 159 * ParsePosition pp(0); 540 ParsePosition& pos) const; 562 ParsePosition& pos) const; 572 * parse() that takes a ParsePosition. [all...] |
format.h | 87 * retured for methods which take no ParsePosition. For the method 88 * that takes a ParsePosition, the index parameter is left unchanged. 225 ParsePosition& parse_pos) const = 0; 230 * failure UErrorCode if the ParsePosition indicates failure.
|
selfmt.h | 330 ParsePosition& parse_pos) const;
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
tfsmalls.cpp | 33 ParsePosition* pp1 = new ParsePosition(); 44 ParsePosition pp2( to ); 58 ParsePosition pp2, pp3; 61 ParsePosition pp4( pp3 ); 68 ParsePosition pp5; 368 if (exec) logln("TestSuite Format/SmallClasses/ParsePosition (f/chc/sma/pp): ");
|
/external/icu4c/test/intltest/ |
tfsmalls.cpp | 33 ParsePosition* pp1 = new ParsePosition(); 44 ParsePosition pp2( to ); 58 ParsePosition pp2, pp3; 61 ParsePosition pp4( pp3 ); 68 ParsePosition pp5; 368 if (exec) logln("TestSuite Format/SmallClasses/ParsePosition (f/chc/sma/pp): ");
|
/external/chromium_org/third_party/icu/source/i18n/ |
rbt_pars.h | 31 class ParsePosition; 274 ParsePosition& pos,
|
currfmt.cpp | 63 ParsePosition& pos) const
|
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,
|
windtfmt.h | 57 void parse(const UnicodeString& text, Calendar& cal, ParsePosition& pos) const;
|
winnmfmt.h | 100 virtual void parse(const UnicodeString& text, Formattable& result, ParsePosition& parsePosition) const;
|
/external/icu4c/i18n/ |
rbt_pars.h | 31 class ParsePosition; 274 ParsePosition& pos,
|
currfmt.cpp | 64 ParsePosition& pos) const
|
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,
|
windtfmt.h | 57 void parse(const UnicodeString& text, Calendar& cal, ParsePosition& pos) const;
|
winnmfmt.h | 97 virtual void parse(const UnicodeString& text, Formattable& result, ParsePosition& parsePosition) const;
|
/libcore/luni/src/test/java/libcore/java/text/ |
NumberFormatTest.java | 24 import java.text.ParsePosition; 56 public Number parse(String string, ParsePosition p) {
|
OldDecimalFormatTest.java | 28 import java.text.ParsePosition; 213 Number number = form.parse(doubleMax2, new ParsePosition(0)); [all...] |
OldNumberFormatTest.java | 25 import java.text.ParsePosition; 105 new ParsePosition(-1))); 108 new ParsePosition(1), new Double(23.123), 7, true); 111 new ParsePosition(3), new Double(0.123), 7, true); 114 new ParsePosition(3), new Double(123.123), 10, true); 117 new ParsePosition(0), null, 0, false); 121 new ParsePosition(3), new Long(123), 6, true); 125 new ParsePosition(1), new Double(-123123.123), 13, true); 128 new ParsePosition(0), null, 0, false); 131 new ParsePosition(13), null, 13, false) [all...] |
/external/icu4c/i18n/unicode/ |
format.h | 87 * retured for methods which take no ParsePosition. For the method 88 * that takes a ParsePosition, the index parameter is left unchanged. 225 ParsePosition& parse_pos) const = 0; 230 * failure UErrorCode if the ParsePosition indicates failure.
|
msgfmt.h | 754 ParsePosition& pos, 790 ParsePosition& pos) const; [all...] |
selfmt.h | 329 ParsePosition& parse_pos) const;
|
/libcore/luni/src/main/java/java/text/ |
DateFormat.java | 552 ParsePosition position = new ParsePosition(0); 564 * of the {@code ParsePosition} is updated to the index following the parsed 566 * ParsePosition} is set to the index where the error occurred. 584 public abstract Date parse(String string, ParsePosition position); 589 * of the {@code ParsePosition} is updated to the index following the parsed 591 * {@code ParsePosition} is set to the index where the error occurred. 610 public Object parseObject(String string, ParsePosition position) {
|
MessageFormat.java | 308 * objs = mf.parse(result, new ParsePosition(0)); 320 * Object[] objs = mf.parse(forParsing, new ParsePosition(0)); 388 ParsePosition position = new ParsePosition(0); 824 ParsePosition position = new ParsePosition(0); 835 * parsed then the index of the {@code ParsePosition} is updated to the 837 * error index of {@code ParsePosition} is set to the index where the error 851 public Object[] parse(String string, ParsePosition position) { 855 ParsePosition internalPos = new ParsePosition(0) [all...] |