Home
last modified time | relevance | path

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

/third_party/lzma/CPP/7zip/UI/FileManager/
DOverwriteDialog.cpp59 int slashPos = fileName.ReverseFind_PathSepar(); in SetFileInfoControl() local
60 UString s1 = fileName.Left((unsigned)(slashPos + 1)); in SetFileInfoControl()
61 UString s2 = fileName.Ptr((unsigned)(slashPos + 1)); in SetFileInfoControl()
DBrowseDialog.cpp976 int slashPos = path.Find(WCHAR_PATH_SEPARATOR, start); in CorrectFsPath() local
977 cur.SetFrom(path.Ptr(start), (slashPos < 0 ? path.Len() : slashPos) - start); in CorrectFsPath()
995 if (slashPos < 0) in CorrectFsPath()
998 start = slashPos + 1; in CorrectFsPath()
DProgressDialog2.cpp907 int slashPos = _filePath.ReverseFind_PathSepar(); in UpdateStatInfo() local
908 if (slashPos >= 0) in UpdateStatInfo()
910 s1.SetFrom(_filePath, (unsigned)(slashPos + 1)); in UpdateStatInfo()
911 s2 = _filePath.Ptr((unsigned)(slashPos + 1)); in UpdateStatInfo()
DExtractCallback.cpp734 int slashPos = destPathSpec.ReverseFind_PathSepar(); in AskWrite() local
735 destPathSpec.DeleteFrom((unsigned)(slashPos + 1)); in AskWrite()
/third_party/lzma/CPP/7zip/Common/
DFilePathAutoRename.cpp23 int slashPos = path.ReverseFind_PathSepar(); in AutoRenamePath() local
27 if (dotPos > slashPos + 1) in AutoRenamePath()
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DWriteCharts.java128 int slashPos = target.indexOf('/'); in print() local
129 if (slashPos >= 0) target = target.substring(0,slashPos); in print()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
DWriteCharts.java131 int slashPos = target.indexOf('/'); in print() local
132 if (slashPos >= 0) target = target.substring(0,slashPos); in print()
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
DDemo.java432 int slashPos = id.indexOf('/'); in actionPerformed() local
434 if (slashPos >= 0) { in actionPerformed()
435 variant = "_" + id.substring(slashPos+1); in actionPerformed()
436 id = id.substring(0, slashPos); in actionPerformed()
730 int slashPos = id.indexOf('/'); in genTestFile() local
731 if (slashPos < 0) slashPos = id.length(); in genTestFile()
741 … targetSuper = new UnicodeSet("[[:" + id.substring(dashPos+1, slashPos) + ":][:Mn:][:Me:]]"); in genTestFile()
/third_party/lzma/CPP/7zip/Archive/7z/
D7zUpdate.cpp643 int slashPos = ui.Name.ReverseFind_PathSepar(); in CRefItem() local
644 NamePos = (unsigned)(slashPos + 1); in CRefItem()
646 if (dotPos <= slashPos) in CRefItem()
835 int slashPos = ui.Name.ReverseFind_PathSepar(); in GetFilterGroup() local
847 if (dotPos > slashPos) in GetFilterGroup()
2398 int slashPos = ui.Name.ReverseFind_PathSepar(); in Update() local
2400 … const wchar_t *ext = ui.Name.Ptr(dotPos <= slashPos ? ui.Name.Len() : (unsigned)(dotPos + 1)); in Update()
/third_party/curl/lib/
Dftp.c1430 const char *slashPos = NULL; in ftp_state_list() local
1436 slashPos = strrchr(rawPath, '/'); in ftp_state_list()
1437 if(slashPos) { in ftp_state_list()
1440 size_t n = slashPos - rawPath; in ftp_state_list()
4137 const char *slashPos = NULL; in ftp_parse_url_path() local
4167 slashPos = strrchr(rawPath, '/'); in ftp_parse_url_path()
4168 if(slashPos) { in ftp_parse_url_path()
4170 size_t dirlen = slashPos - rawPath; in ftp_parse_url_path()
4188 fileName = slashPos + 1; /* rest is file name */ in ftp_parse_url_path()
4214 while((slashPos = strchr(curPos, '/'))) { in ftp_parse_url_path()
[all …]
/third_party/lzma/CPP/7zip/UI/Client7z/
DClient7z.cpp464 int slashPos = _filePath.ReverseFind_PathSepar(); in GetStream() local
465 if (slashPos >= 0) in GetStream()
466 CreateComplexDir(_directoryPath + us2fs(_filePath.Left(slashPos))); in GetStream()
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/
DTestSuite.cpp863 size_t slashPos = id.testName.find('/'); in GetConfigNameFromTestIdentifier() local
864 if (slashPos == std::string::npos) in GetConfigNameFromTestIdentifier()
872 std::string configName = id.testName.substr(slashPos + 1); in GetConfigNameFromTestIdentifier()
883 return id.testName.substr(slashPos + 1, doubleUnderscorePos - slashPos - 1); in GetConfigNameFromTestIdentifier()
/third_party/lzma/CPP/7zip/UI/Common/
DArchiveExtractCallback.cpp1157 const int slashPos = fullProcessedPath.ReverseFind_PathSepar(); in CheckExistFile() local
1158 …const FString realFullProcessedPath = fullProcessedPath.Left((unsigned)(slashPos + 1)) + fileInfo.… in CheckExistFile()