Lines Matching refs:pos1
267 size_t pos1 = recordName.find(PathHelper::SLASH_TAG);
268 if (pos1 != CString::npos) {
269 pos1++;
270 size_t pos2 = recordName.find(PathHelper::SLASH_TAG, pos1);
272 CString moduleName = recordName.substr(pos1, pos2 - pos1);
286 size_t pos1 = recordName.find(PathHelper::NORMALIZED_OHMURL_TAG);
287 if (pos1 != CString::npos) {
288 pos1++;
289 size_t pos2 = recordName.find(PathHelper::SLASH_TAG, pos1);
291 CString moduleName = recordName.substr(pos1, pos2 - pos1);
304 size_t pos1 = modulePath.find(PathHelper::SLASH_TAG);
305 if (pos1 != CString::npos) {
306 pos1++;
307 return modulePath.substr(pos1, modulePath.size() - pos1 + 1);