Lines Matching defs:status
92 * ParsePosition status = new ParsePosition(0);
94 * status.setIndex(0);
96 * + form.parse(form.format(i),status));
371 FieldPosition status) {
372 return format((double)number, toAppendTo, status);
379 * @param status ignore no useful status is returned.
382 FieldPosition status) {
400 * @param status an input-output parameter. On input, the
401 * status.index field indicates the first character of the
403 * occured, status.index is set to the first unparsed character
405 * status.index is unchanged and status.errorIndex is set to the
409 public Number parse(String text, ParsePosition status) {
411 int start = status.index;
418 status.index = start + tempString.length();
420 if (status.index > furthest) {
421 furthest = status.index;
427 status.index = furthest;
428 if (status.index == start) {
429 status.errorIndex = furthest;