Home
last modified time | relevance | path

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

/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
DBaseUrlValidateFunction.java72 int slashPos = in.indexOf('/'); in isValidUri() local
73 if (slashPos != -1) { in isValidUri()
75 return in.lastIndexOf(':', slashPos - 1) == -1; in isValidUri()
/external/lzma/CPP/7zip/UI/FileManager/
DOverwriteDialog.cpp59 int slashPos = fileName.ReverseFind_PathSepar(); in SetFileInfoControl() local
60 UString s1 = fileName.Left(slashPos + 1); in SetFileInfoControl()
61 UString s2 = fileName.Ptr(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.cpp892 int slashPos = _filePath.ReverseFind_PathSepar(); in UpdateStatInfo() local
893 if (slashPos >= 0) in UpdateStatInfo()
895 s1.SetFrom(_filePath, slashPos + 1); in UpdateStatInfo()
896 s2 = _filePath.Ptr(slashPos + 1); in UpdateStatInfo()
DExtractCallback.cpp727 int slashPos = destPathSpec.ReverseFind_PathSepar(); in AskWrite() local
728 destPathSpec.DeleteFrom(slashPos + 1); in AskWrite()
/external/lzma/CPP/7zip/Common/
DFilePathAutoRename.cpp23 int slashPos = path.ReverseFind_PathSepar(); in AutoRenamePath() local
27 if (dotPos > slashPos + 1) in AutoRenamePath()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DCheckYear.java122 int slashPos = skeleton.indexOf('/'); in getCoreSkeleton() local
123 String s = slashPos < 0 ? skeleton : skeleton in getCoreSkeleton()
124 .substring(0, slashPos); in getCoreSkeleton()
258 int slashPos = skeleton.indexOf('/');
261 if (slashPos >= 0) {
262 core = skeleton.substring(0, slashPos);
263 diff = skeleton.substring(slashPos);
/external/cldr/tools/java/org/unicode/cldr/util/
DDateTimeFormats.java520 int slashPos = skeleton.indexOf('/'); in getExample() local
521 if (slashPos >= 0) { in getExample()
522 String mainSkeleton = skeleton.substring(0, slashPos); in getExample()
525 String diffString = skeleton.substring(slashPos + 1).replace('j', 'H'); in getExample()
700 int slashPos = skeleton.indexOf('/'); in getFix() local
701 if (slashPos >= 0) { in getFix()
702 String mainSkeleton = skeleton.substring(0, slashPos); in getFix()
703 String diff = skeleton.substring(slashPos + 1); in getFix()
DMatchValue.java257 int slashPos = typeName.indexOf('/'); in of() local
259 if (slashPos > 0) { in of()
260 statuses = enumParser.parse(typeName.substring(slashPos+1)); in of()
261 typeName = typeName.substring(0, slashPos); in of()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DWriteCharts.java131 int slashPos = target.indexOf('/'); in print() local
132 if (slashPos >= 0) target = target.substring(0,slashPos); in print()
/external/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()
/external/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()
/external/lzma/CPP/7zip/UI/Client7z/
DClient7z.cpp367 int slashPos = _filePath.ReverseFind_PathSepar(); in GetStream() local
368 if (slashPos >= 0) in GetStream()
369 CreateComplexDir(_directoryPath + us2fs(_filePath.Left(slashPos))); in GetStream()
/external/lzma/CPP/7zip/Archive/7z/
D7zUpdate.cpp644 int slashPos = ui.Name.ReverseFind_PathSepar(); in CRefItem() local
645 NamePos = slashPos + 1; in CRefItem()
647 if (dotPos <= slashPos) in CRefItem()
826 int slashPos = ui.Name.ReverseFind_PathSepar(); in GetFilterGroup() local
838 if (dotPos > slashPos) in GetFilterGroup()
2348 int slashPos = ui.Name.ReverseFind_PathSepar(); in Update() local
2350 const wchar_t *ext = ui.Name.Ptr(dotPos <= slashPos ? ui.Name.Len() : dotPos + 1); in Update()
/external/curl/lib/
Dftp.c1445 const char *slashPos = NULL; in ftp_state_list() local
1451 slashPos = strrchr(rawPath, '/'); in ftp_state_list()
1452 if(slashPos) { in ftp_state_list()
1455 size_t n = slashPos - rawPath; in ftp_state_list()
4044 const char *slashPos = NULL; in ftp_parse_url_path() local
4072 slashPos = strrchr(rawPath, '/'); in ftp_parse_url_path()
4073 if(slashPos) { in ftp_parse_url_path()
4075 size_t dirlen = slashPos - rawPath; in ftp_parse_url_path()
4093 fileName = slashPos + 1; /* rest is file name */ in ftp_parse_url_path()
4118 while((slashPos = strchr(curPos, '/')) != NULL) { in ftp_parse_url_path()
[all …]
/external/angle/src/tests/test_utils/runner/
DTestSuite.cpp881 size_t slashPos = id.testName.find('/'); in GetConfigNameFromTestIdentifier() local
882 if (slashPos == std::string::npos) in GetConfigNameFromTestIdentifier()
890 std::string configName = id.testName.substr(slashPos + 1); in GetConfigNameFromTestIdentifier()
901 return id.testName.substr(slashPos + 1, doubleUnderscorePos - slashPos - 1); in GetConfigNameFromTestIdentifier()
/external/lzma/CPP/7zip/UI/Common/
DArchiveExtractCallback.cpp1122 int slashPos = fullProcessedPath.ReverseFind_PathSepar(); in GetStream() local
1123 FString realFullProcessedPath (fullProcessedPath.Left(slashPos + 1) + fileInfo.Name); in GetStream()