Searched refs:SimpleStrlen (Results 1 – 1 of 1) sorted by relevance
1803 constexpr int SimpleStrlen(const char* p) { in SimpleStrlen() function1804 return *p ? 1 + SimpleStrlen(p + 1) : 0; in SimpleStrlen()1809 return absl::string_view("SSO string", SimpleStrlen("SSO string")); in operator ()()1816 SimpleStrlen("String that does not fit SSO.")); in operator ()()