Home
last modified time | relevance | path

Searched defs:wrapper (Results 1 – 25 of 194) sorted by relevance

12345678

/third_party/boost/libs/fusion/test/sequence/
Ddefine_tpl_struct_move.cpp11 struct wrapper struct
15 wrapper() : value(42) {} in wrapper() argument
16 wrapper(wrapper&& other) : value(other.value) { other.value = 0; } in wrapper() argument
17 wrapper(wrapper const& other) : value(other.value) {} in wrapper() function
19 wrapper& operator=(wrapper&& other) { value = other.value; other.value = 0; return *this; } in operator =() argument
20 wrapper& operator=(wrapper const& other) { value = other.value; return *this; } in operator =() argument
Ddefine_struct_move.cpp11 struct wrapper struct
15 wrapper() : value(42) {} in wrapper() function
16 wrapper(wrapper&& other) : value(other.value) { other.value = 0; } in wrapper() argument
17 wrapper(wrapper const& other) : value(other.value) {} in wrapper() function
19 wrapper& operator=(wrapper&& other) { value = other.value; other.value = 0; return *this; } in operator =() argument
20 wrapper& operator=(wrapper const& other) { value = other.value; return *this; } in operator =() argument
Ddefine_assoc_struct_move.cpp12 struct wrapper struct
16 wrapper() : value(42) {} in wrapper() argument
17 wrapper(wrapper&& other) : value(other.value) { other.value = 0; } in wrapper() function
18 wrapper(wrapper const& other) : value(other.value) {} in wrapper() argument
20 wrapper& operator=(wrapper&& other) { value = other.value; other.value = 0; return *this; } in operator =() argument
21 wrapper& operator=(wrapper const& other) { value = other.value; return *this; } in operator =() argument
Ddefine_tpl_struct_inline_move.cpp11 struct wrapper struct
15 wrapper() : value(42) {} in wrapper() argument
16 wrapper(wrapper&& other) : value(other.value) { other.value = 0; } in wrapper() function
17 wrapper(wrapper const& other) : value(other.value) {} in wrapper() argument
19 wrapper& operator=(wrapper&& other) { value = other.value; other.value = 0; return *this; } in operator =() argument
20 wrapper& operator=(wrapper const& other) { value = other.value; return *this; } in operator =() argument
Ddefine_assoc_tpl_struct_move.cpp16 struct wrapper struct
20 wrapper() : value(42) {} in wrapper() argument
21 wrapper(wrapper&& other) : value(other.value) { other.value = 0; } in wrapper() function
22 wrapper(wrapper const& other) : value(other.value) {} in wrapper() argument
24 wrapper& operator=(wrapper&& other) { value = other.value; other.value = 0; return *this; } in operator =() argument
25 wrapper& operator=(wrapper const& other) { value = other.value; return *this; } in operator =() argument
Ddefine_struct_inline_move.cpp11 struct wrapper struct
15 wrapper() : value(42) {} in wrapper() argument
16 wrapper(wrapper&& other) : value(other.value) { other.value = 0; } in wrapper() function
17 wrapper(wrapper const& other) : value(other.value) {} in wrapper() function
19 wrapper& operator=(wrapper&& other) { value = other.value; other.value = 0; return *this; } in operator =() argument
20 wrapper& operator=(wrapper const& other) { value = other.value; return *this; } in operator =() argument
/third_party/boost/libs/atomic/test/
Dapi_test_helpers.hpp118 Wrapper<T> wrapper(value1); in test_base_operators() local
124 Wrapper<T> wrapper(value1); in test_base_operators() local
132 Wrapper<T> wrapper(value1); in test_base_operators() local
138 Wrapper<T> wrapper(value1); in test_base_operators() local
146 Wrapper<T> wrapper(value1); in test_base_operators() local
154 Wrapper<T> wrapper(value1); in test_base_operators() local
164 Wrapper<T> wrapper(value1); in test_base_operators() local
174 Wrapper<T> wrapper(value1); in test_base_operators() local
192 Wrapper<T> wrapper(value1); in test_base_operators() local
356 Wrapper<T> wrapper(zero_value); in test_additive_operators_with_type_and_test() local
[all …]
/third_party/boost/libs/optional/test/
Doptional_test_constructible_from_other.cpp40 class wrapper class
43 wrapper() {} in wrapper() function in wrapper
44 wrapper(wrapper const&) {} in wrapper() function in wrapper
46wrapper(U const&, typename boost::enable_if_c< is_constructible< T, U >::value, int >::type = 0) {} in wrapper() function in wrapper
/third_party/grpc/src/ruby/ext/grpc/
Drb_compression_options.c56 grpc_rb_compression_options* wrapper = NULL; in grpc_rb_compression_options_free_internal() local
94 grpc_rb_compression_options* wrapper = NULL; in grpc_rb_compression_options_alloc() local
110 grpc_rb_compression_options* wrapper = NULL; in grpc_rb_compression_options_disable_compression_algorithm_internal() local
201 grpc_rb_compression_options* wrapper = NULL; in grpc_rb_compression_options_is_algorithm_enabled() local
241 grpc_rb_compression_options* wrapper = NULL; in grpc_rb_compression_options_to_hash() local
312 grpc_rb_compression_options* wrapper = NULL; in grpc_rb_compression_options_get_default_algorithm() local
331 grpc_rb_compression_options* wrapper = NULL; in grpc_rb_compression_options_get_default_level() local
350 grpc_rb_compression_options* wrapper = NULL; in grpc_rb_compression_options_get_disabled_algorithms() local
379 grpc_rb_compression_options* wrapper = NULL; in grpc_rb_compression_options_init() local
Drb_server_credentials.c46 grpc_rb_server_credentials* wrapper = NULL; in grpc_rb_server_credentials_free() local
64 grpc_rb_server_credentials* wrapper = NULL; in grpc_rb_server_credentials_mark() local
93 grpc_rb_server_credentials* wrapper = ALLOC(grpc_rb_server_credentials); in grpc_rb_server_credentials_alloc() local
131 grpc_rb_server_credentials* wrapper = NULL; in grpc_rb_server_credentials_init() local
239 grpc_rb_server_credentials* wrapper = NULL; in grpc_rb_get_wrapped_server_credentials() local
Drb_channel_credentials.c52 grpc_rb_channel_credentials* wrapper = NULL; in grpc_rb_channel_credentials_free_internal() local
71 grpc_rb_channel_credentials* wrapper = NULL; in grpc_rb_channel_credentials_mark() local
99 grpc_rb_channel_credentials* wrapper = ALLOC(grpc_rb_channel_credentials); in grpc_rb_channel_credentials_alloc() local
112 grpc_rb_channel_credentials* wrapper; in grpc_rb_wrap_channel_credentials() local
150 grpc_rb_channel_credentials* wrapper = NULL; in grpc_rb_channel_credentials_init() local
272 grpc_rb_channel_credentials* wrapper = NULL; in grpc_rb_get_wrapped_channel_credentials() local
Drb_call_credentials.c183 grpc_rb_call_credentials* wrapper; in grpc_rb_call_credentials_free_internal() local
201 grpc_rb_call_credentials* wrapper = NULL; in grpc_rb_call_credentials_mark() local
228 grpc_rb_call_credentials* wrapper = ALLOC(grpc_rb_call_credentials); in grpc_rb_call_credentials_alloc() local
240 grpc_rb_call_credentials* wrapper; in grpc_rb_wrap_call_credentials() local
261 grpc_rb_call_credentials* wrapper = NULL; in grpc_rb_call_credentials_init() local
337 grpc_rb_call_credentials* wrapper = NULL; in grpc_rb_get_wrapped_call_credentials() local
Drb_channel.c101 grpc_rb_channel* wrapper; member
196 grpc_rb_channel* wrapper = ALLOC(grpc_rb_channel); in grpc_rb_channel_alloc() local
214 grpc_rb_channel* wrapper = NULL; in grpc_rb_channel_init() local
302 grpc_rb_channel* wrapper = NULL; in grpc_rb_channel_get_connectivity_state() local
377 grpc_rb_channel* wrapper = NULL; in grpc_rb_channel_watch_connectivity_state() local
413 grpc_rb_channel* wrapper = NULL; in grpc_rb_channel_create_call() local
474 grpc_rb_channel* wrapper = NULL; in grpc_rb_channel_destroy() local
488 grpc_rb_channel* wrapper = NULL; in grpc_rb_channel_get_target() local
832 grpc_rb_channel* wrapper = NULL; in grpc_rb_get_wrapped_channel() local
/third_party/boost/libs/proto/test/
Dmake.cpp22 struct wrapper struct
25 explicit wrapper(T const & t = T()) : t_(t) {} in wrapper() argument
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/
DMidiPortSelector.java108 MidiPortWrapper wrapper = new MidiPortWrapper(info, mType, i); in onDeviceAdded() local
119 MidiPortWrapper wrapper = new MidiPortWrapper(info, mType, i); in onDeviceRemoved() local
144 MidiPortWrapper wrapper = new MidiPortWrapper(info, mType, i); in onDeviceStatusChanged() local
170 public abstract void onPortSelected(MidiPortWrapper wrapper); in onPortSelected()
/third_party/boost/libs/iterator/test/
Diterator_facade.cpp96 struct wrapper struct
99 explicit wrapper(typename boost::call_traits<T>::param_type x) in wrapper() argument
103 wrapper(const wrapper<U>& other, in wrapper() function
/third_party/libsoup/libsoup/
Dsoup-proxy-resolver-wrapper.c29 SoupProxyResolverWrapper *wrapper = in soup_proxy_resolver_wrapper_finalize() local
89 SoupProxyResolverWrapper *wrapper = in soup_proxy_resolver_wrapper_lookup_async() local
122 SoupProxyResolverWrapper *wrapper = in soup_proxy_resolver_wrapper_lookup() local
162 SoupProxyResolverWrapper *wrapper; in soup_proxy_resolver_wrapper_new() local
/third_party/boost/boost/coroutine2/detail/
Dwrap.hpp27 class wrapper { class
33 wrapper( Fn1 && fn1, Fn2 && fn2) : in wrapper() function in boost::coroutines2::detail::wrapper
/third_party/flutter/skia/src/core/
DSkScan.cpp79 SkAAClipBlitterWrapper wrapper(clip, blitter); in FillIRect() local
94 SkAAClipBlitterWrapper wrapper(clip, blitter); in FillXRect() local
109 SkAAClipBlitterWrapper wrapper(clip, blitter); in FillRect() local
/third_party/skia/src/core/
DSkScan.cpp79 SkAAClipBlitterWrapper wrapper(clip, blitter); in FillIRect() local
94 SkAAClipBlitterWrapper wrapper(clip, blitter); in FillXRect() local
109 SkAAClipBlitterWrapper wrapper(clip, blitter); in FillRect() local
/third_party/boost/libs/typeof/test/
Dmsvc_typeof_in_lambda.cpp28 struct wrapper { struct
35 BOOST_TYPEOF_REGISTER_TEMPLATE(::detail::wrapper, 1)
/third_party/vk-gl-cts/modules/egl/
DteglNegativePartialUpdateTests.cpp243 CallLogWrapper wrapper (egl, log); in iterate() local
284 CallLogWrapper wrapper (egl, log); in iterate() local
369 CallLogWrapper wrapper (egl, log); in iterate() local
402 CallLogWrapper wrapper (egl, log); in iterate() local
437 CallLogWrapper wrapper (egl, log); in iterate() local
468 CallLogWrapper wrapper (egl, log); in iterate() local
507 CallLogWrapper wrapper (egl, log); in iterate() local
/third_party/mindspore/mindspore/ccsrc/cxx_api/model/acl/acl_vm/
Dms_tensor_ref.cc33 auto wrapper = utils::cast<MSTensorRef>(args); in Convert() local
70 auto wrapper = utils::cast<MSTensorRef>(item); in ConvertTuple() local
/third_party/mindspore/mindspore/_extends/graph_kernel/expanders/
D_utils.py119 def wrapper(cls): function
142 def wrapper(cls): function
159 def wrapper(cls): function
/third_party/typescript/tests/cases/compiler/
DemitCapturingThisInTupleDestructuring1.ts1 declare function wrapper(x: any); function

12345678