Searched refs:FindCharPosInString (Results 1 – 7 of 7) sorted by relevance
/external/lzma/CPP/Windows/ |
D | FileName.cpp | 108 int pos = FindCharPosInString(s, '\\'); in GetRootPrefixSize_Of_NetworkPath() 111 int pos2 = FindCharPosInString(s + pos + 1, '\\'); in GetRootPrefixSize_Of_NetworkPath() 135 int pos = FindCharPosInString(s + kSuperPathPrefixSize, FCHAR_PATH_SEPARATOR); in GetRootPrefixSize_Of_SuperPath() 155 int pos = FindCharPosInString(s, L'\\'); in GetRootPrefixSize_Of_NetworkPath() 158 int pos2 = FindCharPosInString(s + pos + 1, L'\\'); in GetRootPrefixSize_Of_NetworkPath() 182 int pos = FindCharPosInString(s + kSuperPathPrefixSize, L'\\'); in GetRootPrefixSize_Of_SuperPath()
|
D | FileFind.cpp | 407 int pos = FindCharPosInString(path + startPos, FTEXT('\\')); in Find() 412 int pos2 = FindCharPosInString(path + pos, FTEXT('\\')); in Find()
|
/external/lzma/CPP/Common/ |
D | MyString.h | 53 int FindCharPosInString(const char *s, char c) throw(); 54 int FindCharPosInString(const wchar_t *s, wchar_t c) throw(); 253 int Find(char c) const { return FindCharPosInString(_chars, c); } in Find() 256 int pos = FindCharPosInString(_chars + startIndex, c); in Find() 418 int Find(wchar_t c) const { return FindCharPosInString(_chars, c); } in Find() 421 int pos = FindCharPosInString(_chars + startIndex, c); in Find()
|
D | CommandLineParser.cpp | 152 sw.PostCharIndex = FindCharPosInString(form.PostCharSet, (char)c); in ParseString()
|
D | MyString.cpp | 32 int FindCharPosInString(const char *s, char c) throw() in FindCharPosInString() function 44 int FindCharPosInString(const wchar_t *s, wchar_t c) throw() in FindCharPosInString() function
|
/external/lzma/CPP/7zip/Bundles/SFXCon/ |
D | SfxCon.cpp | 158 int index = FindCharPosInString(g_Commands, (char)s[0]); in ParseArchiveCommand()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | ArchiveCommandLine.cpp | 305 int index = FindCharPosInString(g_Commands, (char)s[0]); in ParseArchiveCommand() 534 index = FindCharPosInString(kRecursedPostCharSet, (char)c); in AddSwitchWildcardsToCensor() 676 int statePos = FindCharPosInString(kUpdatePairStateIDSet, c); in ParseUpdateCommandString2()
|