HomeSort by relevance Sort by last modified time
    Searched full:template (Results 876 - 900 of 20740) sorted by null

<<31323334353637383940>>

  /external/clang/test/PCH/
ms-if-exists.cpp 6 template<typename T>
27 template void f(HasFoo); // expected-note{{in instantiation of function template specialization 'f<HasFoo>' requested here}}
29 template void f(HasBar);
  /external/clang/test/Parser/
cxx-attributes.cpp 10 template <typename T> class X {
11 template <typename S> void X<S>::f() __attribute__((locks_excluded())); // expected-error{{nested name specifier 'X<S>::' for declaration does not refer into a class, class template or class template partial specialization}} \
  /external/clang/test/Sema/
128bitfloat.cpp 7 template<typename> struct __is_floating_point_helper {};
8 template<> struct __is_floating_point_helper<__float128> {};
17 template<typename> struct __is_floating_point_helper {};
18 template<> struct __is_floating_point_helper<__float128> {}; // expected-error {{use of undeclared identifier '__float128'}}
  /external/clang/test/SemaCXX/
PR6562.cpp 5 template <typename T>
crashes.cpp 6 template<typename _Alloc> class allocator;
7 template<class _CharT> struct char_traits;
8 template<typename _CharT, typename _Traits = char_traits<_CharT>,
11 template<typename _CharT, typename _Traits, typename _Alloc>
17 template<typename T>
26 template<typename T> struct a : T {
53 template<typename Signature>
58 template<typename R , typename ARG_TYPE0>
65 template< typename ARG_TYPE0>
106 template<typename T> class C
    [all...]
cxx11-inheriting-ctors.cpp 9 template<typename X, typename Y> struct T {
10 template<typename A> T(X x, A &&a) {}
12 template<typename A> explicit T(A &&a)
17 template<typename X, typename Y> struct U : T<X, Y> {
decltype-pr4444.cpp 4 template<typename T, T t>
dependent-noexcept-unevaluated.cpp 3 template <class T>
7 template <class T>
13 template <class T>
21 template <class T, unsigned N>
instantiate-blocks.cpp 4 template <typename T, typename T1> void foo(T t, T1 r)
16 template <typename T, typename T1> void noret(T t, T1 r)
28 foo(100, 'a'); // expected-note {{in instantiation of function template specialization 'foo<int, char>' requested here}}
30 noret((float)0.0, double(0.0)); // expected-note {{in instantiation of function template specialization 'noret<float, double>' requested here}}
parentheses.cpp 4 template<class Foo>
visibility.cpp 4 template <class C>
warn-member-not-needed.cpp 6 template <typename T>
warn-vla.cpp 12 template<typename T>
17 template<typename T>
21 template<typename T>
24 template<typename T>
  /external/clang/test/SemaTemplate/
exception-spec-crash.cpp 4 template <class _Tp> struct is_nothrow_move_constructible {
8 template <class _Tp>
11 template <>
14 template <class _Allocator>
friend.cpp 2 template<typename T> struct A {
27 template<typename T> void f1(T, T);
28 template <class T>
41 template <typename T>
instantiate-enum-2.cpp 4 template<int IntBits> struct X {
instantiate-friend-class.cpp 5 template <class T> class X
instantiate-overloaded-arrow.cpp 13 template <typename T>
instantiation-default-2.cpp 3 template<typename T, T Value> struct Constant; // expected-note{{template parameter is declared here}} \
4 // FIXME: bad location expected-error{{a non-type template parameter cannot have type 'float'}}
16 Constant<float (*)(int, int), f> *c6; // expected-error{{non-type template argument of type 'float (int, double)' cannot be converted to a value of type 'float (*)(int, int)'}}
temp.cpp 6 template<typename T> int foo(T), bar(T, T); // expected-error{{single entity}}
11 namespace A { template<typename T> struct Base { typedef T t; }; } // expected-note {{member found}}
12 namespace B { template<typename T> struct Base { typedef T t; }; } // expected-note {{member found}}
14 template<typename T> struct Derived : A::Base<char>, B::Base<int> {
  /external/eigen/Eigen/src/Core/arch/NEON/
PacketMath.h 1 // This file is part of Eigen, a lightweight C++ template library
65 template<> struct packet_traits<float> : default_packet_traits
82 template<> struct packet_traits<int> : default_packet_traits
101 template<> struct unpacket_traits<Packet4f> { typedef float type; enum {size=4}; };
102 template<> struct unpacket_traits<Packet4i> { typedef int type; enum {size=4}; };
104 template<> EIGEN_STRONG_INLINE Packet4f pset1<Packet4f>(const float& from) { return vdupq_n_f32(from); }
105 template<> EIGEN_STRONG_INLINE Packet4i pset1<Packet4i>(const int& from) { return vdupq_n_s32(from); }
107 template<> EIGEN_STRONG_INLINE Packet4f plset<float>(const float& a)
112 template<> EIGEN_STRONG_INLINE Packet4i plset<int>(const int& a)
118 template<> EIGEN_STRONG_INLINE Packet4f padd<Packet4f>(const Packet4f& a, const Packet4f& b) { return vaddq (…)
    [all...]
  /external/eigen/doc/examples/
TemplateKeyword_flexible.cpp 6 template <typename Derived1, typename Derived2>
9 /* Note the 'template' keywords in the following line! */
10 dst.template triangularView<Upper>() = src.template triangularView<Upper>();
  /external/eigen/doc/snippets/
Map_inner_stride.cpp 4 (array, 6) // the inner stride has already been passed as template parameter
  /external/eigen/
eigen3.pc.in 2 Description: A C++ template library for linear algebra: vectors, matrices, and related algorithms
  /external/libchrome/sandbox/linux/bpf_dsl/
bpf_dsl_forward.h 26 template <typename T>
31 template <typename T>
37 extern template class SANDBOX_EXPORT
39 extern template class SANDBOX_EXPORT

Completed in 897 milliseconds

<<31323334353637383940>>