OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FuncType
(Results
1 - 25
of
76
) sorted by null
1
2
3
4
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_function.pass.cpp
27
template <class
FuncType
, class AllocType>
33
std::function<
FuncType
> f = FunctionObject();
37
assert(f.template target<
FuncType
>() == 0);
38
assert(f.template target<
FuncType
*>() == 0);
40
std::function<
FuncType
> f2(std::allocator_arg, alloc, f);
44
assert(f2.template target<
FuncType
>() == 0);
45
assert(f2.template target<
FuncType
*>() == 0);
51
template <class
FuncType
, class AllocType>
57
FuncType
* target = &FreeFunction;
58
std::function<
FuncType
> f = target
[
all
...]