Home
last modified time | relevance | path

Searched refs:slashPos (Results 1 – 15 of 15) 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()
260 int slashPos = skeleton.indexOf('/');
263 if (slashPos >= 0) {
264 core = skeleton.substring(0, slashPos);
265 diff = skeleton.substring(slashPos);
/external/cldr/tools/java/org/unicode/cldr/util/
DDateTimeFormats.java498 int slashPos = skeleton.indexOf('/'); in getExample() local
499 if (slashPos >= 0) { in getExample()
500 String mainSkeleton = skeleton.substring(0, slashPos); in getExample()
503 String diffString = skeleton.substring(slashPos + 1).replace('j', 'H'); in getExample()
678 int slashPos = skeleton.indexOf('/'); in getFix() local
679 if (slashPos >= 0) { in getFix()
680 String mainSkeleton = skeleton.substring(0, slashPos); in getFix()
681 String diff = skeleton.substring(slashPos + 1); in getFix()
/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/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/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/UI/Common/
DArchiveExtractCallback.cpp1122 int slashPos = fullProcessedPath.ReverseFind_PathSepar(); in GetStream() local
1123 FString realFullProcessedPath (fullProcessedPath.Left(slashPos + 1) + fileInfo.Name); in GetStream()
/external/curl/lib/
Dftp.c1457 char *cmd, *lstArg, *slashPos; in ftp_state_list() local
1468 slashPos = strrchr(inpath, '/'); in ftp_state_list()
1469 n = slashPos - inpath; in ftp_state_list()