Home
last modified time | relevance | path

Searched refs:IsString1PrefixedByString2 (Results 1 – 5 of 5) sorted by relevance

/external/lzma/CPP/Common/
DMyString.h198 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()
DMyString.cpp189 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
DWildcard.cpp18 return IsString1PrefixedByString2(s1, s2); in IsPath1PrefixedByPath2()
/external/lzma/CPP/Windows/
DFileLink.cpp82 return IsString1PrefixedByString2(s, k_LinkPrefix); in IsLinkPrefix()
DFileName.cpp126 …if (len < 18 || len > 22 || !IsString1PrefixedByString2(s + kDevicePathPrefixSize, "PhysicalDrive"… in IsDevicePath()