OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PMF
(Results
1 - 2
of
2
) 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)>
Completed in 574 milliseconds