Home
last modified time | relevance | path

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

/external/chromium/base/
Dstring_piece.h87 int r = wordmemcmp(ptr_, x.ptr_, std::min(length_, x.length_)); in compare()
106 (wordmemcmp(ptr_, x.ptr_, x.length_) == 0)); in starts_with()
112 (wordmemcmp(ptr_ + (length_-x.length_), x.ptr_, x.length_) == 0)); in ends_with()
160 static int wordmemcmp(const char* p, const char* p2, size_type N) { in wordmemcmp() function
172 const int r = StringPiece::wordmemcmp(x.data(), y.data(),
Dstring_piece.cc24 return StringPiece::wordmemcmp(x.data(), y.data(), x.size()) == 0; in operator ==()