Searched defs:p_queryString (Results 1 - 2 of 2) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DURI.java248 * @param p_queryString the URI query string (cannot be specified
256 public URI(String p_scheme, String p_host, String p_path, String p_queryString, String p_fragment) argument
259 this(p_scheme, null, p_host, -1, p_path, p_queryString, p_fragment);
279 * @param p_queryString the URI query string (cannot be specified
287 public URI(String p_scheme, String p_userinfo, String p_host, int p_port, String p_path, String p_queryString, String p_fragment) argument
313 if (p_path.indexOf('?') != -1 && p_queryString != null)
331 setQueryString(p_queryString);
1240 * @param p_queryString the query string for this URI
1242 * @throws MalformedURIException if p_queryString is not null and this
1246 public void setQueryString(String p_queryString) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DURI.java245 * @param p_queryString the URI query string (cannot be specified
253 public URI(String p_scheme, String p_host, String p_path, String p_queryString, String p_fragment) argument
256 this(p_scheme, null, p_host, -1, p_path, p_queryString, p_fragment);
276 * @param p_queryString the URI query string (cannot be specified
284 public URI(String p_scheme, String p_userinfo, String p_host, int p_port, String p_path, String p_queryString, String p_fragment) argument
310 if (p_path.indexOf('?') != -1 && p_queryString != null)
328 setQueryString(p_queryString);
1260 * @param p_queryString the query string for this URI
1262 * @throws MalformedURIException if p_queryString is not null and this
1266 public void setQueryString(String p_queryString) argument
[all...]

Completed in 121 milliseconds