Home
last modified time | relevance | path

Searched defs:MoveOnlyCallable (Results 1 – 3 of 3) sorted by relevance

/external/cronet/buildtools/third_party/libc++/trunk/test/support/
Dcallable_types.h22 struct MoveOnlyCallable { struct
24 constexpr MoveOnlyCallable(MoveOnlyCallable&& other) in MoveOnlyCallable() argument
31 constexpr explicit MoveOnlyCallable(bool x) : value(x) {} in MoveOnlyCallable() argument
32 Ret value;
/external/libcxx/test/std/utilities/function.objects/func.not_fn/
Dnot_fn.pass.cpp30 struct MoveOnlyCallable { struct
32 MoveOnlyCallable(MoveOnlyCallable&& other) in MoveOnlyCallable() function
39 explicit MoveOnlyCallable(bool x) : value(x) {} in MoveOnlyCallable() function
40 Ret value;
/external/webrtc/rtc_base/
Duntyped_function_unittest.cc194 TEST(UntypedFunction, MoveOnlyCallable) { in TEST() argument