Searched
full:template (Results
4551 -
4575 of
20596) sorted by null
<<181182183184185186187188189190>>
| /external/clang/test/CodeGenCXX/ |
| internal-linkage.cpp | 4 template<typename T> struct X { X() {} }; 59 template <typename T> class klass {
|
| typeid-cxx11.cpp | 12 template<typename T> void *make_impl() { return new T; } 13 template<typename T> constexpr Item item(const char *name) {
|
| /external/clang/test/CodeGenObjCXX/ |
| message.mm | 13 template <class T> void foo() { 17 template void foo<int>();
|
| /external/clang/test/FixIt/ |
| typo-crash.cpp | 6 template<typename T> void template_id1() { // expected-note {{'template_id1' declared here}} \ 8 template_id2<> t; // expected-error {{no template named 'template_id2'; did you mean 'template_id1'?}} \
|
| /external/clang/test/Index/ |
| ms-if-exists.cpp | 0 template<typename T> 14 // RUN: c-index-test -test-annotate-tokens=%s:3:1:11:3 -fms-extensions -fno-ms-compatibility -fno-delayed-template-parsing %s | FileCheck %s
|
| /external/clang/test/Modules/ |
| merge-class-definition-visibility.cpp | 9 template<typename T> struct X { T t; }; 15 // which is necessary to make the definition of A visible in the template
|
| /external/clang/test/OpenMP/ |
| parallel_sections_ast_print.cpp | 11 template <class T> 18 // CHECK: template <class T = int> struct S { 22 // CHECK: template <class T = long> struct S { 26 // CHECK: template <class T> struct S { 31 template <typename T, int C> 53 // CHECK: template <typename T = int, int C = 5> int tmain(int argc, int *argv) { 71 // CHECK: template <typename T = long, int C = 1> long tmain(long argc, long *argv) { 89 // CHECK: template <typename T, int C> T tmain(T argc, T *argv) {
|
| task_ast_print.cpp | 11 template <class T> 18 // CHECK: template <class T = int> struct S { 22 // CHECK: template <class T = long> struct S { 26 // CHECK: template <class T> struct S { 31 template <typename T, int C> 46 // CHECK: template <typename T = int, int C = 5> int tmain(int argc, int *argv) { 57 // CHECK: template <typename T = long, int C = 1> long tmain(long argc, long *argv) { 68 // CHECK: template <typename T, int C> T tmain(T argc, T *argv) {
|
| teams_ast_print.cpp | 11 template <class T> 18 // CHECK: template <class T = int> struct S { 22 // CHECK: template <class T = long> struct S { 26 // CHECK: template <class T> struct S { 31 template <typename T, int C> 48 // CHECK: template <typename T = int, int C = 5> int tmain(int argc, int *argv) { 61 // CHECK: template <typename T = long, int C = 1> long tmain(long argc, long *argv) { 74 // CHECK: template <typename T, int C> T tmain(T argc, T *argv) {
|
| /external/clang/test/PCH/ |
| cxx-variadic-templates.cpp | 15 template<int> struct A {}; 16 template<int> struct B {};
|
| cxx1y-default-initializer.cpp | 14 template<typename T> constexpr A make() { return A {}; } 15 template<typename T> constexpr A make(T t) { return A { t }; }
|
| macro-undef.cpp | 9 template<typename T> 15 template<typename T>
|
| /external/clang/test/Parser/ |
| cxx-using-declaration.cpp | 33 template <typename TYPE> int funcE(TYPE arg) { return(arg); } 36 using E::funcE<int>; // expected-error{{using declaration cannot refer to a template specialization}}
|
| cxx0x-in-cxx98.cpp | 5 template<typename ...Args> // expected-warning{{variadic templates are a C++11 extension}} 32 struct Conv { template<typename T> operator T(); };
|
| cxx0x-member-initializers.cpp | 31 template <typename, typename> struct T1 { enum {V};}; 32 template <int, int> struct T2 { enum {V};};
|
| /external/clang/test/SemaCXX/ |
| alignof-sizeof-reference.cpp | 20 template<typename T> void f_template(); // expected-note{{possible target for call}} 21 template<typename T> void f_template(T*); // expected-note{{possible target for call}}
|
| attr-flatten.cpp | 8 template <typename T> 24 template <typename T>
|
| attr-no-split-stack.cpp | 8 template <typename T> 24 template <typename T>
|
| builtins.cpp | 12 template<int (*Compare)(const char *s1, const char *s2)> 17 template int equal<&__builtin_strcmp>(const char*, const char*); // expected-error {{builtin functions must be directly called}} expected-error {{expected unqualified-id}} expected-error {{expected ')'}} expected-note {{to match this '('}}
|
| function-type-qual.cpp | 33 // Test template instantiation of decayed array types. Not really related to 35 template <typename T> void arrayDecay(const T a[]) { }
|
| unused.cpp | 19 template<typename T> 57 template <typename T>
|
| /external/compiler-rt/lib/sanitizer_common/ |
| sanitizer_stackdepotbase.h | 24 template <class Node, int kReservedBits, int kTabSizeLog> 60 template <class Node, int kReservedBits, int kTabSizeLog> 73 template <class Node, int kReservedBits, int kTabSizeLog> 89 template <class Node, int kReservedBits, int kTabSizeLog> 96 template <class Node, int kReservedBits, int kTabSizeLog> 136 template <class Node, int kReservedBits, int kTabSizeLog> 160 template <class Node, int kReservedBits, int kTabSizeLog> 167 template <class Node, int kReservedBits, int kTabSizeLog>
|
| /external/compiler-rt/lib/tsan/rtl/ |
| tsan_interface_atomic.cc | 81 template<typename T> T func_xchg(volatile T *v, T op) { 88 template<typename T> T func_add(volatile T *v, T op) { 92 template<typename T> T func_sub(volatile T *v, T op) { 96 template<typename T> T func_and(volatile T *v, T op) { 100 template<typename T> T func_or(volatile T *v, T op) { 104 template<typename T> T func_xor(volatile T *v, T op) { 108 template<typename T> T func_nand(volatile T *v, T op) { 120 template<typename T> T func_cas(volatile T *v, T cmp, T xch) { 188 template<typename T> 233 template<typename T [all...] |
| /external/curl/packages/ |
| README | 10 information, template, scripts and docs. The files herein should be of use for 27 template files for the package process.
|
| /external/deqp/external/vulkancts/framework/vulkan/ |
| vkPrograms.hpp | 65 template<typename Program> 111 template<typename Program> 116 template<typename Program> 122 template<typename Program> 130 template<typename Program> 140 template<typename Program> 148 template<typename Program> 154 template<typename Program>
|
Completed in 1443 milliseconds
<<181182183184185186187188189190>>