OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:instantiation
(Results
126 - 150
of
1313
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/SemaTemplate/
instantiate-call.cpp
33
template struct N3::call_f0<int, char&>; // expected-note{{
instantiation
}}
48
template struct N3::call_f0<int, short&>; // expected-note{{
instantiation
}}
instantiate-expr-5.cpp
21
A<HasM> x2; // expected-note{{in
instantiation
of}}
47
void g() { S<S<int> >::f(); } // expected-note {{in
instantiation
of}}
instantiate-objc-1.mm
68
template struct BoxingTest<int *>; // expected-note {{in
instantiation
of member function 'BoxingTest<int *>::box' requested here}}
69
template struct BoxingTest<long double>; // expected-note {{in
instantiation
of member function 'BoxingTest<long double>::box' requested here}}
instantiate-scope.cpp
28
X<void>().f(0); // expected-note {{
instantiation
of}}
29
X<void>::n = 1; // expected-note {{
instantiation
of}}
temp_arg_nontype_cxx11.cpp
7
f<int(int), int(*)(int), nullptr>(); // expected-note{{in
instantiation
of}}
8
f<int[3], int*, nullptr>(); // expected-note{{in
instantiation
of}}
virtual-member-functions.cpp
6
A(); // expected-note{{
instantiation
}}
16
A<int> x; // expected-note{{
instantiation
}}
32
~A(); // expected-note{{
instantiation
}}
42
A<int> x; // expected-note{{
instantiation
}}
59
template struct Derived<int>; // expected-note {{in
instantiation
of member function 'Base<int>::~Base' requested here}}
63
HasOutOfLineKey() { } // expected-note{{in
instantiation
of member function 'HasOutOfLineKey<int>::f' requested here}}
72
HasOutOfLineKey<int> out_of_line; // expected-note{{in
instantiation
of member function 'HasOutOfLineKey<int>::HasOutOfLineKey' requested here}}
168
UsesVTable() {} // expected-note {{in
instantiation
of member function 'vtable_uses_incomplete::RefPtr<vtable_uses_incomplete::DeclaredOnly>::~RefPtr' requested here}}
instantiate-init.cpp
15
f0(ip, dp); // expected-note{{
instantiation
}}
26
f1(x0, ip, dp); // expected-note{{
instantiation
}}
61
// cause
instantiation
is in an unevaluated context, but one requiring its
104
Description<int*>::data // expected-note{{in
instantiation
of static data member 'PR7985::Description<int *>::data' requested here}}
118
// expected-note@+1 {{in
instantiation
of default member initializer}}
ms-sizeof-missing-typename.cpp
19
type_f<X>() + // expected-note-re {{in
instantiation
{{.*}} requested here}}
20
type_g<X>() + // expected-note-re {{in
instantiation
{{.*}} requested here}}
21
type_h<X>() + // expected-note-re {{in
instantiation
{{.*}} requested here}}
49
template struct Foo<Bar>; // expected-note-re {{in
instantiation
{{.*}} requested here}}
59
// expected-note-re@+1 {{in
instantiation
{{.*}} requested here}}
member-function-template.cpp
64
//
Instantiation
on ->
74
(void)x2->get<float>(); // expected-error{{implicit
instantiation
of undefined template}}
77
//
Instantiation
of template template parameters in a member function
typename-specifier.cpp
69
N::X<N::B>::type *ip5 = &i; // expected-note{{in
instantiation
of template class 'N::X<N::B>' requested here}}
70
N::X<N::C>::type *ip6 = &i; // expected-note{{in
instantiation
of template class 'N::X<N::C>' requested here}}
72
N::X<int>::type fail1; // expected-note{{in
instantiation
of template class 'N::X<int>' requested here}}
76
typedef typename N::X<T>::type *type; // expected-note{{in
instantiation
of template class 'N::X<B>' requested here}} \
77
// expected-note{{in
instantiation
of template class 'N::X<C>' requested here}}
93
::Y<B>::type ip8 = &i; // expected-note{{in
instantiation
of template class 'Y<B>' requested here}}
94
::Y<C>::type ip9 = &i; // expected-note{{in
instantiation
of template class 'Y<C>' requested here}}
101
D<long> struct_D; // expected-note {{in
instantiation
of template class 'D<long>' requested here}}
112
E<F> struct_E; // expected-note {{in
instantiation
of template class 'E<F>' requested here}}
241
g<int>(); // expected-note-re {{in
instantiation
{{.*}} requested here}
[
all
...]
/external/clang/test/SemaCXX/
warn-infinite-recursion.cpp
83
foo.a(); // expected-note{{in
instantiation
}}
84
foo.b(); // expected-note{{in
instantiation
}}
120
// This branch gets removed during <0, 0>
instantiation
in so CFG for this
148
Wrapper<x>::run2(); // expected-note{{
instantiation
}}
152
int wrapper_sum = test_wrapper<2>(); // expected-note{{
instantiation
}}
cxx1y-variable-templates_top_level.cpp
131
template float pi0a<int>; // expected-error {{type 'float' of explicit
instantiation
of 'pi0a' does not match expected type 'int'}}
135
template CONST int pi0b<int>; // expected-error {{type 'const int' of explicit
instantiation
of 'pi0b' does not match expected type 'int'}}
139
template int pi0c<const int>; // expected-error {{type 'int' of explicit
instantiation
of 'pi0c' does not match expected type 'const int'}}
143
template int pi0<int>; // expected-note {{previous explicit
instantiation
is here}}
144
template int pi0<int>; // expected-error {{duplicate explicit
instantiation
of 'pi0<int>'}}
148
template int pi1a<int>; // expected-error {{type 'int' of explicit
instantiation
of 'pi1a' does not match expected type 'const int'}}
152
template int pi1b<const int>; // expected-error {{type 'int' of explicit
instantiation
of 'pi1b' does not match expected type 'const const int'}}
156
template CONST int pi1<int>; // expected-note {{previous explicit
instantiation
is here}}
157
template CONST int pi1<int>; // expected-error {{duplicate explicit
instantiation
of 'pi1<int>'}}
162
template auto var0<int>; // expected-error {{'auto' variable template
instantiation
is not allowed}
[
all
...]
static-assert.cpp
21
T<1> t1; // expected-note {{in
instantiation
of template class 'T<1>' requested here}}
28
S<char> s1; // expected-note {{in
instantiation
of template class 'S<char>' requested here}}
50
StaticAssertProtected<X> sap2; // expected-note {{
instantiation
}}
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
p3.cpp
104
void g() { f<int[3]>(); } // expected-note {{in
instantiation
of}}
124
// Detected in template
instantiation
.
132
h2<int[]>(); // expected-note {{in
instantiation
of}}
144
void k() { j<int[]>(); } // expected-note {{in
instantiation
of}}
156
l<int[3], int[4]>(); // expected-note {{in
instantiation
of}}
157
l<int[], int[]>(); // expected-note {{in
instantiation
of}}
165
template void n<double>(); // expected-note {{in
instantiation
of}}
/external/clang/test/CodeGenCXX/
explicit-instantiation.cpp
28
// From an implicit
instantiation
.
32
// From an explicit
instantiation
declaration.
47
// From an implicit
instantiation
.
51
// From an explicit
instantiation
declaration.
70
// explicit
instantiation
declaration after the function template is
75
// Trigger eager
instantiation
of the function definitions.
95
// to weak_odr after explicit
instantiation
without errors about defining the
/external/clang/test/CXX/class.access/class.friend/
p9-cxx0x.cpp
60
template class Y<float>; // expected-note {{in
instantiation
}}
84
template class Y<int>; // expected-note {{in
instantiation
}}
100
template class Y<int>; // expected-note {{in
instantiation
}}
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-cxx03-extra-copy.cpp
28
// Check for
instantiation
of default arguments
40
X4(const X4&, T = get_value_badly<T>()); // expected-note{{in
instantiation
of}}
68
// Would be ambiguous with the next g(), except the
instantiation
failure in
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p4-1y.cpp
24
auto &&x2 = MRef(X{});//expected-note{{in
instantiation
of}}
25
auto &&x3 = MPtr(X{}); //expected-note{{in
instantiation
of}}
48
M('a'); //expected-note{{in
instantiation
of}}
/external/clang/test/CXX/temp/temp.arg/temp.arg.template/
p3-0x.cpp
16
eval<C<17>> eC; // expected-error{{implicit
instantiation
of undefined template 'eval<C<17> >'}}
17
eval<D<int, 17>> eD; // expected-error{{implicit
instantiation
of undefined template 'eval<D<int, 17> >'}}
18
eval<E<int, float>> eE; // expected-error{{implicit
instantiation
of undefined template 'eval<E<int, float, 17> >}}
/external/clang/test/CXX/temp/temp.res/temp.dep/
p3.cpp
65
// FIXME: Reject this prior to
instantiation
; f() is known to return int.
76
char &r = A<int>::F().g(); // expected-note {{in
instantiation
of}}
79
char &s = A<char>::F().g(); // expected-note {{in
instantiation
of}}
/external/clang/test/SemaObjCXX/
property-synthesis-error.mm
88
// Check error handling for
instantiation
during property synthesis.
104
// expected-note {{in
instantiation
of template class}} \
105
// expected-note {{in
instantiation
of member function}}
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
MockPaint.java
21
import mockit.
Instantiation
;
/external/chromium-trace/catapult/dashboard/dashboard/elements/
nav-bar-test.html
24
test('
instantiation
', function() {
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p7.cpp
16
static_assert(alignof(Y<int, char, 1>) == alignof(int), ""); // expected-note {{in
instantiation
of}}
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
p2-0x.cpp
14
// FIXME: don't produce the diagnostic both for the definition and the
instantiation
.
Completed in 662 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>