OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:p_scheme
(Results
1 - 2
of
2
) sorted by null
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
URI.java
207
* @param
p_scheme
the URI scheme (cannot be null or empty)
211
* @throws MalformedURIException if
p_scheme
violates any
214
public URI(String
p_scheme
, String p_schemeSpecificPart)
218
if (
p_scheme
== null ||
p_scheme
.trim().length() == 0)
231
setScheme(
p_scheme
);
241
* @param
p_scheme
the URI scheme (cannot be null or empty)
256
public URI(String
p_scheme
, String p_host, String p_path, String p_queryString, String p_fragment)
259
this(
p_scheme
, null, p_host, -1, p_path, p_queryString, p_fragment);
268
* @param
p_scheme
the URI scheme (cannot be null or empty
[
all
...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
URI.java
204
* @param
p_scheme
the URI scheme (cannot be null or empty)
208
* @throws MalformedURIException if
p_scheme
violates any
211
public URI(String
p_scheme
, String p_schemeSpecificPart)
215
if (
p_scheme
== null ||
p_scheme
.trim().length() == 0)
228
setScheme(
p_scheme
);
238
* @param
p_scheme
the URI scheme (cannot be null or empty)
253
public URI(String
p_scheme
, String p_host, String p_path, String p_queryString, String p_fragment)
256
this(
p_scheme
, null, p_host, -1, p_path, p_queryString, p_fragment);
265
* @param
p_scheme
the URI scheme (cannot be null or empty
[
all
...]
Completed in 906 milliseconds