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

<<31323334353637383940>>

  /external/clang/test/Modules/
recursive_visibility.mm 8 template<typename T> struct Z { typedef T type; };
9 template void g<Z>();
  /external/clang/test/PCH/
cxx-chain-function-template.cpp 8 template <typename T, typename U>
20 template <typename T>
  /external/clang/test/SemaCXX/
PR20110.cpp 7 template <char const *p>
11 template <int p>
cxx11-user-defined-literals-unused.cpp 9 template<class T> double value() { return 3.2_x; }
10 template<class T> int valuei() { return 3.2_ii; }
enum-unscoped-nonexistent.cpp 6 template<typename T> struct S : Base {
12 template<> enum S<char>::E : int {}; // expected-note {{enum 'S<char>::E' was explicitly specialized here}}
13 template<> enum S<short>::E : int { b = 2 };
14 template<> enum S<int>::E : int { a = 4 };
15 template<typename T> enum S<T>::E : int { b = 8 };
19 template<typename T> constexpr int S<T>::f() const { return a; }
25 template<typename T> constexpr int S<T>::g() const { return b; } // expected-error {{enumerator 'b' does not exist in instantiation of 'S<char>'}}
32 template<typename T> void S<T>::h() {
warn-weak-vtables.cpp 1 // RUN: %clang_cc1 %s -fsyntax-only -verify -triple %itanium_abi_triple -Wweak-vtables -Wweak-template-vtables
2 // RUN: %clang_cc1 %s -fsyntax-only -triple %ms_abi_triple -Werror -Wno-weak-vtables -Wno-weak-template-vtables
8 template<typename T> struct B {
59 template<typename T> struct TemplVirt {
63 template class TemplVirt<float>; // expected-warning{{explicit template instantiation 'TemplVirt<float>' will emit a vtable in every translation unit}}
65 template<> struct TemplVirt<bool> {
69 template<> struct TemplVirt<long> { // expected-warning{{'TemplVirt<long>' has no out-of-line virtual method definitions; its vtable will be emitted in every translation unit}}
windows-arm-valist.cpp 6 template <typename lhs_, typename rhs_>
9 template <typename type_>
  /external/clang/test/SemaTemplate/
alias-nested-nontag.cpp 3 template<typename T> using Id = T; // expected-note {{type alias template 'Id' declared here}}
array-to-pointer-decay.cpp 8 template <int i>
22 template <typename Type> static bool sanitize() {
class-template-ctor-initializer.cpp 5 template<class X> struct A {};
7 template<class X> struct B : A<X> {
12 template<class X> struct B1 : A<X> {
19 template<typename T> struct Tmpl { };
21 template<typename T> struct TmplB { };
42 template <class ParentClass>
66 template<typename T>
71 template<typename T>
  /external/eigen/Eigen/src/Eigen2Support/
Lazy.h 1 // This file is part of Eigen, a lightweight C++ template library
24 template<typename Derived>
25 template<unsigned int Added>
41 template<typename Derived>
51 template<typename Derived>
52 template<typename ProductDerived, typename Lhs, typename Rhs>
61 template<typename Derived>
62 template<typename ProductDerived, typename Lhs, typename Rhs>
  /external/eigen/doc/examples/
class_CwiseBinaryOp.cpp 6 // define a custom template binary functor
7 template<typename Scalar> struct MakeComplexOp {
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
TemplateFactory.java 24 * Responsible for creating/retrieving an AST tree for a template with a given name.
27 * guarantee that per-Template resourceLoaders are respected.
32 * Load a template from the source.
34 * @param templateName e.g. some/path/to/template.cs
35 * @param resourceLoader use this ResourceLoader to locate the named template file and any
37 * @param escapeMode the type of escaping to apply to the entire template.
42 * Create a temporary template from content.
46 * @param escapeMode the type of escaping to apply to the entire template.
  /external/llvm/test/TableGen/
SuperSubclassSameName.td 3 // Test for template arguments that have the same name as superclass template
  /external/tagsoup/stml/
stml.xslt 24 <!-- The main template. Generates declarations for states and
27 <xsl:template match="stml:statetable">
57 </xsl:template>
60 <xsl:template match="stml:state">
66 </xsl:template>
69 <xsl:template match="stml:action">
75 </xsl:template>
78 <xsl:template match="stml:tr">
81 <xsl:call-template name="dump-tr">
83 </xsl:call-template>
    [all...]
  /external/v8/src/profiler/
unbound-queue-inl.h 13 template<typename Record>
24 template<typename Record>
31 template<typename Record>
37 template<typename Record>
45 template<typename Record>
55 template<typename Record>
67 template<typename Record>
73 template<typename Record>
  /external/valgrind/memcheck/tests/
demangle.cpp 4 template <typename T1, typename T2>
14 template <typename T>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
negate.hpp 27 template< typename Tag > struct negate_impl;
29 template< typename T > struct negate_tag
34 template<
41 >::template apply<N>::type
57 template< typename T, T n > struct negate_wknd
65 template<>
69 template< typename N > struct apply
72 template< typename N > struct apply
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
compare_pointees.hpp 19 // template<class OP> bool equal_pointees(OP const& x, OP const& y);
20 // template<class OP> struct equal_pointees_t;
28 template<class OptionalPointee>
35 template<class OptionalPointee>
42 // template<class OP> bool less_pointees(OP const& x, OP const& y);
43 // template<class OP> struct less_pointees_t;
51 template<class OptionalPointee>
58 template<class OptionalPointee>
  /prebuilts/go/darwin-x86/src/text/template/
example_test.go 10 "text/template"
14 // Define a template.
26 // Prepare some data to insert into the template.
37 // Create a new template and parse the letter into it.
38 t := template.Must(template.New("letter").Parse(letter))
40 // Execute the template for each recipient.
44 log.Println("executing template:", err)
  /prebuilts/go/linux-x86/src/text/template/
example_test.go 10 "text/template"
14 // Define a template.
26 // Prepare some data to insert into the template.
37 // Create a new template and parse the letter into it.
38 t := template.Must(template.New("letter").Parse(letter))
40 // Execute the template for each recipient.
44 log.Println("executing template:", err)
  /prebuilts/misc/common/swig/include/2.0.11/octave/
std_common.i 14 template <> struct traits<Type > {
18 template <> struct traits_asval<Type > {
24 template <> struct traits_from<Type > {
34 /* Traits for enums. This is bit of a sneaky trick needed because a generic template specialization of enums
35 is not possible (unless using template meta-programming which SWIG doesn't support because of the explicit
36 instantiations required using %template). The STL containers define the 'front' method and the typemap
47 template <> struct traits_asval<Type > {
53 template <> struct traits_from<Type > {
  /prebuilts/misc/common/swig/include/2.0.11/python/
std_common.i 16 template <> struct traits<Type > {
20 template <> struct traits_asval<Type > {
26 template <> struct traits_from<Type > {
36 /* Traits for enums. This is bit of a sneaky trick needed because a generic template specialization of enums
37 is not possible (unless using template meta-programming which SWIG doesn't support because of the explicit
38 instantiations required using %template). The STL containers define the 'front' method and the typemap
49 template <> struct traits_asval<Type > {
55 template <> struct traits_from<Type > {
  /prebuilts/misc/common/swig/include/2.0.11/r/
std_common.i 15 template <> struct traits<Type > {
19 template <> struct traits_asval<Type > {
25 template <> struct traits_from<Type > {
35 /* Traits for enums. This is bit of a sneaky trick needed because a generic template specialization of enums
36 is not possible (unless using template meta-programming which SWIG doesn't support because of the explicit
37 instantiations required using %template). The STL containers define the 'front' method and the typemap
48 template <> struct traits_asval<Type > {
54 template <> struct traits_from<Type > {
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
std_common.i 17 template <> struct traits<Type > {
21 template <> struct traits_asval<Type > {
27 template <> struct traits_from<Type > {
37 /* Traits for enums. This is bit of a sneaky trick needed because a generic template specialization of enums
38 is not possible (unless using template meta-programming which SWIG doesn't support because of the explicit
39 instantiations required using %template). The STL containers define the 'front' method and the typemap
50 template <> struct traits_asval<Type > {
56 template <> struct traits_from<Type > {

Completed in 668 milliseconds

<<31323334353637383940>>