OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:twoT
(Results
1 - 3
of
3
) 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?}}
60
int i = (int) (false ? (void (*)(int))
twoT
<int> : oneT<int>); //expected-error {{incompatible operand}}
61
(
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}}
67
b = (void (*)())
twoT
<int>;
76
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
...]
/external/clang/test/Parser/
cxx-template-decl.cpp
166
typedef char (&
twoT
)[2];
Completed in 174 milliseconds