Lines Matching refs:position
53 int position = path_.Mutf8().find_last_of(PATH_DELIMITER);
55 util::StringView fileName = path_.Substr(position + 1, path_.Length());
70 size_t position = path_.Mutf8().find_last_of('.');
71 if (position != std::string::npos && position + 1 <= path_.Length()) {
72 fileExtension_ = path_.Substr(position + 1, path_.Length());
82 int position = absolutePath_.Mutf8().find_last_of(PATH_DELIMITER);
85 absoluteParentFolder_ = absolutePath_.Substr(0, position);
95 int position = path_.Mutf8().find_last_of(PATH_DELIMITER);
97 parentFolder_ = path_.Substr(0, position);