Home | History | Annotate | Download | only in utils

Lines Matching refs:m_path

133   private String m_path = null;
347 m_path = p_other.getPath();
458 if (m_path.length() == 0 && m_scheme == null && m_host == null)
464 m_path = p_base.getPath();
495 if (m_path.length() > 0 && m_path.startsWith("/"))
517 path = path.concat(m_path);
568 m_path = path;
770 m_path = p_uriSpec.substring(start, index);
887 if (m_path != null)
889 schemespec.append((m_path));
955 StringBuffer pathString = new StringBuffer(m_path);
980 return m_path;
1164 m_path = null;
1200 if (m_path == null || m_path.trim().length() == 0)
1204 m_path = p_addToPath;
1208 m_path = "/" + p_addToPath;
1211 else if (m_path.endsWith("/"))
1215 m_path = m_path.concat(p_addToPath.substring(1));
1219 m_path = m_path.concat(p_addToPath);
1226 m_path = m_path.concat(p_addToPath);
1230 m_path = m_path.concat("/" + p_addToPath);
1331 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(
1332 testURI.m_path))) && ((m_queryString == null && testURI.m_queryString == null) || (m_queryString != null && testURI.m_queryString != null && m_queryString.equals(