Home
last modified time | relevance | path

Searched refs:wordmemcmp (Results 1 – 2 of 2) sorted by relevance

/external/chromium/base/
Dstring_piece.h95 int r = wordmemcmp( in compare()
115 (wordmemcmp(ptr_, x.ptr_, x.length_) == 0)); in starts_with()
121 (wordmemcmp(ptr_ + (length_-x.length_), x.ptr_, x.length_) == 0)); in ends_with()
158 static int wordmemcmp(const char* p, const char* p2, size_type N) { in wordmemcmp() function
174 const int r = StringPiece::wordmemcmp(
Dstring_piece.cc19 return StringPiece::wordmemcmp(x.data(), y.data(), x.size()) == 0; in operator ==()