HomeSort by relevance Sort by last modified time
    Searched defs:URISyntaxException (Results 1 - 16 of 16) sorted by null

  /libcore/luni/src/main/java/java/net/
URISyntaxException.java 21 * A {@code URISyntaxException} will be thrown if some information could not be parsed
24 public class URISyntaxException extends Exception {
33 * Constructs a new {@code URISyntaxException} instance containing the
49 public URISyntaxException(String input, String reason, int index) {
65 * Constructs a new {@code URISyntaxException} instance containing the
76 public URISyntaxException(String input, String reason) {
URI.java 203 public URI(String spec) throws URISyntaxException {
213 throws URISyntaxException {
236 String fragment) throws URISyntaxException {
244 throw new URISyntaxException(path, "Relative path");
297 public URI(String scheme, String host, String path, String fragment) throws URISyntaxException {
307 String fragment) throws URISyntaxException {
309 throw new URISyntaxException(path, "Relative path");
349 private void parseURI(String uri, boolean forceServer) throws URISyntaxException {
367 throw new URISyntaxException(uri, "Scheme-specific part expected", start);
391 throw new URISyntaxException(uri, "Authority expected", uri.length())
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URISyntaxExceptionTest.java 19 import java.net.URISyntaxException;
25 * @tests java.net.URISyntaxException#URISyntaxException(java.lang.String,
30 new URISyntaxException(null, "problem", 2);
37 new URISyntaxException("str", null, 2);
44 new URISyntaxException("str", "problem", -2);
50 URISyntaxException e = new URISyntaxException("str", "problem", 2);
57 * @tests java.net.URISyntaxException#URISyntaxException(java.lang.String
    [all...]
  /libcore/luni/src/main/java/libcore/net/
UriCodec.java 21 import java.net.URISyntaxException;
43 throws URISyntaxException {
53 throw new URISyntaxException(uri, "Incomplete % sequence in " + name, i);
58 throw new URISyntaxException(uri, "Invalid % sequence: "
63 throw new URISyntaxException(uri, "Illegal character in " + name, i);
74 throws URISyntaxException {
81 throw new URISyntaxException(s, "Illegal character", i);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
UriCodec.java 21 import java.net.URISyntaxException;
45 throws URISyntaxException {
55 throw new URISyntaxException(uri, "Incomplete % sequence in " + name, i);
60 throw new URISyntaxException(uri, "Invalid % sequence: "
65 throw new URISyntaxException(uri, "Illegal character in " + name, i);
76 throws URISyntaxException {
83 throw new URISyntaxException(s, "Illegal character", i);
  /frameworks/base/core/java/android/content/
Intent.java 43 import java.net.URISyntaxException;
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 

Completed in 563 milliseconds