Home
last modified time | relevance | path

Searched refs:end_pos (Results 1 – 1 of 1) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
DPath.cpp145 size_t end_pos = m_PathName.find_last_of(separator); in parent_path() local
146 if (end_pos != StringType::npos) in parent_path()
147 return Path(m_PathName.substr(0, end_pos)); in parent_path()
154 size_t end_pos = m_PathName.find_last_of("."); in stem() local
155 Path result_path(m_PathName.substr(begin_pos, end_pos - begin_pos)); in stem()