Home | History | Annotate | Download | only in utils

Lines Matching full:m_path

130   private String m_path = null;
344 m_path = p_other.getPath();
478 if (m_path.length() == 0 && m_scheme == null && m_host == null)
484 m_path = p_base.getPath();
515 if (m_path.length() > 0 && m_path.startsWith("/"))
537 path = path.concat(m_path);
588 m_path = path;
790 m_path = p_uriSpec.substring(start, index);
907 if (m_path != null)
909 schemespec.append((m_path));
975 StringBuffer pathString = new StringBuffer(m_path);
1000 return m_path;
1184 m_path = null;
1220 if (m_path == null || m_path.trim().length() == 0)
1224 m_path = p_addToPath;
1228 m_path = "/" + p_addToPath;
1231 else if (m_path.endsWith("/"))
1235 m_path = m_path.concat(p_addToPath.substring(1));
1239 m_path = m_path.concat(p_addToPath);
1246 m_path = m_path.concat(p_addToPath);
1250 m_path = m_path.concat("/" + p_addToPath);
1351 testURI.m_host))) && m_port == testURI.m_port && ((m_path == null && testURI.m_path == null) || (m_path != null && testURI.m_path != null && m_path.equals(
1352 testURI.m_path))) && ((m_queryString == null && testURI.m_queryString == null) || (m_queryString != null && testURI.m_queryString != null && m_queryString.equals(