Searched refs:filter (Results 26 - 32 of 32) sorted by relevance

12

/gem5/src/python/m5/stats/
H A D__init__.py233 print("%s:" % ", ".join(filter(lambda x: x is not None, schemes)))
/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc45 || testing::GTEST_FLAG(filter) != "unknown"
211 using testing::GTEST_FLAG(filter);
1546 GTEST_FLAG(filter) = "";
1573 EXPECT_STREQ("", GTEST_FLAG(filter).c_str());
1589 GTEST_FLAG(filter) = "abc";
5462 filter(""),
5509 static Flags Filter(const char* filter) { argument
5511 flags.filter = filter;
5592 const char* filter; member in struct:testing::Flags
[all...]
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc158 // A test whose test case name or test name matches this filter is
162 // A test case whose name matches this filter is considered a death
164 // match this filter.
167 // A test filter that matches everything.
227 filter,
228 internal::StringFromGTestEnv("filter", GetDefaultFilter()),
480 const std::string& name, const char* filter) {
481 const char *cur_pattern = filter;
487 // Finds the next pattern in the filter.
500 // Returns true iff the user-specified filter matche
479 MatchesFilter( const std::string& name, const char* filter) argument
3061 const char* const filter = GTEST_FLAG(filter).c_str(); local
[all...]
/gem5/src/arch/
H A Disa_parser.py1268 def __internalConcatAttrs(self, attr_name, filter, result):
1270 if filter(op_desc):
1280 # for which the provided filter function returns true
1281 def concatSomeAttrStrings(self, filter, attr_name):
1282 return self.__internalConcatAttrs(attr_name, filter, '')
1290 # for which the provided filter function returns true
1291 def concatSomeAttrLists(self, filter, attr_name):
1292 return self.__internalConcatAttrs(attr_name, filter, [])
1394 # filter out repeated flags
/gem5/src/arch/hsail/
H A DBrig_new.hpp1540 BrigSamplerFilter8_t filter; member in struct:BrigOperandConstantSampler
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h102 // This flag sets up the filter to select by name using a glob pattern
103 // the tests to run. If the filter is not given all tests are executed.
104 GTEST_DECLARE_string_(filter);
680 // been specified) and its full name matches the user-specified filter.
682 // Google Test allows the user to filter the tests by their full names.
684 // "Foo.Bar". Only the tests that match the filter will run.
686 // A filter is a colon-separated list of glob (not regex) patterns,
692 // For example, *A*:Foo.* is a filter that matches any string that
698 // For now, the XML report includes all tests matching the filter.
764 // user-specified filter
[all...]
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dast.py1720 entire_ast = filter(None, builder.Generate())

Completed in 74 milliseconds

12