Searched refs:object_nc (Results 1 – 3 of 3) sorted by relevance
/third_party/boost/libs/fusion/test/functional/ |
D | invoke_function_object.cpp | 45 struct object_nc : boost::noncopyable {}; struct 82 int operator()(int i, object &, object_nc &) { return 10 + i; } in operator ()() 83 int operator()(int i, object &, object_nc &) const { return 11 + i; } in operator ()() 84 int operator()(int i, object const &, object_nc &); 85 int operator()(int i, object const &, object_nc &) const; 138 typedef object_nc & element3_type; 142 object_nc element3;
|
D | invoke_procedure.cpp | 44 struct object_nc : boost::noncopyable {}; struct 48 typedef object_nc & element3_type; 52 object_nc element3; 151 int operator()(int & i, object &, object_nc &) { return i = 10; } in operator ()() 152 int operator()(int & i, object &, object_nc &) const { return i = 11; } in operator ()()
|
D | invoke.cpp | 46 struct object_nc : boost::noncopyable {}; struct 80 int operator()(int i, object &, object_nc &) { return 10 + i; } in operator ()() 81 int operator()(int i, object &, object_nc &) const { return 11 + i; } in operator ()() 82 int operator()(int i, object const &, object_nc &); 83 int operator()(int i, object const &, object_nc &) const; 213 typedef object_nc & element3_type; 217 object_nc element3;
|