OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:instantiation
(Results
26 - 50
of
1076
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/SemaTemplate/
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}}
instantiate-exception-spec.cpp
5
// expected-note{{
instantiation
of}}
instantiation-depth-defarg.cpp
6
// expected-error{{recursive template
instantiation
exceeded maximum depth of 128}} \
7
// expected-note 3 {{
instantiation
of default function argument}} \
9
// expected-note {{use -ftemplate-depth=N to increase recursive template
instantiation
depth}}
34
// Check that we actually bail out when we hit the
instantiation
depth limit for
instantiation-depth-subst-2.cpp
4
template<typename T> S<T() + T()> operator+(T, T); // expected-error {{
instantiation
exceeded maximum depth}} expected-note 3{{while substituting}}
instantiation-depth-subst.cpp
5
// expected-error {{recursive template
instantiation
exceeded maximum depth of 2}} \
unused-variables.cpp
21
template void g<X0, X1>(); // expected-note{{in
instantiation
of}}
instantiate-field.cpp
23
(void)xf->x; // expected-note{{in
instantiation
of template class 'X<float>' requested here}}
27
(void)xf->x; // expected-note{{in
instantiation
of template class 'X<int (int)>' requested here}}
43
((Model*)0)->~Model(); // expected-note{{in
instantiation
of}}
56
{((Model*)0)->~Model(); } // expected-note{{in
instantiation
of}}
64
instantiate< requirement_<void(*)(usage_requirements<BidirectionalIterator>)>::failed> int534; // expected-note{{in
instantiation
of}}
88
D d; //expected-error{{implicit
instantiation
of undefined member 'PR7355::A<int>::D'}}
91
A<int> ai; // expected-note{{in
instantiation
of}}
temp_explicit.cpp
3
// Tests explicit
instantiation
of templates.
47
template struct X2<int&>; // expected-note{{in
instantiation
of}}
58
template struct X3<int&>; // expected-note{{
instantiation
}}
71
template struct X4<int&>; // expected-note{{
instantiation
}}
72
template struct X4<float&>; // expected-note{{
instantiation
}}
74
// Check explicit
instantiation
of member classes
95
template struct X5<int&>::Inner2; // expected-note{{
instantiation
}}
98
template struct X5<float&>::Inner2; // expected-note{{
instantiation
}}
101
template struct N2::X5<int>::Inner2; // expected-warning {{explicit
instantiation
of 'Inner2' not in a namespace enclosing 'N2'}}
/external/clang/test/SemaCXX/
nested-name-spec-locations.cpp
31
UnresolvedUsingValueDeclTester<int> UnresolvedUsingValueDeclCheck; // expected-note{{in
instantiation
of template class}}
41
UnresolvedUsingTypenameDeclTester<int> UnresolvedUsingTypenameDeclCheck; // expected-note{{in
instantiation
of template class}}
62
tester.f(0); // expected-note{{in
instantiation
of member function}}
75
t.f(); // expected-note{{in
instantiation
of member function}}
87
TypenameTypeTester<int> TypenameTypeCheck; // expected-note{{in
instantiation
of template class}}
103
DependentTemplateSpecializationTypeTester<HasApply, int> DTSTCheck; // expected-note{{in
instantiation
of template class}}
112
DependentTemplateSpecializationTypeTester2<HasApply, int> DTSTCheck2; // expected-note{{in
instantiation
of template class}}
121
DependentTemplateSpecializationTypeTester3<HasApply, int> DTSTCheck3; // expected-note{{in
instantiation
of template class}}
130
DependentTemplateSpecializationTypeTester4<HasApply, int> DTSTCheck4; // expected-note{{in
instantiation
of template class}}
148
DependentTemplateTemplateArgumentTester<HasApply, int> DTTACheck; // expected-note{{in
instantiation
of template class}
[
all
...]
PR8385.cpp
6
//
instantiation
.
PR8755.cpp
14
f<int>(); // expected-note{{in
instantiation
of function template}}
type-formatting.cpp
10
template void f0<X1>(); // expected-note{{
instantiation
of}}
warn-unused-variables-error.cpp
8
expected-error{{implicit
instantiation
of undefined template 'PR6948::X<char>'}}
cxx0x-compat.cpp
6
template void ::N::f<int>(int); // expected-warning {{explicit
instantiation
of 'f' not in a namespace enclosing 'N'}}
10
template void f<char>(char); // expected-warning {{explicit
instantiation
of 'N::f' must occur in namespace 'N'}}
14
template void g<int>(int); // expected-warning {{explicit
instantiation
of 'g' must occur at global scope}}
15
template void ::g<char>(char); // expected-warning {{explicit
instantiation
of 'g' must occur at global scope}}
18
template inline void g<double>(double); // expected-warning {{explicit
instantiation
cannot be 'inline'}}
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p1.cpp
4
// specialization (14.7.3) or an explicit
instantiation
(14.7.2)
11
template static void f<float>(float); // expected-error{{explicit
instantiation
cannot have a storage class}}
17
template static void g<float>(float); // expected-error{{explicit
instantiation
cannot have a storage class}}
30
template static int X<int>::value; // expected-error{{explicit
instantiation
cannot have a storage class}}
/ndk/tests/device/test-stlport_shared-exception/jni/
overload12_1.cpp
3
//
instantiation
.
/ndk/tests/device/test-stlport_static-exception/jni/
overload12_1.cpp
3
//
instantiation
.
/external/clang/test/CXX/temp/temp.spec/
no-body.cpp
31
template void g0(int) { } // expected-error {{function cannot be defined in an explicit
instantiation
; if this declaration is meant to be a function definition, remove the 'template' keyword}}
33
template struct y0 { }; // expected-error {{class cannot be defined in an explicit
instantiation
; if this declaration is meant to be a class definition, remove the 'template' keyword}}
51
template void f1<int>(int) { } // expected-error {{explicit template
instantiation
cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}} \
53
template struct x1<int> { }; // expected-error {{explicit template
instantiation
cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}} \
62
template void f2<int>(int) { } // expected-error {{explicit template
instantiation
cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}}
63
template struct x2<int> { }; // expected-error {{explicit template
instantiation
cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}}
/external/clang/test/SemaObjCXX/
instantiate-stmt.mm
13
template void throw_test(int); // expected-note{{in
instantiation
of}}
24
template void synchronized_test(int); // expected-note{{in
instantiation
of}}
59
template void fast_enumeration_test<int>(NSArray*); // expected-note{{in
instantiation
of}}
60
template void fast_enumeration_test<NSString *>(vector); // expected-note{{in
instantiation
of}}
77
template void try_catch_finally_test<NSString *>(int*); // expected-note{{in
instantiation
of}}
78
template void try_catch_finally_test<NSString>(int); // expected-note{{in
instantiation
of function template specialization 'try_catch_finally_test<NSString, int>' requested here}}
/external/clang/test/CXX/except/except.handle/
p16.cpp
25
} catch (X<float>) { // expected-note{{
instantiation
}}
27
} catch (X<int> xi) { // expected-note{{
instantiation
}}
/external/clang/test/CXX/expr/expr.unary/expr.new/
p19.cpp
23
new X0<3>; // expected-note 2{{
instantiation
}}
45
new X1<3> [17]; // expected-note 2{{
instantiation
}}
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.static/
p1-inst.cpp
3
// Test
instantiation
of static data members declared out-of-line.
27
return X<CannotInit>::value; // expected-note{{
instantiation
}}
/external/clang/test/CXX/temp/temp.decls/temp.friend/
p4.cpp
10
X1<float> x1b; // expected-note {{in
instantiation
of}}
21
int array1[sizeof(X2<float>)]; // expected-note{{
instantiation
of}}
/external/clang/test/CXX/temp/temp.res/temp.dep/temp.dep.type/
p1.cpp
10
B<T>::C bc; // ok, B<T> is the current
instantiation
.
15
B<B<T>>::C bc; // ok, B<B<T>> is the current
instantiation
.
/external/clang/test/CXX/temp/temp.res/temp.dep.res/temp.point/
p1.cpp
4
// Note: we fail this test because we perform template
instantiation
6
// finds functions that occur after the point of
instantiation
. Note
Completed in 344 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>