OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:URISyntaxException
(Results
1 - 17
of
17
) 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) {
67
* Constructs a new {@code
URISyntaxException
} instance containing the
78
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/src/com/android/exchange/utility/
UriCodec.java
21
import java.net.
URISyntaxException
;
62
throws
URISyntaxException
{
72
throw new
URISyntaxException
(uri, "Incomplete % sequence in " + name, i);
77
throw new
URISyntaxException
(uri, "Invalid % sequence: "
82
throw new
URISyntaxException
(uri, "Illegal character in " + name, i);
93
throws
URISyntaxException
{
100
throw new
URISyntaxException
(s, "Illegal character", i);
/frameworks/base/core/java/android/content/
Intent.java
48
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/18/
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 641 milliseconds