• Home
  • Raw
  • Download

Lines Matching refs:object

16 object ref_to_noncopyable()  in ref_to_noncopyable()
18 return object(boost::ref(not_copyable)); in ref_to_noncopyable()
21 object call_object_3(object f) in call_object_3()
26 object message() in message()
28 return object("hello, world!"); in message()
31 object number() in number()
33 return object(42); in number()
36 object obj_getattr(object x, char const* name) in obj_getattr()
41 object obj_objgetattr(object x, object const& name) in obj_objgetattr()
46 object obj_const_getattr(object const& x, char const* name) in obj_const_getattr()
51 object obj_const_objgetattr(object const& x, object const& name) in obj_const_objgetattr()
56 void obj_setattr(object x, char const* name, object value) in obj_setattr()
61 void obj_objsetattr(object x, object const& name, object value) in obj_objsetattr()
66 void obj_setattr42(object x, char const* name) in obj_setattr42()
71 void obj_objsetattr42(object x, object const& name) in obj_objsetattr42()
76 void obj_moveattr(object& x, char const* src, char const* dst) in obj_moveattr()
81 void obj_objmoveattr(object& x, object const& src, object const& dst) in obj_objmoveattr()
86 void obj_delattr(object x, char const* name) in obj_delattr()
91 void obj_objdelattr(object x, object const& name) in obj_objdelattr()
96 object obj_getitem(object x, object key) in obj_getitem()
101 object obj_getitem3(object x) in obj_getitem3()
106 object obj_const_getitem(object const& x, object key) in obj_const_getitem()
111 void obj_setitem(object x, object key, object value) in obj_setitem()
116 void obj_setitem42(object x, object key) in obj_setitem42()
121 void obj_moveitem(object& x, object src, object dst) in obj_moveitem()
126 void obj_moveitem2(object const& x_src, object k_src, object& x_dst, object k_dst) in obj_moveitem2()
131 bool test(object y) in test()
136 bool test_not(object y) in test_not()
141 bool test_attr(object y, char* name) in test_attr()
146 bool test_objattr(object y, object& name) in test_objattr()
151 bool test_not_attr(object y, char* name) in test_not_attr()
156 bool test_not_objattr(object y, object& name) in test_not_objattr()
161 bool test_item(object y, object key) in test_item()
166 bool test_not_item(object y, object key) in test_not_item()
173 object s("hello, world"); in check_string_slice()
190 object test_call(object c, object args, object kwds) in test_call()
199 object x(3); in check_binary_operators()
214 object oy(y); \ in check_binary_operators()
238 bool check_inplace(object l, object o) in check_inplace()
244 object x(666); \ in check_inplace()
251 object x(666); \ in check_inplace()
252 x op##= object(y); \ in check_inplace()
278 l[index] op##= object(n); \ in check_inplace()
305 o.attr("x" #index) op##= object(n); \ in check_inplace()