HomeSort by relevance Sort by last modified time
    Searched full:template (Results 351 - 375 of 20596) sorted by null

<<11121314151617181920>>

  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p3.cpp 4 template<class T> class X; // expected-note {{'N::X' declared here}} \
8 // TODO: Don't add a namespace qualifier to the template if it would trigger
10 template<> class X<int> { /* ... */ }; // expected-error {{no template named 'X'; did you mean 'N::X'?}} \
11 // expected-warning {{first declaration of class template specialization of 'X' outside namespace 'N' is a C++11 extension}}
15 template<> class X<char*> { /* ... */ }; // OK: X is a template
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p1-0x.cpp 3 template<typename T>
8 template inline void X<int>::f(); // expected-error{{explicit instantiation cannot be 'inline'}}
10 template<typename T>
15 template constexpr int Y<int>::f() const; // expected-error{{explicit instantiation cannot be 'constexpr'}}
17 template<typename T>
23 template enum Z<int>::E; // expected-error {{enumerations cannot be explicitly instantiated}}
24 template int Z<int>::t; // expected-error {{explicit instantiation of 't' does not refer to}}
  /external/clang/test/CodeGenCXX/
debug-info-template-explicit-specialization.cpp 9 template <typename T>
12 extern template class a<int>;
15 template <typename T>
18 extern template class b<int>;
24 template <typename T>
28 extern template class c<int>;
33 template <typename T>
37 extern template class d<int>;
43 template <typename T>
47 template <typename T
    [all...]
  /external/clang/test/SemaTemplate/
