/gem5/tests/legacy-configs/ |
H A D | run.py | 101 if not hasattr(sys, "cpu"): 118 if hasattr(root, sysattr):
|
/gem5/src/sim/power/ |
H A D | ThermalModel.py | 102 if not hasattr(self,"_capacitors"): self._capacitors = [] 103 if not hasattr(self,"_resistors"): self._resistors = [] 104 if not hasattr(self,"_domains"): self._domains = [] 105 if not hasattr(self,"_references"): self._references = [] 106 if not hasattr(self,"_nodes"): self._nodes = []
|
/gem5/util/ |
H A D | cpt_upgrader.py | 98 if not hasattr(self, 'tag'): 100 if not hasattr(self, 'depends'): 109 if hasattr(self, 'fwd_depends'): 119 if hasattr(self, 'upgrader'): 125 elif hasattr(self, 'downgrader'): 135 if hasattr(self, 'legacy_version'): 147 if hasattr(self, 'upgrader'):
|
/gem5/ext/googletest/googlemock/scripts/generator/cpp/ |
H A D | keywords.py | 31 if not hasattr(builtins, 'set'):
|
/gem5/ext/pybind11/pybind11/ |
H A D | __init__.py | 10 virtualenv = hasattr(sys, 'real_prefix') or \
|
/gem5/ext/pybind11/tests/test_embed/ |
H A D | test_interpreter.cpp | 55 REQUIRE(py::hasattr(module, "DerivedWidget")); 184 REQUIRE_FALSE(py::hasattr(py::module::import("__main__"), "tag")); 187 REQUIRE_FALSE(py::hasattr(m, "extension_module_tag")); 197 REQUIRE(py::hasattr(py::module::import("__main__"), "main_tag")); 198 REQUIRE(py::hasattr(py::module::import("widget_module"), "extension_module_tag"));
|
/gem5/configs/common/ |
H A D | FileSystemConfig.py | 83 if hasattr(options, 'cpu_clock'): 87 if hasattr(options, 'l2_size'): 138 if options and hasattr(options, 'chroot'):
|
H A D | cpu2000.py | 79 if not hasattr(self.__class__, 'name'): 82 if not hasattr(self.__class__, 'binary'): 85 if not hasattr(self.__class__, 'args'): 88 if not hasattr(self.__class__, 'output'): 91 if not hasattr(self.__class__, 'simpoint'): 125 if not hasattr(self.__class__, 'stdin'): 130 if not hasattr(self.__class__, 'stdout'):
|
H A D | FSConfig.py | 255 if hasattr(self.realview, "ide"): 257 elif hasattr(self.realview, "cf_ctrl"): 311 if hasattr(self.realview.gic, 'cpu_addr'): 667 if hasattr(testSystem, 'realview'): 670 elif hasattr(testSystem, 'tsunami'): 705 if hasattr(testSystem, 'realview'): 707 elif hasattr(testSystem, 'tsunami'):
|
/gem5/src/cpu/testers/traffic_gen/ |
H A D | BaseTrafficGen.py | 115 if hasattr(self, '_cached_ports') and (len(self._cached_ports) > 0):
|
/gem5/tests/ |
H A D | run.py | 238 if not hasattr(sys, "cpu"): 250 if hasattr(root, sysattr):
|
/gem5/src/dev/arm/ |
H A D | SMMUv3.py | 201 if hasattr(device, "master"): 203 elif hasattr(device, "dma"):
|
/gem5/ext/pybind11/tests/ |
H A D | pybind11_tests.cpp | 92 if (!py::hasattr(m, "have_eigen")) m.attr("have_eigen") = false;
|
H A D | test_local_bindings.py | 36 assert not hasattr(i1, 'get2') 37 assert not hasattr(i2, 'get3') 65 if hasattr(pybind11_tests, 'class_') else 'test_class not enabled')
|
H A D | test_stl.py | 108 @pytest.mark.skipif(not hasattr(m, "has_optional"), reason='no <optional>') 131 @pytest.mark.skipif(not hasattr(m, "has_exp_optional"), reason='no <experimental/optional>') 152 @pytest.mark.skipif(not hasattr(m, "load_variant"), reason='no <variant>')
|
H A D | test_builtin_casters.py | 26 if hasattr(m, "bad_utf32_string"): 29 if hasattr(m, "bad_wchar_string"): 112 @pytest.mark.skipif(not hasattr(m, "has_string_view"), reason="no <string_view>")
|
H A D | test_local_bindings.cpp | 45 if (py::hasattr(main, "class_")) {
|
H A D | test_methods_and_attributes.py | 263 assert not hasattr(instance, "foo") 268 assert hasattr(instance, "foo") 275 assert not hasattr(instance, "foo") 276 assert hasattr(instance, "bar")
|
H A D | test_call_policies.py | 185 if hasattr(m, "with_gil"):
|
/gem5/src/python/m5/ |
H A D | proxy.py | 165 if hasattr(self, '_pdesc'): 178 if hasattr(self, '_pdesc'): 188 if hasattr(val, '_visited'):
|
H A D | SimObject.py | 382 if hasattr(simobj, 'abstract') and simobj.abstract: 557 assert(not hasattr(pdesc, 'name')) 560 if hasattr(pdesc, 'default'): 596 assert(not hasattr(port, 'name')) 729 if not hasattr(cls, 'abstract') or not cls.abstract: 913 if not hasattr(cls, 'abstract') or not cls.abstract: 1117 if hasattr(self, "_paramEnumed"): 1271 if self._ccObject and hasattr(self._ccObject, attr): 1439 if hasattr(child, '_visited'): 1516 if hasattr(sel [all...] |
/gem5/tests/testing/ |
H A D | helpers.py | 139 re_obj = r if hasattr(r, "search") else re.compile(r)
|
/gem5/src/python/m5/util/ |
H A D | dot_writer_ruby.py | 98 if hasattr(ctrl, '_node_type'):
|
/gem5/ext/testlib/ |
H A D | main.py | 100 if hasattr(cfg, name): 106 if hasattr(cfg, name):
|
/gem5/src/python/m5/stats/ |
H A D | __init__.py | 154 @_url_factory([ "h5", ], enable=hasattr(_m5.stats, "initHDF5")) 271 if hasattr(parent, 'addStatGroup'):
|