Lines Matching refs:m_path
45 m_path(path), in UriReference()
111 return m_path; in getPath()
117 && (m_path.getLength() == 0 || m_path[0] != '/'); in hasRelativePath()
123 if (!m_isHierarchical || m_path.getLength() == 0) { in getPathSegmentCount()
126 sal_Int32 n = m_path[0] == '/' ? 0 : 1; in getPathSegmentCount()
128 i = m_path.indexOf('/', i); in getPathSegmentCount()
142 if (m_isHierarchical && m_path.getLength() != 0 && index >= 0) { in getPathSegment()
143 for (sal_Int32 i = m_path[0] == '/' ? 1 : 0;; ++i) { in getPathSegment()
145 sal_Int32 j = m_path.indexOf('/', i); in getPathSegment()
146 return j < 0 ? m_path.copy(i) : m_path.copy(i, j - i); in getPathSegment()
148 i = m_path.indexOf('/', i); in getPathSegment()
197 buffer.append(m_path); in appendSchemeSpecificPart()