Lines Matching defs:count
384 size_t count = strlen(string);
385 if (count > (size_t)GetLength()) {
389 return memcmp(string_, string, count) == 0;
402 int count = other.GetLength();
403 if (count > GetLength()) {
407 return memcmp(string_, other.string_, count) == 0;
420 size_t count = strlen(string);
422 if (count > len) {
426 return memcmp(string_ + len - count, string, count) == 0;
439 int count = other.GetLength();
441 if (count > len) {
445 return memcmp(string_ + len - count, other.string_, count) == 0;