Home
last modified time | relevance | path

Searched refs:StringCursorOutOfBoundsException (Results 1 – 3 of 3) sorted by relevance

/tools/platform-compat/java/com/android/class2nonsdklist/
DStringCursor.java57 public String peek(int n) throws StringCursorOutOfBoundsException { in peek()
62 throw new StringCursorOutOfBoundsException(); in peek()
72 public char next() throws StringCursorOutOfBoundsException { in next()
74 throw new StringCursorOutOfBoundsException(); in next()
86 public String next(int n) throws StringCursorOutOfBoundsException { in next()
93 throw new StringCursorOutOfBoundsException(); in next()
DApiComponents.java75 throws SignatureSyntaxError, StringCursorOutOfBoundsException { in parseJNIClassDescriptor()
101 throws SignatureSyntaxError, StringCursorOutOfBoundsException { in parseJNIPrimitiveType()
132 throws SignatureSyntaxError, StringCursorOutOfBoundsException { in parseJniTypeWithoutArrayDimensions()
152 throws SignatureSyntaxError, StringCursorOutOfBoundsException { in parseJniType()
175 throws SignatureSyntaxError, StringCursorOutOfBoundsException { in convertJNIMethodParametersToJavadoc()
229 } catch (StringCursorOutOfBoundsException e) { in fromDexSignature()
296 } catch (StringCursorOutOfBoundsException e) { in fromLinkTag()
DStringCursorOutOfBoundsException.java19 public class StringCursorOutOfBoundsException extends IndexOutOfBoundsException { class