OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:twoT
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/SemaTemplate/
resolve-single-template-id.cpp
11
template<class T> void
twoT
() { } // expected-note 5{{possible target for call}}
12
template<class T> void
twoT
(int) { } // expected-note 5{{possible target for call}}
34
twoT
<int>; // expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
37
sizeof(
twoT
<int>); //expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
43
*
twoT
<int>; //expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
54
int i = (int) (false ? (void (*)(int))
twoT
<int> : oneT<int>); //expected-error {{incompatible operand}}
55
(
twoT
<int>) == oneT<int>; //expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}} {{cannot resolve overloaded function '
twoT
' from context}}
61
b = (void (*)())
twoT
<int>;
70
twoT
<int> < twoT<int>; //expected-error {{reference to overloaded function could not be resolved; did y (…)
[
all
...]
/external/clang/test/CXX/over/over.over/
p2-resolve-single-template-id.cpp
32
template<class T> void
twoT
() { } // expected-note 2 {{possible target for call}}
33
template<class T> void
twoT
(T) { } // expected-note 2 {{possible target for call}}
40
twoT
<int>; // expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
49
twoT
<int>; // expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
56
void
twoT
() { }
58
void
twoT
(T) { }
86
{ static_cast<void>(
twoT
<int>); }
87
{ (void)(
twoT
<int>); }
95
{ ptrdiff_t x = reinterpret_cast<ptrdiff_t>(
twoT
<int>); }
96
{ (void) reinterpret_cast<int (*)(char, double)>(
twoT
<int>); }
[
all
...]
Completed in 83 milliseconds