Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/Support/
DPath.cpp159 size_t end_pos = m_PathName.find_last_of(separator); in parent_path() local
160 if (end_pos != StringType::npos) in parent_path()
161 return Path(m_PathName.substr(0, end_pos)); in parent_path()
176 size_t end_pos = m_PathName.find_last_of(dot); in stem() local
177 Path result_path(m_PathName.substr(begin_pos, end_pos - begin_pos)); in stem()
/frameworks/native/libs/binder/
DPersistableBundle.cpp106 size_t end_pos = parcel->dataPosition(); in writeToParcel() local
110 size_t length = end_pos - start_pos; in writeToParcel()
116 parcel->setDataPosition(end_pos); in writeToParcel()