Searched refs:IsString1PrefixedByString2 (Results 1 - 6 of 6) sorted by relevance
/third_party/lzma/CPP/Common/ |
H A D | MyString.h | 219 bool IsString1PrefixedByString2(const char *s1, const char *s2) throw();
220 bool IsString1PrefixedByString2(const wchar_t *s1, const wchar_t *s2) throw();
221 bool IsString1PrefixedByString2(const wchar_t *s1, const char *s2) throw();
424 bool IsPrefixedBy(const char *s) const { return IsString1PrefixedByString2(_chars, s); }
in IsPrefixedBy() 715 bool IsPrefixedBy(const wchar_t *s) const { return IsString1PrefixedByString2(_chars, s); }
in IsPrefixedBy()
|
H A D | MyString.cpp | 189 bool IsString1PrefixedByString2(const char *s1, const char *s2) throw()
in IsString1PrefixedByString2() function 307 bool IsString1PrefixedByString2(const wchar_t *s1, const wchar_t *s2) throw()
in IsString1PrefixedByString2() function 316 bool IsString1PrefixedByString2(const wchar_t *s1, const char *s2) throw()
in IsString1PrefixedByString2() function
|
H A D | Wildcard.cpp | 26 return IsString1PrefixedByString2(s1, s2);
in IsPath1PrefixedByPath2()
|
/third_party/lzma/CPP/Windows/ |
H A D | FileName.cpp | 146 if (len < 5 || len > 5 || !IsString1PrefixedByString2(s, "DSK"))
in IsDevicePath() 160 if (len < 18 || len > 22 || !IsString1PrefixedByString2(s + kDevicePathPrefixSize, "PhysicalDrive"))
in IsDevicePath()
|
H A D | FileLink.cpp | 101 return IsString1PrefixedByString2(s, k_LinkPrefix);
in IsLinkPrefix() 108 return IsString1PrefixedByString2(s, k_VolumePrefix);
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | Bench.cpp | 3126 if (IsString1PrefixedByString2(bench.Name, "AES128")) keySize = 16;
3127 else if (IsString1PrefixedByString2(bench.Name, "AES192")) keySize = 24;
4365 if (IsString1PrefixedByString2(methodName, "AES128")) keySize = 16;
4366 else if (IsString1PrefixedByString2(methodName, "AES192")) keySize = 24;
|
Completed in 18 milliseconds