Lines Matching refs:m_path
54 if (!m_path.empty() && !isSeparator(m_path[m_path.size()-1])) in FilePath()
55 m_path += separator; in FilePath()
56 m_path += components[ndx]; in FilePath()
72 for (pos = 0; pos < (int)m_path.length(); pos++) in split()
74 const char c = m_path[pos]; in split()
79 components.push_back(m_path.substr(curCompStart, pos - curCompStart)); in split()
86 components.push_back(m_path.substr(curCompStart, pos - curCompStart)); in split()
101 m_path = ""; in normalize()
199 for (int ndx = 0; ndx < (int)m_path.length(); ndx++) in beginsWithDrive()
201 if (m_path[ndx] == ':' && ndx+1 < (int)m_path.length() && isSeparator(m_path[ndx+1])) in beginsWithDrive()
203 if (isSeparator(m_path[ndx])) in beginsWithDrive()