Home | History | Annotate | Download | only in intltest

Lines Matching refs:pos

87     FieldPosition pos(FieldPosition::DONT_CARE);
88 fmtd = sdf->format(today, fmtd, pos);
93 todayS = sdf->format(today, todayS, pos);
105 rt = sdf->format(sdf->parse(todayS, status), rt, pos);
193 FieldPosition pos(i);
195 fmt->format(dt, buf, pos);
196 //char[] dst = new char[pos.getEndIndex() - pos.getBeginIndex()];
198 buf.extractBetween(pos.getBeginIndex(), pos.getEndIndex(), dst);
202 pos.getBeginIndex() + (UnicodeString)", " +
203 pos.getEndIndex());
314 ParsePosition pos(0);
315 fmt->parseObject( str, o, pos );
345 ParsePosition pos(0);
346 UDate myDate = formatter->parse( dateString, pos );
374 pos.setIndex(0);
375 myDate = formatter->parse( dateString, pos );
752 FieldPosition pos(FieldPosition::DONT_CARE);
753 s2 = df->format(d, s2, pos);
840 ParsePosition pos(0);
841 UDate d = sdf->parse(text, pos);
843 logln(" index: %d", pos.getIndex());
845 if(pos.getIndex() != finish.getIndex())
846 errln(UnicodeString("Fail: Expected pos ") + finish.getIndex());
955 FieldPosition pos(FieldPosition::DONT_CARE);
956 fmtd = df->format(dt, fmtd, pos);
964 s = format->format(dt, s, pos);
1037 FieldPosition pos(FieldPosition::DONT_CARE);
1038 result = format->format(date(1998-1900, UCAL_JUNE, 30, 13, 30, 0), result, pos);
1070 FieldPosition pos(0);
1071 logln(dateString + " -> " + fmt.format(d, temp, pos));
1098 FieldPosition pos(0);
1099 logln(dateString + " -> " + df.format(x, temp, pos));
1208 ParsePosition pos(0);
1209 d = fmt.parse(s, pos);
1212 logln(UnicodeString("Parse pos = ") + pos.getIndex() +
1213 ", error pos = " + pos.getErrorIndex());
1214 if (pos.getErrorIndex() != -1) {
1518 ParsePosition pos(0);
1519 format.parse(text, *cal, pos);