Lines Matching defs:line
52 // If next is true, it must be the next line. Otherwise lines are skipped.
101 const char* line;
102 while ((line = fgets(buffer, sizeof(buffer), output)) != nullptr) {
104 printf("%s", line);
106 if (line[0] != '\0' && line[0] != '\n') {
107 EXPECT_TRUE(strstr(line, "objdump: Error:") == nullptr) << line;
108 EXPECT_TRUE(strstr(line, "objdump: Warning:") == nullptr) << line;
109 std::string str(line);