OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PMF
(Results
1 - 3
of
3
) sorted by null
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1-11.cpp
46
template<int (X::*
pmf
)(int)> struct
PMF
{ // expected-note 2 {{template parameter is declared here}}
47
PMF
<
pmf
> *pmf2;
50
PMF
<0> pmf0; // expected-error{{null non-type template argument must be cast to template parameter type 'int (X::*)(int)'}}
51
PMF
<(0)> pmf1; // expected-error{{null non-type template argument must be cast to template parameter type 'int (X::*)(int)'}}
52
PMF
<nullptr> pmf2;
53
PMF
<get_nullptr()> pmf3;
54
PMF
<(int (X::*)(int))0> pmf4;
55
PMF
<np> pmf5
[
all
...]
/external/clang/test/SemaCXX/
nullptr.cpp
26
void (A::*
pmf
)() = nullptr;
27
pmf
= null;
78
template <int *PI, void (*PF)(), int A::*PM, void (A::*
PMF
)()>
175
template<int (*fp)(int), int* p, int A::* pmd, int (A::*
pmf
)(int)>
/external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/
common_type.pass.cpp
211
using
PMF
= void (S::*)(long) const;
221
static_assert(is_same<typename result_of<
PMF
(unique_ptr<S>, int)>::type, void>::value, "Error!");
Completed in 66 milliseconds