Searched refs:StringIndexOutOfBoundsException (Results 1 - 25 of 37) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/lang/
H A DStringIndexOutOfBoundsException.java39 class StringIndexOutOfBoundsException extends IndexOutOfBoundsException { class in inherits:IndexOutOfBoundsException
43 * Constructs a <code>StringIndexOutOfBoundsException</code> with no
48 public StringIndexOutOfBoundsException() { method in class:StringIndexOutOfBoundsException
53 * Constructs a <code>StringIndexOutOfBoundsException</code> with
58 public StringIndexOutOfBoundsException(String s) { method in class:StringIndexOutOfBoundsException
63 * Constructs a new <code>StringIndexOutOfBoundsException</code>
68 public StringIndexOutOfBoundsException(int index) { method in class:StringIndexOutOfBoundsException
H A DAbstractStringBuilder.java173 throw new StringIndexOutOfBoundsException(newLength);
203 throw new StringIndexOutOfBoundsException(index);
230 throw new StringIndexOutOfBoundsException(index);
259 throw new StringIndexOutOfBoundsException(index);
351 throw new StringIndexOutOfBoundsException(srcBegin);
353 throw new StringIndexOutOfBoundsException(srcEnd);
355 throw new StringIndexOutOfBoundsException("srcBegin > srcEnd");
375 throw new StringIndexOutOfBoundsException(index);
688 * @throws StringIndexOutOfBoundsException if {@code start}
694 throw new StringIndexOutOfBoundsException(star
[all...]
H A DString.java194 throw new StringIndexOutOfBoundsException(offset);
197 throw new StringIndexOutOfBoundsException(count);
201 throw new StringIndexOutOfBoundsException(offset + count);
236 throw new StringIndexOutOfBoundsException(offset);
239 throw new StringIndexOutOfBoundsException(count);
243 throw new StringIndexOutOfBoundsException(offset + count);
371 throw new StringIndexOutOfBoundsException(length);
373 throw new StringIndexOutOfBoundsException(offset);
375 throw new StringIndexOutOfBoundsException(offset + length);
658 throw new StringIndexOutOfBoundsException(inde
[all...]
H A DStringBuffer.java179 throw new StringIndexOutOfBoundsException(index);
227 throw new StringIndexOutOfBoundsException(index);
365 * @throws StringIndexOutOfBoundsException {@inheritDoc}
374 * @throws StringIndexOutOfBoundsException {@inheritDoc}
383 * @throws StringIndexOutOfBoundsException {@inheritDoc}
392 * @throws StringIndexOutOfBoundsException {@inheritDoc}
408 * @throws StringIndexOutOfBoundsException {@inheritDoc}
416 * @throws StringIndexOutOfBoundsException {@inheritDoc}
427 * @throws StringIndexOutOfBoundsException {@inheritDoc}
435 * @throws StringIndexOutOfBoundsException {
[all...]
/openjdk7/jdk/test/java/lang/StringBuffer/
H A DGetCharsSrcEndLarger.java35 } catch (StringIndexOutOfBoundsException sioobe) {
H A DInsertMaxValue.java39 } catch (StringIndexOutOfBoundsException sobe) {
48 } catch (StringIndexOutOfBoundsException sobe) {
H A DExceptions.java97 new StringIndexOutOfBoundsException(-1),
105 new StringIndexOutOfBoundsException("start > length()"),
112 new StringIndexOutOfBoundsException("start > end"),
H A DSupplementary.java325 catch (StringIndexOutOfBoundsException e) {
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DReaderCharacterIterator.java60 throw new StringIndexOutOfBoundsException(e.getMessage());
74 throw new StringIndexOutOfBoundsException(e.getMessage());
88 throw new StringIndexOutOfBoundsException(e.getMessage());
108 throw new StringIndexOutOfBoundsException(e.getMessage());
H A DStreamCharacterIterator.java60 throw new StringIndexOutOfBoundsException(e.getMessage());
74 throw new StringIndexOutOfBoundsException(e.getMessage());
89 throw new StringIndexOutOfBoundsException(e.getMessage());
109 throw new StringIndexOutOfBoundsException(e.getMessage());
/openjdk7/jdk/test/sun/net/www/
H A DParseUtil_6478588.java25 * @summary StringIndexOutOfBoundsException in HttpURLConnection.getResponseCode
37 } catch ( StringIndexOutOfBoundsException e ) {
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DSegment.java264 throw new StringIndexOutOfBoundsException(index);
283 throw new StringIndexOutOfBoundsException(start);
286 throw new StringIndexOutOfBoundsException(end);
289 throw new StringIndexOutOfBoundsException(end - start);
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUTF16.java449 throw new StringIndexOutOfBoundsException(start);
452 throw new StringIndexOutOfBoundsException(limit);
455 throw new StringIndexOutOfBoundsException(offset16);
459 throw new StringIndexOutOfBoundsException(result);
474 throw new StringIndexOutOfBoundsException(result);
488 throw new StringIndexOutOfBoundsException(shift32);
/openjdk7/jdk/test/java/lang/StringBuilder/
H A DExceptions.java97 new StringIndexOutOfBoundsException(-1),
104 new StringIndexOutOfBoundsException("start > length()"),
111 new StringIndexOutOfBoundsException("start > end"),
/openjdk7/jdk/src/share/classes/sun/net/
H A DTransferProtocolClient.java28 import java.lang.StringIndexOutOfBoundsException;
88 } catch (StringIndexOutOfBoundsException e) {
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DType.java159 throws StringIndexOutOfBoundsException
201 } catch(StringIndexOutOfBoundsException e) { // Should never occur
226 } catch(StringIndexOutOfBoundsException e) { // Should never occur
H A DInstruction.java234 } catch(StringIndexOutOfBoundsException e) { System.err.println(e); }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DInternetHeaders.java162 } catch (StringIndexOutOfBoundsException e) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DCharacterDataImpl.java257 catch (StringIndexOutOfBoundsException e) {
310 catch (StringIndexOutOfBoundsException e) {
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java599 } catch(StringIndexOutOfBoundsException e) { // Should never occur
634 } catch(StringIndexOutOfBoundsException e) { // Should never occur
733 } catch(StringIndexOutOfBoundsException e) { // Should never occur
778 } catch(StringIndexOutOfBoundsException e) { // Should not occur
884 } catch(StringIndexOutOfBoundsException e) { // Should never occur
998 } catch(StringIndexOutOfBoundsException e) {
1029 } catch(StringIndexOutOfBoundsException e) {
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialClob.java265 } catch (StringIndexOutOfBoundsException e) {
266 throw new SerialException("StringIndexOutOfBoundsException: " +
/openjdk7/jdk/make/java/java/
H A DExportedfiles.gmk84 java/lang/StringIndexOutOfBoundsException.java \
157 java/lang/StringIndexOutOfBoundsException.java \
/openjdk7/jdk/src/share/classes/java/nio/
H A DByteBufferAs-X-Buffer.java.template182 } catch (StringIndexOutOfBoundsException x) {
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DClass2HTML.java232 } catch(StringIndexOutOfBoundsException e) {} // Never occurs
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DInternetHeaders.java309 } catch (StringIndexOutOfBoundsException e) {

Completed in 3177 milliseconds

12