HomeSort by relevance Sort by last modified time
    Searched full:instantiation (Results 176 - 200 of 1076) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/gtest/test/
gtest-param-test_test.h 44 // Test fixture for testing definition and instantiation of a test
48 // Test fixture for testing instantiation of a test in multiple
  /external/protobuf/gtest/test/
gtest-param-test_test.h 44 // Test fixture for testing definition and instantiation of a test
48 // Test fixture for testing instantiation of a test in multiple
  /ndk/sources/third_party/googletest/googletest/test/
gtest-param-test_test.h 44 // Test fixture for testing definition and instantiation of a test
49 // Test fixture for testing instantiation of a test in multiple
  /external/clang/test/Modules/
cxx-templates.cpp 50 // Trigger the instantiation of a template in 'a' that uses a type defined in
57 // Trigger the instantiation of a template in 'b' that uses a type defined in
61 // Trigger the instantiation of a template in 'a' that uses a type defined in
63 // within 'b', the instantiation succeeds.
66 // Trigger the instantiation of a template in 'a' that uses a type defined in
71 PerformDelayedLookup(defined_in_b_impl); // expected-note {{in instantiation of}}
  /external/clang/test/SemaObjCXX/
literals.mm 113 template void test_array_literals(int); // expected-note{{in instantiation of function template specialization 'test_array_literals<int>' requested here}}
130 template void test_dictionary_literals(int, id); // expected-note{{in instantiation of function template specialization 'test_dictionary_literals<int, id>' requested here}}
131 template void test_dictionary_literals(id, int); // expected-note{{in instantiation of function template specialization 'test_dictionary_literals<id, int>' requested here}}
144 template void test_variadic_array_literal(id, int, NSArray*); // expected-note{{in instantiation of function template specialization 'test_variadic_array_literal<id, int, NSArray *>' requested here}}
170 template void test_variadic_dictionary_expansion(NSNumber *, // expected-note{{in instantiation of function template specialization}}
173 template void test_variadic_dictionary_expansion(NSNumber *, // expected-note{{in instantiation of function template specialization}}
  /external/clang/test/SemaTemplate/
instantiate-expr-4.cpp 55 void f() { (void)BadX<1>(); } // expected-note 2 {{instantiation}}
76 template struct New0<X>; // expected-note{{instantiation}}
87 template struct New1<X, Y>; // expected-note{{instantiation}}
97 template struct New2<X, int, int*>; // expected-note{{instantiation}}
112 template void *object_creator<New3[4]>(); // expected-note{{instantiation}}
124 template struct Delete0<int>; // expected-note{{instantiation}}
149 new X<int>[1]; // expected-note{{in instantiation of member function 'PR10480::X<int>::~X' requested here}}
170 template struct Throw1<Incomplete*>; // expected-note{{instantiation}}
195 template struct TypeId0<Incomplete>; // expected-note{{instantiation of member function}}
235 template struct InitList2<APair, int*, double*>; // expected-note{{instantiation}}
    [all...]
default-arguments.cpp 22 template struct p<bool>; // expected-note {{in instantiation of default argument for 'p<bool>' required here}}
73 X2<int>::Inner1<> x2bad; // expected-note{{instantiation of default argument}}
76 X2<int>::NonType1<> x2_nontype1_bad; // expected-note{{instantiation of default argument}}
instantiate-cast.cpp 31 template struct CStyleCast0<A, int>; // expected-note{{instantiation}}
45 template struct StaticCast0<int, A>; // expected-note{{instantiation}}
58 template struct DynamicCast0<Base*, A>; // expected-note{{instantiation}}
71 template struct ReinterpretCast0<int const *, float *>; // expected-note{{instantiation}}
84 template struct ConstCast0<int const *, float *>; // expected-note{{instantiation}}
97 template struct FunctionalCast1<A, int>; // expected-note{{instantiation}}
address-spaces.cpp 59 accept_any_pointer(ip1); // expected-note{{in instantiation of}}
60 accept_any_pointer(array); // expected-note{{in instantiation of}}
  /external/clang/include/clang/Sema/
Template.h 24 /// lists for use in template instantiation.
185 /// this template instantiation.
195 /// This mapping is used during instantiation to keep track of,
207 /// For a parameter pack, the local instantiation scope may contain a
216 /// definitions from some other instantiation (that may not be
260 /// \brief Exit this local instantiation scope early.
316 /// \brief Find the instantiation of the declaration D within the current
317 /// instantiation scope.
319 /// \param D The declaration whose instantiation we are searching for.
376 /// enclosing class's instantiation is complete
    [all...]
  /external/clang/test/CXX/class/class.union/
p1.cpp 116 union { // expected-note 6 {{in instantiation of member class}}
126 Either<int,Virtual> virt(0); // expected-note {{in instantiation of template}}
127 Either<int,VirtualBase> vbase(0); // expected-note {{in instantiation of template}}
128 Either<int,Ctor> ctor(0); // expected-note {{in instantiation of template}}
129 Either<int,CopyCtor> copyctor(0); // expected-note {{in instantiation of template}}
130 Either<int,CopyAssign> copyassign(0); // expected-note {{in instantiation of template}}
131 Either<int,Dtor> dtor(0); // expected-note {{in instantiation of template}}
  /external/clang/test/SemaCXX/
conversion.cpp 105 // not once for the template + once for every instantiation
118 tmpl<char>(); // expected-note 2 {{in instantiation of default function argument expression for 'tmpl<char>' required here}}
119 tmpl<int>(); // expected-note 2 {{in instantiation of default function argument expression for 'tmpl<int>' required here}}
120 // FIXME: We should warn only once for each template instantiation - not once for each call
121 tmpl<int>(); // expected-note 2 {{in instantiation of default function argument expression for 'tmpl<int>' required here}}
access.cpp 54 // the following will trigger for U<float, float> instantiation, via W<float>
64 template struct U<int, int>; // expected-note {{in instantiation of member function 'PR15209::alias_templates::U<int, int>::U' requested here}}
70 W<float>(); // expected-note {{in instantiation of member function 'PR15209::alias_templates::U<float, float>::U' requested here}}
implicit-member-functions.cpp 64 // expected-note@-1 {{in instantiation of template class}}
66 // expected-note@-1 {{in instantiation of default argument}}
111 // pair's templated constructor, which triggers instantiation of the
captured-statements.cpp 77 template_capture_var<int&>(); // expected-note{{in instantiation of function template specialization 'template_capture_var<int &>' requested here}}
97 template_capture_var<int, const int>(0, 1); // expected-note{{in instantiation of function template specialization 'template_capture_var<int, const int>' requested here}}
ms-interface.cpp 67 // expected-note@+1 {{in instantiation of template class 'I6<S>' requested here}}
72 // expected-note@+1 {{in instantiation of template class 'I6<C>' requested here}}
switch.cpp 58 template void foo<C>(); //expected-note {{in instantiation}}
101 template void f(S); // expected-note {{instantiation of}}
typedef-redecl.cpp 89 a.f(); // expected-note{{in instantiation of member function 'PR11630::S<int>::f' requested here}}
93 b2.f(); // expected-note{{in instantiation of member function 'PR11630::S2<2>::f' requested here}}
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 1 //===--- SemaTemplateInstantiateDecl.cpp - C++ Template Decl Instantiation ===/
9 // This file implements C++ template instantiation for declarations.
60 // Include attribute instantiation code.
281 // Create a local instantiation scope for this type alias template, which
644 // that the underlying types match in the instantiation of both
659 // C++11 [temp.inst]p1: The implicit instantiation of a class template
660 // specialization causes the implicit instantiation of the declarations, but
745 // Create a local instantiation scope for this class template, which
779 // case we just want to build the instantiation in the
    [all...]
  /external/clang/test/CXX/class/class.mfct/class.mfct.non-static/
p3.cpp 93 a.test0(); // no instantiation note here, decl is ill-formed
95 a.test2(); // expected-note {{in instantiation}}
96 a.test3(); // expected-note {{in instantiation}}
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p23.cpp 71 template void init_capture_pack_multi(); // expected-note {{instantiation}}
73 template void init_capture_pack_multi(int, int); // expected-note {{instantiation}}
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p6.cpp 37 // Check for conflicts during template instantiation.
45 Outer<int, int> outer; // expected-note{{instantiation}}
  /external/clang/test/CXX/temp/temp.spec/temp.inst/
p1.cpp 4 // implicit instantiation of the declarations, but not the definitions or
34 ScopedEnum1<double>::E e2 = decltype(e2)::e; // expected-note {{in instantiation of enumeration 'ScopedEnum::ScopedEnum1<double>::E' requested here}}
  /external/clang/test/CodeGenCXX/
vtable-linkage.cpp 131 // E<short> is an explicit template instantiation with a key function
141 // F<short> is an explicit template instantiation without a key
150 // E<long> is an implicit template instantiation with a key function
157 // F<long> is an implicit template instantiation with no key function,
163 // F<int> is an explicit template instantiation declaration without a
168 // E<int> is an explicit template instantiation declaration. It has a
210 // H<int> has a key function without a body but it's a template instantiation
226 // I<int> has an explicit instantiation declaration and needs a VTT and
  /external/clang/test/PCH/
headersearch.cpp 30 // Check diagnostic with instantiation location in original source:
40 #ifdef INSTANTIATION

Completed in 416 milliseconds

1 2 3 4 5 6 78 91011>>