/gem5/ext/pybind11/tests/ |
H A D | test_modules.cpp | 25 A& operator=(const A ©) { print_copy_assigned(this); v = copy.v; return *this; } argument 39 B& operator=(const B ©) { print_copy_assigned(this); a1 = copy.a1; a2 = copy.a2; return *this; } argument
|
/gem5/util/style/ |
H A D | region.py | 149 def copy(self): member in class:Regions
|
/gem5/ext/googletest/googletest/include/gtest/internal/ |
H A D | gtest-linked_ptr.h | 213 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
|
H A D | gtest-internal.h | 1078 Element* const copy = new Element[a_size]; local
|
/gem5/src/base/ |
H A D | pollevent.cc | 126 PollQueue::copy() function in class:PollQueue
|
H A D | refcnt.hh | 149 copy(T *d) function in class:RefCountingPtr
|
/gem5/src/python/m5/util/ |
H A D | sorteddict.py | 106 def copy(self): member in class:SortedDict
|
/gem5/src/systemc/tests/tlm/endian_conv/ |
H A D | testall.py | 154 def copy(self): member in class:memory_state_cl
|
/gem5/ext/systemc/src/sysc/utils/ |
H A D | sc_hash.cpp | 243 sc_phash_base::copy( const sc_phash_base* b ) function in class:sc_core::sc_phash_base 252 sc_phash_base::copy(const sc_phash_base& b, void* (*kdup)(const void*), void (*kfree)(void*)) function in class:sc_core::sc_phash_base
|
H A D | sc_hash.h | 107 void copy( const sc_phash_base& b ) { copy(&b); } function in class:sc_core::sc_phash_base 177 void copy(const sc_phash<K,C>* b) { sc_phash_base::copy(b); } function in class:sc_core::sc_phash 178 void copy(const sc_phash<K,C>& b) { sc_phash_base::copy(b); } function in class:sc_core::sc_phash 179 void copy(cons function in class:sc_core::sc_phash 290 void copy(const sc_pdhash<K,C>& b) { sc_phash_base::copy(b, kdup, kfree); } function in class:sc_core::sc_pdhash 378 void copy(const sc_strhash<C>* b) { sc_phash_base::copy(*b, sc_strhash_kdup, sc_strhash_kfree); } function in class:sc_core::sc_strhash 379 void copy(const sc_strhash<C>& b) { sc_phash_base::copy(b, sc_strhash_kdup, sc_strhash_kfree); } function in class:sc_core::sc_strhash [all...] |
/gem5/ext/testlib/ |
H A D | config.py | 398 def copy(self): member in class:Argument
|
/gem5/ext/pybind11/include/pybind11/detail/ |
H A D | common.h | 325 copy, member in class:return_value_policy
|
/gem5/ext/pybind11/include/pybind11/ |
H A D | pytypes.h | 622 It operator++(int) { auto copy = *this; Policy::increment(); return copy; } local 624 It operator--(int) { auto copy = *this; Policy::decrement(); return copy; } local 628 friend It operator+(const It &a, difference_type n) { auto copy = a; return copy += n; } local 630 friend It operator-(const It &a, difference_type n) { auto copy = a; return copy -= n; } local
|