Home
last modified time | relevance | path

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

/external/lzma/CPP/Common/
DMyString.h169 bool IsString1PrefixedByString2(const char *s1, const char *s2) throw();
170 bool IsString1PrefixedByString2(const wchar_t *s1, const wchar_t *s2) throw();
320 bool IsPrefixedBy(const char *s) const { return IsString1PrefixedByString2(_chars, s); } in IsPrefixedBy()
555 bool IsPrefixedBy(const wchar_t *s) const { return IsString1PrefixedByString2(_chars, s); } in IsPrefixedBy()
DMyString.cpp172 bool IsString1PrefixedByString2(const char *s1, const char *s2) throw() in IsString1PrefixedByString2() function
276 bool IsString1PrefixedByString2(const wchar_t *s1, const wchar_t *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()