Home | History | Annotate | Download | only in decpp

Lines Matching full:m_path

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