Home | History | Annotate | Download | only in gtest

Lines Matching refs:pstr

5697 // If *pstr starts with the given prefix, modifies *pstr to be right
5698 // past the prefix and returns true; otherwise leaves *pstr unchanged
5699 // and returns false. None of pstr, *pstr, and prefix can be NULL.
5700 bool SkipPrefix(const char* prefix, const char** pstr) {
5702 if (strncmp(*pstr, prefix, prefix_len) == 0) {
5703 *pstr += prefix_len;