Searched refs:obj (Results 151 - 168 of 168) sorted by relevance

1234567

/gem5/src/mem/slicc/symbols/
H A DStateMachine.py145 def addObject(self, obj):
146 self.symtab.registerSym(str(obj), obj)
147 self.objects.append(obj)
/gem5/ext/pybind11/include/pybind11/
H A Dnumpy.h171 bool PyArray_Check_(PyObject *obj) const {
172 return (bool) PyObject_TypeCheck(obj, PyArray_Type_);
174 bool PyArrayDescr_Check_(PyObject *obj) const {
175 return (bool) PyObject_TypeCheck(obj, PyArrayDescr_Type_);
376 * is to a 1-dimensional array. When present, this is exactly equivalent to `obj(index)`.
426 * exactly equivalent to `obj(index)`.
499 static PyObject *obj = module::import("numpy.core._internal") local
501 return reinterpret_borrow<object>(obj);
1177 static bool direct_converter(PyObject *obj, void*& value) {
1179 if (!PyObject_TypeCheck(obj, ap
[all...]
H A Dstl.h377 inline std::ostream &operator<<(std::ostream &os, const handle &obj) { argument
378 os << (std::string) str(obj);
H A Dcast.h399 PYBIND11_NOINLINE inline bool isinstance_generic(handle obj, const std::type_info &tp) { argument
403 return isinstance(obj, type);
1687 detail::enable_if_t<!detail::move_never<T>::value, T> move(object &&obj) {
1688 if (obj.ref_count() > 1)
1693 throw cast_error("Unable to move from Python " + (std::string) str(obj.get_type()) +
1698 T ret = std::move(detail::load_type<T>(obj).operator T&());
/gem5/util/minorview/
H A Dview.py484 for obj in objs:
485 print ' '.join(obj.table_line())
/gem5/src/systemc/ext/utils/
H A Dsc_vector.hh595 for (auto obj: objs)
596 delete static_cast<T *>(obj);
/gem5/src/mem/
H A Dpacket.hh471 void printObj(Printable *obj);
1338 trySatisfyFunctional(Printable *obj, Addr base, bool is_secure, int size,
/gem5/src/mem/ruby/structures/
H A DCacheMemory.cc45 operator<<(ostream& out, const CacheMemory& obj) argument
47 obj.print(out);
/gem5/src/python/m5/ext/pyfdt/
H A Dpyfdt.py629 for subnode in [obj for obj in node
630 if isinstance(obj, (FdtNode, FdtProperty))]:
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_vector.h685 if( sc_object * obj = object_cast( const_cast<MT*>(&*it) ) )
686 child_vec_->push_back( obj );
/gem5/src/systemc/core/
H A Dsc_module.cc249 return _gem5_module->obj()->get_child_objects();
255 return _gem5_module->obj()->get_child_events();
/gem5/configs/common/
H A DSimulation.py343 simpoints.sort(key=lambda obj: obj[2])
/gem5/src/base/
H A Dstatistics.hh825 MethodProxy(T *obj, MethodPointer meth) : object(obj), method(meth) {}
867 * @param obj Pointer to the object whose method should be called.
873 method(T *obj, V (T::*method)() const)
875 proxy = new MethodProxy<T,V>(obj, method);
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2209 bool MatchAndExplainImpl(false_type /* is_not_pointer */, const Class& obj, argument
2212 return MatchPrintAndExplain(obj.*field_, matcher_, listener);
2270 bool MatchAndExplainImpl(false_type /* is_not_pointer */, const Class& obj, argument
2281 RefToConstProperty result = (obj.*property_)();
2370 virtual bool MatchAndExplain(T obj, MatchResultListener* listener) const { argument
2375 CallableTraits<Callable>::template Invoke<T>(callable_, obj);
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dast.py58 def next(obj):
59 return obj.next()
/gem5/src/python/m5/
H A Dparams.py294 for obj in v.descendants():
295 yield obj
/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc3847 Uncopyable& RefUncopyableFunction(Uncopyable& obj) { // NOLINT argument
3848 return obj;
3860 Uncopyable obj(0);
3863 ResultOf(&RefUncopyableFunction, Ref(obj));
3865 EXPECT_TRUE(matcher2.Matches(obj));
/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc5149 ConvertibleToAssertionResult obj; local
5150 EXPECT_TRUE(obj);

Completed in 117 milliseconds

1234567