Lines Matching refs:str
634 // Skips to the first non-space char after the first comma in 'str';
635 // returns NULL if no comma is found in 'str'.
636 inline const char* SkipComma(const char* str) {
637 const char* comma = strchr(str, ',');
646 // Returns the prefix of 'str' before the first comma in it; returns
648 inline std::string GetPrefixUntilComma(const char* str) {
649 const char* comma = strchr(str, ',');
650 return comma == nullptr ? str : std::string(str, comma);
655 void SplitString(const ::std::string& str, char delimiter,
834 ConstCharPtr(const char* str) : value(str) {}
843 explicit TrueWithString(const char* str) : value(str) {}
844 explicit TrueWithString(const std::string& str) : value(str) {}