Lines Matching refs:str
649 // Skips to the first non-space char after the first comma in 'str';
650 // returns NULL if no comma is found in 'str'.
651 inline const char* SkipComma(const char* str) {
652 const char* comma = strchr(str, ',');
661 // Returns the prefix of 'str' before the first comma in it; returns
663 inline std::string GetPrefixUntilComma(const char* str) {
664 const char* comma = strchr(str, ',');
665 return comma == nullptr ? str : std::string(str, comma);
670 void SplitString(const ::std::string& str, char delimiter,
849 ConstCharPtr(const char* str) : value(str) {}
858 explicit TrueWithString(const char* str) : value(str) {}
859 explicit TrueWithString(const std::string& str) : value(str) {}