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

/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DURI.java158 * @param p_other the URI to copy (cannot be null)
160 public URI(URI p_other) argument
162 initialize(p_other);
338 * @param p_other the URI to copy (cannot be null)
340 private void initialize(URI p_other) argument
343 m_scheme = p_other.getScheme();
344 m_userinfo = p_other.getUserinfo();
345 m_host = p_other.getHost();
346 m_port = p_other.getPort();
347 m_path = p_other
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DURI.java155 * @param p_other the URI to copy (cannot be null)
157 public URI(URI p_other) argument
159 initialize(p_other);
335 * @param p_other the URI to copy (cannot be null)
337 private void initialize(URI p_other) argument
340 m_scheme = p_other.getScheme();
341 m_userinfo = p_other.getUserinfo();
342 m_host = p_other.getHost();
343 m_port = p_other.getPort();
344 m_path = p_other
[all...]

Completed in 88 milliseconds