Searched refs:FindCharPosInString (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/external/lzma/CPP/Common/ |
H A D | MyString.h | 125 int FindCharPosInString(const char *s, char c) throw(); 126 int FindCharPosInString(const wchar_t *s, wchar_t c) throw(); 443 int Find(char c) const { return FindCharPosInString(_chars, c); } in Find() 446 const int pos = FindCharPosInString(_chars + startIndex, c); in Find() 742 int Find(wchar_t c) const { return FindCharPosInString(_chars, c); } in Find() 745 int pos = FindCharPosInString(_chars + startIndex, c); in Find()
|
H A D | CommandLineParser.cpp | 171 sw.PostCharIndex = FindCharPosInString(form.PostCharSet, (char)c); in ParseString()
|
H A D | MyString.cpp | 37 int FindCharPosInString(const char *s, char c) throw() in FindCharPosInString() function 49 int FindCharPosInString(const wchar_t *s, wchar_t c) throw() in FindCharPosInString() function
|
/aosp_15_r20/external/lzma/CPP/7zip/UI/Common/ |
H A D | ArchiveCommandLine.cpp | 410 int index = FindCharPosInString(g_Commands, (char)s[0]); in ParseArchiveCommand() 730 index = FindCharPosInString(kRecursedPostCharSet, (char)c); in AddSwitchWildcardsToCensor() 848 int statePos = FindCharPosInString(kUpdatePairStateIDSet, (char)c); in ParseUpdateCommandString2()
|
/aosp_15_r20/external/lzma/CPP/7zip/Bundles/SFXCon/ |
H A D | SfxCon.cpp | 173 int index = FindCharPosInString(g_Commands, (char)s[0]); in ParseArchiveCommand()
|
/aosp_15_r20/external/lzma/CPP/7zip/UI/FileManager/ |
H A D | PanelFolderChange.cpp | 646 const int separ = FindCharPosInString(path.Ptr(2), '\\'); in OnComboBoxCommand()
|