Lines Matching defs:colon
284 "A colon-separated list of glob (not regex) patterns "
311 "optionally followed by a colon and an output file name or directory. "
657 const char* const colon = strchr(gtest_output_flag, ':');
658 return (colon == nullptr)
661 static_cast<size_t>(colon - gtest_output_flag));
674 const char* const colon = strchr(gtest_output_flag, ':');
675 if (colon == nullptr)
682 internal::FilePath output_name(colon + 1);
686 internal::FilePath(colon + 1));
1256 const ::std::string::size_type colon = str.find(delimiter, pos);
1257 if (colon == ::std::string::npos) {
1261 parsed.push_back(str.substr(pos, colon - pos));
1262 pos = colon + 1;