Searched refs:IsString1PrefixedByString2 (Results 1 – 5 of 5) sorted by relevance
/external/lzma/CPP/Common/ |
D | MyString.h | 198 bool IsString1PrefixedByString2(const char *s1, const char *s2) throw(); 199 bool IsString1PrefixedByString2(const wchar_t *s1, const wchar_t *s2) throw(); 200 bool IsString1PrefixedByString2(const wchar_t *s1, const char *s2) throw(); 385 bool IsPrefixedBy(const char *s) const { return IsString1PrefixedByString2(_chars, s); } in IsPrefixedBy() 626 bool IsPrefixedBy(const wchar_t *s) const { return IsString1PrefixedByString2(_chars, s); } in IsPrefixedBy()
|
D | MyString.cpp | 189 bool IsString1PrefixedByString2(const char *s1, const char *s2) throw() in IsString1PrefixedByString2() function 293 bool IsString1PrefixedByString2(const wchar_t *s1, const wchar_t *s2) throw() in IsString1PrefixedByString2() function 302 bool IsString1PrefixedByString2(const wchar_t *s1, const char *s2) throw() in IsString1PrefixedByString2() function
|
D | Wildcard.cpp | 18 return IsString1PrefixedByString2(s1, s2); in IsPath1PrefixedByPath2()
|
/external/lzma/CPP/Windows/ |
D | FileLink.cpp | 82 return IsString1PrefixedByString2(s, k_LinkPrefix); in IsLinkPrefix()
|
D | FileName.cpp | 126 …if (len < 18 || len > 22 || !IsString1PrefixedByString2(s + kDevicePathPrefixSize, "PhysicalDrive"… in IsDevicePath()
|