Searched defs:errorIndex (Results 1 - 8 of 8) 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 DLocaleSyntaxException.java44 public LocaleSyntaxException(String msg, int errorIndex) { argument
46 index = errorIndex;
H A DParseStatus.java36 int errorIndex; field in class:ParseStatus
45 errorIndex = -1;
50 return (errorIndex >= 0);
54 return errorIndex;
/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 + ']';
/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 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 DSnmpStatusException.java89 errorIndex = index ;
109 errorIndex= index;
126 return errorIndex;
144 private int errorIndex= -1; field in class:SnmpStatusException
/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

Completed in 56 milliseconds