canonical-expr-type-0x.cpp 6 template<typename T, T N>
9 template<typename T, T N>
12 template<typename U, U M>
16 template<int> struct N {};
18 template<typename...T>
21 template<typename, typename...T>
24 template<class...U>
instantiate-function-params.cpp 4 template<bool C> struct if_c { };
5 template<typename T1> struct if_ {
8 template <class Model, void (Model::*)()> struct wrap_constraints { };
9 template <class Model>
10 inline char has_constraints_(Model* , // expected-note 3{{candidate template ignored}}
13 template <class Model> struct not_satisfied {
15 // expected-note 2{{while substituting deduced template arguments into function template 'has_constraints_' [with }}
17 template <class ModelFn> struct requirement_;
18 template <void(*)()> struct instantiate
    [all...]
instantiate-subscript.cpp 16 template<typename T, typename U, typename Result>
23 template struct Subscript0<int*, int, int&>;
24 template struct Subscript0<Sub0, int, int&>;
25 template struct Subscript0<Sub1, ConvertibleToInt, long&>;
26 template struct Subscript0<Sub1, Sub0, long&>; // expected-note{{instantiation}}
29 template <typename T>
34 template <typename T>
instantiate-member-pointers.cpp 6 template<typename T>
13 template struct X1<Y>;
14 template struct X1<int>; // expected-note{{instantiation}}
16 template<typename T, typename Class>
24 template struct X2<int, Y>;
25 template struct X2<int&, Y>; // expected-note{{instantiation}}
26 template struct X2<const void, Y>; // expected-note{{instantiation}}
28 template<typename T, typename Class, T Class::*Ptr>
39 template<IntMember Member>
50 template<IntMember Member
    [all...]
ms-class-specialization-class-scope.cpp 2 // RUN: %clang_cc1 -fms-extensions -fdelayed-template-parsing -fsyntax-only -verify %s -Wno-microsoft
6 template<typename T> struct X { typedef int x; };
10 template<> struct X<int>; // expected-error {{explicit specialization of 'A::X<int>' after instantiation}}
11 template<> struct X<char>; // expected-note {{forward declaration}}
15 template<> struct X<double> {
21 template<> struct X<float> {}; // expected-note {{previous definition is here}}
22 template<> struct X<float> {}; // expected-error {{redefinition of 'A::X<float>'}}
28 template<class T> class B {
30 template<typename U> struct X { typedef int x; };
34 template<> struct X<int>; // expected-error {{explicit specialization of 'X<int>' after instantiation}
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/
TemplateRenderer.java 22 import com.google.clearsilver.jsilver.template.Template;
27 * Renders a template.
32 * Renders a given template and provided data, writing to an arbitrary output.
34 * @param templateName Name of template to load (e.g. "things/blah.cs").
35 * @param data Data to be used in template.
36 * @param output Where template should be rendered to. This can be a Writer, PrintStream,
52 * Same as {@link #render(String, Data, Appendable)}, except returns rendered template as a
58 * Renders a given template and provided data, writing to an arbitrary output.
60 * @param template Template to render
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_resource.c 10 const struct pipe_resource *template)
12 if (template->target == PIPE_BUFFER)
13 return i915_buffer_create(screen, template);
15 return i915_texture_create(screen, template, FALSE);
21 const struct pipe_resource *template,
24 if (template->target == PIPE_BUFFER)
27 return i915_texture_from_handle(screen, template, whandle);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
apply_fwd.hpp 14 template<
20 template<
25 template<
30 template<
35 template<
40 template<
45 template<
bind_fwd.hpp 14 template<
20 template<
25 template<
30 template<
35 template<
40 template<
45 template<
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/preprocessed/
numeric_cast_traits_long_long.hpp 12 template <>
24 template <>
36 template <>
48 template <>
60 template <>
72 template <>
84 template <>
96 template <>
108 template <>
120 template <>
    [all...]
  /external/eigen/test/
sparse_permutations.cpp 1 // This file is part of Eigen, a lightweight C++ template library
12 template<int OtherStorage, typename SparseMatrixType> void sparse_permutations(const SparseMatrixType& ref)
32 up = mat.template triangularView<Upper>();
33 lo = mat.template triangularView<Lower>();
35 up_sym_d = mat_d.template selfadjointView<Upper>();
36 lo_sym_d = mat_d.template selfadjointView<Lower>();
39 VERIFY_IS_APPROX(up, DenseMatrix(mat_d.template triangularView<Upper>()));
40 VERIFY_IS_APPROX(lo, DenseMatrix(mat_d.template triangularView<Lower>()));
68 res = mat.template selfadjointView<Upper>().twistedBy(p_null);
72 res = mat.template selfadjointView<Lower>().twistedBy(p_null)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/
algorithmfwd.h 41 template<typename _FIter>
45 template<typename _FIter>
49 template<typename _FIter, typename _IterTag>
53 template<typename _RAIter>
58 template<typename _FIter, typename _BiPredicate>
62 template<typename _FIter, typename _BiPredicate>
67 template<typename _FIter, typename _BiPredicate, typename _IterTag>
71 template<typename _RAIter, typename _BiPredicate>
77 template<typename _IIter, typename _Tp>
81 template<typename _IIter, typename _Tp
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
algorithmfwd.h 41 template<typename _FIter>
45 template<typename _FIter>
49 template<typename _FIter, typename _IterTag>
53 template<typename _RAIter>
58 template<typename _FIter, typename _BiPredicate>
62 template<typename _FIter, typename _BiPredicate>
67 template<typename _FIter, typename _BiPredicate, typename _IterTag>
71 template<typename _RAIter, typename _BiPredicate>
77 template<typename _IIter, typename _Tp>
81 template<typename _IIter, typename _Tp
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
algorithmfwd.h 41 template<typename _FIter>
45 template<typename _FIter>
49 template<typename _FIter, typename _IterTag>
53 template<typename _RAIter>
58 template<typename _FIter, typename _BiPredicate>
62 template<typename _FIter, typename _BiPredicate>
67 template<typename _FIter, typename _BiPredicate, typename _IterTag>
71 template<typename _RAIter, typename _BiPredicate>
77 template<typename _IIter, typename _Tp>
81 template<typename _IIter, typename _Tp
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
algorithmfwd.h 41 template<typename _FIter>
45 template<typename _FIter>
49 template<typename _FIter, typename _IterTag>
53 template<typename _RAIter>
58 template<typename _FIter, typename _BiPredicate>
62 template<typename _FIter, typename _BiPredicate>
67 template<typename _FIter, typename _BiPredicate, typename _IterTag>
71 template<typename _RAIter, typename _BiPredicate>
77 template<typename _IIter, typename _Tp>
81 template<typename _IIter, typename _Tp
    [all...]
  /frameworks/compile/mclinker/include/mcld/Script/
Operator.h 113 template <Operator::Type TYPE>
123 template <>
125 template <>
127 template <>
131 template <>
133 template <>
135 template <>
137 template <>
140 template <>
142 template <>
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/
type_traits 43 template <class _Tp>
48 template <class _Up>
51 template <class>
64 template <class _Tp>
68 template <class T>
73 template <class _Up>
76 template <class>
88 template <class T>
92 template <class T>
96 template <class T, bool B
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/
type_traits 43 template <class _Tp>
48 template <class _Up>
51 template <class>
64 template <class _Tp>
68 template <class T>
73 template <class _Up>
76 template <class>
88 template <class T>
92 template <class T>
96 template <class T, bool B
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
deduction.cpp 5 template<unsigned I, typename ...Types>
8 template<typename ...Types>
12 template void f0(X<0>);
13 template void f0(X<1, int&>);
14 template void f0(X<2, int&, short&>);
17 template void f0<float>(X<1, float&>);
18 template void f0<double>(X<1, double&>);
21 template void f0<char, unsigned char>(X<2, char&, unsigned char&>);
22 template void f0<signed char, char>(X<2, signed char&, char&>);
25 // template void f0<short, int>(X<3, short&, int&, long&>)
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p3.cpp 6 // declared with class or typename) or template-name (if declared with
7 // template) in the scope of the template declaration.
8 template<typename T> struct X0 {
12 template<template<class T> class Y> struct X1 {
16 // [Note: because of the name lookup rules, a template-parameter that
17 // could be interpreted as either a non-type template-parameter or a
27 template<class T, T i> struct X2 {
30 T t1 = i; //template-parameters T and i
    [all...]
  /external/clang/test/SemaCXX/
PR10177.cpp 6 template<typename T, typename U, U> using alias_ref = T;
7 template<typename T, typename U, U> void func_ref() {}
8 template<typename T, typename U, U> struct class_ref {};
10 template<int N>
15 template<int N> struct S; // expected-note 6{{here}}
17 template<int N>
20 template<typename T>
28 template<int N>
36 f<int>(); // NOTE: Non-dependent name uses are type-checked at template definition time.
41 template<typename T> struct S { static int n; }
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
ST.stg 4 include ANTLR3::Template::RewriteBuilder
6 include ANTLR3::Template::Builder
20 /** x+=rule when output=template */
23 <listLabel(elem={<label; format="label">.template}, ...)>
38 return_value.template = <a.alt>
41 return_value.template = <a.alt>
49 return_value.template = <a.alt>
53 return_value.template = <a.alt>
63 return_value.template
69 return_value.template
    [all...]

Completed in 1016 milliseconds

<<11121314151617181920>>