Searched refs:IsEmpty (Results 1 - 6 of 6) sorted by relevance

/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-more-matchers.h48 MATCHER(IsEmpty, negation ? "isn't empty" : "is empty") {
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-filepath.h111 bool IsEmpty() const { return pathname_.empty(); } function in class:testing::internal::FilePath
/gem5/ext/googletest/googletest/test/
H A Dgtest-filepath_test.cc88 EXPECT_FALSE(original_dir.IsEmpty());
111 EXPECT_TRUE(FilePath("").IsEmpty());
115 EXPECT_FALSE(FilePath("a").IsEmpty());
116 EXPECT_FALSE(FilePath(".").IsEmpty());
117 EXPECT_FALSE(FilePath("a/b").IsEmpty());
118 EXPECT_FALSE(FilePath("a\\b\\").IsEmpty());
/gem5/ext/googletest/googletest/src/
H A Dgtest-filepath.cc201 if (directory.IsEmpty())
H A Dgtest-internal-inl.h655 if (original_working_dir_.IsEmpty()) {
657 GTEST_CHECK_(!original_working_dir_.IsEmpty())
/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc99 using testing::IsEmpty;
4075 EXPECT_THAT(container, IsEmpty());
4077 EXPECT_THAT(container, Not(IsEmpty()));
4079 EXPECT_THAT(container, Not(IsEmpty()));
4084 EXPECT_THAT(text, IsEmpty());
4086 EXPECT_THAT(text, Not(IsEmpty()));
4088 EXPECT_THAT(text, Not(IsEmpty()));
4092 Matcher<vector<int> > m = IsEmpty();
4098 Matcher<vector<int> > m = IsEmpty();

Completed in 36 milliseconds