OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:instantiation
(Results
101 - 125
of
1076
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/SemaTemplate/
recovery-crash.cpp
16
B<int> b(0); // expected-note{{in
instantiation
of function template}}
typename-specifier.cpp
48
N::X<N::B>::type *ip5 = &i; // expected-note{{in
instantiation
of template class 'N::X<N::B>' requested here}}
49
N::X<N::C>::type *ip6 = &i; // expected-note{{in
instantiation
of template class 'N::X<N::C>' requested here}}
51
N::X<int>::type fail1; // expected-note{{in
instantiation
of template class 'N::X<int>' requested here}}
55
typedef typename N::X<T>::type *type; // expected-note{{in
instantiation
of template class 'N::X<B>' requested here}} \
56
// expected-note{{in
instantiation
of template class 'N::X<C>' requested here}}
72
::Y<B>::type ip8 = &i; // expected-note{{in
instantiation
of template class 'Y<B>' requested here}}
73
::Y<C>::type ip9 = &i; // expected-note{{in
instantiation
of template class 'Y<C>' requested here}}
80
D<long> struct_D; // expected-note {{in
instantiation
of template class 'D<long>' requested here}}
91
E<F> struct_E; // expected-note {{in
instantiation
of template class 'E<F>' requested here}}
virtual-member-functions.cpp
17
x.anchor(); // expected-note{{
instantiation
}}
42
template struct Derived<int>; // expected-note {{in
instantiation
of member function 'Base<int>::~Base' requested here}}
55
HasOutOfLineKey<int> out_of_line; // expected-note{{in
instantiation
of member function 'HasOutOfLineKey<int>::f' requested here}}
96
Y* f(X<void>* x) { return dynamic_cast<Y*>(x); } // expected-note {{in
instantiation
of member function 'DynamicCast::X<void>::foo' requested here}}
attributes.cpp
14
typedef check<N == sizeof(X<N>)> t; // expected-note {{in
instantiation
}}
19
check_alignment<3>::t c3; // expected-note 2 {{in
instantiation
}}
copy-ctor-assign.cpp
29
return x; // expected-note{{
instantiation
}}
35
x = xmptr; // expected-note{{
instantiation
}}
elaborated-type-specifier.cpp
19
template class D<D2>; // expected-note{{in
instantiation
of}}
20
template class D<D3>; // expected-note{{in
instantiation
of}}
instantiate-anonymous-union.cpp
51
// Check for problems related to PR7402 that occur when template
instantiation
63
// Check that this requirement survives
instantiation
.
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}}
/external/icu4c/layout/
OpenTypeUtilities.h
30
OpenTypeUtilities() {} // private - forbid
instantiation
/external/icu4c/test/intltest/
testutil.h
34
TestUtility() {} // Prevent
instantiation
/external/littlemock/
README
17
- bug8297640.patch: update
instantiation
code to handle change in internal
/external/llvm/test/MC/AsmParser/
macros.s
12
// CHECK-ERRORS: <
instantiation
>:1:1: error: unknown directive
15
// CHECK-ERRORS: <
instantiation
>:1:1: note: while in macro
instantiation
18
// CHECK-ERRORS: 11:1: note: while in macro
instantiation
/external/clang/test/Analysis/
templates.cpp
59
// force
instantiation
70
// force
instantiation
/external/clang/test/CXX/except/except.spec/
p2-dynamic-types.cpp
15
// Don't suppress errors in template
instantiation
.
18
void tf() throw(TEx<int>); // expected-error {{implicit
instantiation
of undefined template}}
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
default-arguments.cpp
45
l1(); // expected-note{{in
instantiation
of default function argument expression for 'operator()<NoDefaultCtor>' required here}}
49
template void defargs_in_template_used<NoDefaultCtor>(); // expected-note{{in
instantiation
of function template specialization}}
/external/clang/test/CXX/expr/expr.unary/expr.sizeof/
p5-0x.cpp
12
// Test
instantiation
16
// Test
instantiation
involving function parameter packs.
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
p2.cpp
34
struct X1 { // expected-note{{explicit
instantiation
refers here}}
38
void f1(T) {} // expected-note{{explicit
instantiation
refers here}}
p3-0x.cpp
4
// If the name declared in the explicit
instantiation
is an
5
// unqualified name, the explicit
instantiation
shall appear in the
/external/clang/test/CodeGenCXX/
template-anonymous-types.cpp
30
// BAR's
instantiation
of X:
34
// FOO's
instantiation
of X:
/external/clang/test/PCH/
crash-12631281.cpp
29
return __equal_range(a); // expected-note {{
instantiation
}}
34
return equal_range(0); // expected-note {{
instantiation
}}
/external/clang/test/SemaCXX/
warn-using-namespace-in-header.cpp
44
// |using namespace| through a macro should warn if the
instantiation
is in a
56
// |using namespace| through a macro shouldn't warn if the
instantiation
is in a
cxx1y-variable-templates_top_level.cpp
126
template float pi0a<int>; // expected-error {{type 'float' of explicit
instantiation
of 'pi0a' does not match expected type 'int'}}
130
template CONST int pi0b<int>; // expected-error {{type 'const int' of explicit
instantiation
of 'pi0b' does not match expected type 'int'}}
134
template int pi0c<const int>; // expected-error {{type 'int' of explicit
instantiation
of 'pi0c' does not match expected type 'const int'}}
138
template int pi0<int>; // expected-note {{previous explicit
instantiation
is here}}
139
template int pi0<int>; // expected-error {{duplicate explicit
instantiation
of 'pi0<int>'}}
143
template int pi1a<int>; // expected-error {{type 'int' of explicit
instantiation
of 'pi1a' does not match expected type 'const int'}}
147
template int pi1b<const int>; // expected-error {{type 'int' of explicit
instantiation
of 'pi1b' does not match expected type 'const const int'}}
151
template CONST int pi1<int>; // expected-note {{previous explicit
instantiation
is here}}
152
template CONST int pi1<int>; // expected-error {{duplicate explicit
instantiation
of 'pi1<int>'}}
157
template auto var0<int>; // expected-error {{'auto' variable template
instantiation
is not allowed}
[
all
...]
/external/clang/test/SemaObjCXX/
deduction.mm
56
template struct tester<Test1Class>; // expected-note {{in
instantiation
}}
57
template struct tester<Test1Class<Test1Protocol> >; // expected-note {{in
instantiation
}}
Completed in 475 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>