Home
last modified time | relevance | path

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

/aosp_15_r20/external/cronet/third_party/libc++/src/test/support/
H A Dcallable_types.h22 struct MoveOnlyCallable { struct
24 constexpr MoveOnlyCallable(MoveOnlyCallable&& other) in MoveOnlyCallable() function
31 constexpr explicit MoveOnlyCallable(bool x) : value(x) {} in MoveOnlyCallable() argument
32 Ret value;
/aosp_15_r20/external/libcxx/test/std/utilities/function.objects/func.not_fn/
H A 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;
/aosp_15_r20/external/webrtc/rtc_base/
H A Duntyped_function_unittest.cc194 TEST(UntypedFunction, MoveOnlyCallable) { in TEST() argument