Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/Common/
DFilePathAutoRename.cpp30 int slashPos = fullProcessedPath.ReverseFind(FTEXT('/')); in AutoRenamePath() local
33 slashPos = MyMax(slashPos, slash1Pos); in AutoRenamePath()
37 if (dotPos > slashPos && dotPos > 0) in AutoRenamePath()
/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.cpp53 int slashPos = fileName.ReverseFind(WCHAR_PATH_SEPARATOR); in SetFileInfoControl() local
54 UString s1 = fileName.Left(slashPos + 1); in SetFileInfoControl()
55 UString s2 = fileName.Ptr(slashPos + 1); in SetFileInfoControl()
DBrowseDialog.cpp961 int slashPos = path.Find(WCHAR_PATH_SEPARATOR, start); in CorrectFsPath() local
962 cur.SetFrom(path.Ptr(start), (slashPos < 0 ? path.Len() : slashPos) - start); in CorrectFsPath()
980 if (slashPos < 0) in CorrectFsPath()
983 start = slashPos + 1; in CorrectFsPath()
DExtractCallback.cpp588 int slashPos = destPathSpec.ReverseFind(L'/'); in AskWrite() local
591 slashPos = MyMax(slashPos, slash1Pos); in AskWrite()
593 destPathSpec.DeleteFrom(slashPos + 1); in AskWrite()
DProgressDialog2.cpp870 int slashPos = _filePath.ReverseFind(WCHAR_PATH_SEPARATOR); in UpdateStatInfo() local
871 if (slashPos >= 0) in UpdateStatInfo()
873 s1.SetFrom(_filePath, slashPos + 1); in UpdateStatInfo()
874 s2 = _filePath.Ptr(slashPos + 1); in UpdateStatInfo()
/external/lzma/CPP/7zip/Archive/7z/
D7zUpdate.cpp49 int slashPos = name.ReverseFind(L'/'); in GetReverseSlashPos() local
52 slashPos = MyMax(slashPos, slash1Pos); in GetReverseSlashPos()
54 return slashPos; in GetReverseSlashPos()
59 int slashPos = GetReverseSlashPos(Name); in GetExtensionPos() local
61 if (dotPos < 0 || (dotPos < slashPos && slashPos >= 0)) in GetExtensionPos()
265 int slashPos = GetReverseSlashPos(ui.Name); in CRefItem() local
266 NamePos = slashPos + 1; in CRefItem()
268 if (dotPos < 0 || dotPos < slashPos) in CRefItem()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DWriteCharts.java127 int slashPos = target.indexOf('/'); in print() local
128 if (slashPos >= 0) target = target.substring(0,slashPos); in print()
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DWriteCharts.java126 int slashPos = target.indexOf('/'); in print() local
127 if (slashPos >= 0) target = target.substring(0,slashPos); in print()
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
DDemo.java434 int slashPos = id.indexOf('/'); in actionPerformed() local
436 if (slashPos >= 0) { in actionPerformed()
437 variant = "_" + id.substring(slashPos+1); in actionPerformed()
438 id = id.substring(0, slashPos); in actionPerformed()
732 int slashPos = id.indexOf('/'); in genTestFile() local
733 if (slashPos < 0) slashPos = id.length(); in genTestFile()
743 … targetSuper = new UnicodeSet("[[:" + id.substring(dashPos+1, slashPos) + ":][:Mn:][:Me:]]"); in genTestFile()
/external/lzma/CPP/7zip/UI/Client7z/
DClient7z.cpp329 int slashPos = _filePath.ReverseFind(WCHAR_PATH_SEPARATOR); in GetStream() local
330 if (slashPos >= 0) in GetStream()
331 CreateComplexDir(_directoryPath + us2fs(_filePath.Left(slashPos))); in GetStream()
/external/lzma/CPP/7zip/UI/Common/
DArchiveExtractCallback.cpp761 int slashPos = fullProcessedPath.ReverseFind(FTEXT('/')); in GetStream() local
764 slashPos = MyMax(slashPos, slash1Pos); in GetStream()
766 FString realFullProcessedPath = fullProcessedPath.Left(slashPos + 1) + fileInfo.Name; in GetStream()
DUpdate.cpp464 int slashPos = name.ReverseFind(L'/'); in GetReverseSlashPos() local
467 slashPos = MyMax(slashPos, slash1Pos); in GetReverseSlashPos()
469 return slashPos; in GetReverseSlashPos()
DLoadCodecs.cpp608 int slashPos = arcPath.ReverseFind(WCHAR_PATH_SEPARATOR); in FindFormatForArchiveName() local
610 if (dotPos < 0 || dotPos < slashPos) in FindFormatForArchiveName()
/external/curl/lib/
Dftp.c1494 char *cmd, *lstArg, *slashPos; in ftp_state_list() local
1510 slashPos = strrchr(lstArg, '/'); in ftp_state_list()
1511 if(slashPos) in ftp_state_list()
1512 *(slashPos+1) = '\0'; in ftp_state_list()