Searched refs:errorIndex (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DIllformedLocaleException.java74 * @param errorIndex the index
76 public IllformedLocaleException(String message, int errorIndex) { argument
77 super(message + ((errorIndex < 0) ? "" : " [at index " + errorIndex + "]"));
78 _errIdx = errorIndex;
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DParseStatus.java36 int errorIndex; field in class:ParseStatus
45 errorIndex = -1;
50 return (errorIndex >= 0);
54 return errorIndex;
H A DLocaleSyntaxException.java44 public LocaleSyntaxException(String msg, int errorIndex) { argument
46 index = errorIndex;
H A DLanguageTag.java213 sts.errorIndex = itr.currentStart();
362 sts.errorIndex = start;
405 sts.errorIndex = start;
/openjdk7/jdk/src/share/classes/java/text/
H A DParsePosition.java66 int errorIndex = -1; field in class:ParsePosition
98 errorIndex = ei;
108 return errorIndex;
119 return (index == other.index && errorIndex == other.errorIndex);
127 return (errorIndex << 16) | index;
137 ",errorIndex=" + errorIndex + ']';
H A DFormat.java246 pos.errorIndex);
H A DMessageFormat.java967 pos.errorIndex = sourceOffset;
987 pos.errorIndex = sourceOffset;
1001 pos.errorIndex = sourceOffset;
1012 pos.errorIndex = sourceOffset;
1035 throw new ParseException("MessageFormat parse error!", pos.errorIndex);
H A DChoiceFormat.java405 * status.index is unchanged and status.errorIndex is set to the
429 status.errorIndex = furthest;
H A DSimpleDateFormat.java1398 pos.errorIndex = start;
1408 pos.errorIndex = start;
1485 pos.errorIndex = start;
1742 * @param origPos origPos.errorIndex is used to return an error index
1746 * an error index is set to origPos.errorIndex.
1766 origPos.errorIndex = start;
2110 origPos.errorIndex = pos.index;
H A DDateFormat.java358 pos.errorIndex);
H A DNumberFormat.java351 parsePosition.errorIndex);
H A DDecimalFormat.java1432 parsePosition.errorIndex = position;
1571 parsePosition.errorIndex = oldStart;
1598 parsePosition.errorIndex = position;
1610 parsePosition.errorIndex = position;
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpPduRequest.java59 * <CODE>varBindList[errorIndex-1]</CODE>.
62 public int errorIndex=0 ; field in class:SnmpPduRequest
69 errorIndex = i;
84 public int getErrorIndex() { return errorIndex; }
105 result.errorIndex = 0;
H A DSnmpStatusException.java89 errorIndex = index ;
109 errorIndex= index;
126 return errorIndex;
144 private int errorIndex= -1; field in class:SnmpStatusException
H A DSnmpScopedPduRequest.java39 int errorIndex=0 ; field in class:SnmpScopedPduRequest
44 * <CODE>varBindList[errorIndex-1]</CODE>.
48 errorIndex = i;
62 * <CODE>varBindList[errorIndex-1]</CODE>.
65 public int getErrorIndex() { return errorIndex; }
92 result.errorIndex = 0 ;
H A DSnmpPduBulk.java115 result.errorIndex = 0;
H A DSnmpScopedPduBulk.java107 result.errorIndex = 0 ;
H A DSnmpMessage.java221 benc.putInteger(reqPdu.errorIndex) ;
287 reqPdu.errorIndex = bdec.fetchInteger() ;
/openjdk7/jdk/test/java/text/Format/DateFormat/
H A DISO8601ZoneTest.java209 int errorIndex = pos.getErrorIndex();
210 if (d != null || errorIndex != expectedErrorIndex) {
211 throw new RuntimeException("Bad error index=" + errorIndex
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpSubRequestHandler.java220 errorIndex= 1;
230 errorIndex= x.getErrorIndex();
501 if ((errorIndex == 0) || (errorIndex == -1))
502 errorIndex = 1;
504 return translation[errorIndex -1];
578 protected int errorIndex= -1; field in class:SnmpSubRequestHandler
H A DSnmpSubNextRequestHandler.java126 errorIndex= x.getErrorIndex();
H A DSnmpSubBulkRequestHandler.java113 errorIndex= x.getErrorIndex();
H A DSnmpRequestHandler.java879 result.errorIndex = 0 ;
895 result.errorIndex = i ;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java3956 int errorIndex = fKeyValueStore.contains(this);
3957 if (errorIndex != -1) {
3959 String values = toString(fValues, errorIndex, fFieldCount);

Completed in 148 milliseconds