OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:p_fragment
(Results
1 - 2
of
2
) sorted by null
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
URI.java
250
* @param
p_fragment
the URI fragment (cannot be specified if path
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
);
281
* @param
p_fragment
the URI fragment (cannot be specified if path
287
public URI(String p_scheme, String p_userinfo, String p_host, int p_port, String p_path, String p_queryString, String
p_fragment
)
319
if (p_path.indexOf('#') != -1 &&
p_fragment
!= null)
332
setFragment(
p_fragment
);
[
all
...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
URI.java
247
* @param
p_fragment
the URI fragment (cannot be specified if path
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
);
278
* @param
p_fragment
the URI fragment (cannot be specified if path
284
public URI(String p_scheme, String p_userinfo, String p_host, int p_port, String p_path, String p_queryString, String
p_fragment
)
316
if (p_path.indexOf('#') != -1 &&
p_fragment
!= null)
329
setFragment(
p_fragment
);
[
all
...]
Completed in 78 milliseconds