Lines Matching full:strlen
934 if (strncmp(args[i], "--gtest-filter", strlen("--gtest-filter")) == 0) {
982 if (strncmp(args[i], "--gtest_filter=", strlen("--gtest_filter=")) == 0) {
1030 if (strncmp(args[i], "-j", strlen("-j")) == 0) {
1031 char* p = args[i] + strlen("-j");
1046 } else if (strncmp(args[i], "--deadline=", strlen("--deadline=")) == 0) {
1047 int time_ms = atoi(args[i] + strlen("--deadline="));
1053 } else if (strncmp(args[i], "--warnline=", strlen("--warnline=")) == 0) {
1054 int time_ms = atoi(args[i] + strlen("--warnline="));
1060 } else if (strncmp(args[i], "--gtest_color=", strlen("--gtest_color=")) == 0) {
1061 options.gtest_color = args[i] + strlen("--gtest_color=");
1064 } else if (strncmp(args[i], "--gtest_repeat=", strlen("--gtest_repeat=")) == 0) {
1067 options.gtest_repeat = atoi(args[i] + strlen("--gtest_repeat="));
1071 } else if (strncmp(args[i], "--gtest_output=", strlen("--gtest_output=")) == 0) {
1072 std::string output = args[i] + strlen("--gtest_output=");
1075 if (strncmp(output.c_str(), "xml:", strlen("xml:")) == 0) {
1076 output = output.substr(strlen("xml:"));