/external/lzma/CPP/7zip/Common/ |
D | FilePathAutoRename.cpp | 30 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/ |
D | BaseUrlValidateFunction.java | 72 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/ |
D | OverwriteDialog.cpp | 53 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()
|
D | BrowseDialog.cpp | 961 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()
|
D | ExtractCallback.cpp | 588 int slashPos = destPathSpec.ReverseFind(L'/'); in AskWrite() local 591 slashPos = MyMax(slashPos, slash1Pos); in AskWrite() 593 destPathSpec.DeleteFrom(slashPos + 1); in AskWrite()
|
D | ProgressDialog2.cpp | 870 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/ |
D | 7zUpdate.cpp | 49 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/ |
D | WriteCharts.java | 127 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/ |
D | WriteCharts.java | 126 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/ |
D | Demo.java | 434 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/ |
D | Client7z.cpp | 329 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/ |
D | ArchiveExtractCallback.cpp | 761 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()
|
D | Update.cpp | 464 int slashPos = name.ReverseFind(L'/'); in GetReverseSlashPos() local 467 slashPos = MyMax(slashPos, slash1Pos); in GetReverseSlashPos() 469 return slashPos; in GetReverseSlashPos()
|
D | LoadCodecs.cpp | 608 int slashPos = arcPath.ReverseFind(WCHAR_PATH_SEPARATOR); in FindFormatForArchiveName() local 610 if (dotPos < 0 || dotPos < slashPos) in FindFormatForArchiveName()
|
/external/curl/lib/ |
D | ftp.c | 1494 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()
|