HomeSort by relevance Sort by last modified time
    Searched refs:T1 (Results 1 - 25 of 326) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
PR2919-builtin-types-compat-strips-crv.c 4 typedef const struct foo T1;
7 const T1) ? 1 : -1];
  /external/clang/test/CodeGen/
2007-02-04-AddrLValue.c 8 } T1;
16 T1 a[] =
struct-passing.c 8 typedef struct { int a[16]; } T1;
12 T1 __attribute__((const)) f2(void);
13 T1 __attribute__((pure)) f3(void);
14 void __attribute__((const)) f4(T1 a);
15 void __attribute__((pure)) f5(T1 a);
  /external/clang/test/SemaCXX/
instantiate-blocks.cpp 4 template <typename T, typename T1> void foo(T t, T1 r)
7 __block T1 byref_block_arg;
9 T1 (^block)(T) = ^ T1 (T arg) {
16 template <typename T, typename T1> void noret(T t, T1 r)
PR10243.cpp 10 struct T1 {
12 T1(const T1&) = default;
redeclared-alias-template.cpp 5 template<typename T1, typename T2> using A = T1; // expected-error {{too many template parameters in template redeclaration}}
7 template<typename T1, typename T2> using B = T1; // expected-note {{previous}}
8 template<typename T2, typename T1> using B = T1; // expected-error {{type alias template redefinition with different types}}
  /external/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
aligned_storage.disabled.cpp 19 typedef std::aligned_storage<10, 1 >::type T1;
21 static_assert(std::is_same<std::aligned_storage_t<10, 1>, T1>::value, "" );
23 static_assert(std::alignment_of<T1>::value == 1, "");
24 static_assert(sizeof(T1) == 10, "");
27 typedef std::aligned_storage<10, 2 >::type T1;
29 static_assert(std::is_same<std::aligned_storage_t<10, 2>, T1>::value, "" );
31 static_assert(std::alignment_of<T1>::value == 2, "");
32 static_assert(sizeof(T1) == 10, "");
35 typedef std::aligned_storage<10, 4 >::type T1;
37 static_assert(std::is_same<std::aligned_storage_t<10, 4>, T1>::value, "" )
    [all...]
aligned_union.pass.cpp 20 typedef std::aligned_union<10, char >::type T1;
22 static_assert(std::is_same<std::aligned_union_t<10, char>, T1>::value, "" );
24 static_assert(std::alignment_of<T1>::value == 1, "");
25 static_assert(sizeof(T1) == 10, "");
28 typedef std::aligned_union<10, short >::type T1;
30 static_assert(std::is_same<std::aligned_union_t<10, short>, T1>::value, "" );
32 static_assert(std::alignment_of<T1>::value == 2, "");
33 static_assert(sizeof(T1) == 10, "");
36 typedef std::aligned_union<10, int >::type T1;
38 static_assert(std::is_same<std::aligned_union_t<10, int>, T1>::value, "" )
    [all...]
  /external/clang/test/Parser/
cxx-template-argument.cpp 50 template<class T1, typename T2> struct Known { }; // expected-note 3 {{template is declared here}}
51 template<class T1, typename T2> struct X;
52 template<class T1, typename T2> struct ABC; // expected-note {{template is declared here}}
55 template<class T1, typename T2> struct foo :
56 UnknownBase<T1,T2> // expected-error {{unknown template name 'UnknownBase'}}
59 template<class T1, typename T2> struct foo2 :
60 UnknownBase<T1,T2>, // expected-error {{unknown template name 'UnknownBase'}}
61 Known<T1> // expected-error {{too few template arguments for class template 'Known'}}
64 template<class T1, typename T2> struct foo3 :
65 UnknownBase<T1,T2,ABC<T2,T1> > // expected-error {{unknown template name 'UnknownBase'}
    [all...]
cxx0x-member-initializers.cpp 31 template <typename, typename> struct T1 { enum {V};};
34 T1<int, int> a1 = T1<int, int>(), *a2 = new T1<int,int>;
37 bool d1 = T1<int, T1<int, int>>::V < 3, d2;
38 T1<int, int()> e = T1<int, int()>();
cxx-default-args.cpp 20 template <typename A, typename B> struct T1 { enum {V};};
25 void f1(T1<int, int> = T1<int, int>());
26 void f2(T1<int, double> = T1<int, double>(), T2<0, 5> = T2<0, 5>());
27 void f3(int a = T2<0, (T1<int, int>::V > 10) ? 5 : 6>::V, bool b = 4<5 );
29 void f5(bool a = 1 > T2<0, 0>::V, bool b = T1<int,int>::V < 3, int c = 0);
31 void f7(bool a = T1<int, bool>::V < 3);
32 void f8(int = func<0,1<2>(0), int = 1<0, T1<int,int>(int) = 0);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
p12.cpp 9 template<class T1, class ... Types> float &g(Tuple<T1, Types ...>); // #2
10 template<class T1, class ... Types> double &g(Tuple<T1, Types& ...>); // #3
20 template<class T1, class ... Types> float &h(int (*)(T1, Types ...)); // #2
21 template<class T1, class ... Types> double &h(int (*)(T1, Types& ...)); // #3
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p22.cpp 8 template<class T1, class ... Args> float& f(T1 a1, Args ... args);
9 template<class T1, class T2> double& f(T1 a1, T2 a2);
  /external/clang/test/CodeGenCXX/
2009-03-17-dbg.cpp 3 template <typename T1,typename T2>
4 inline void f(const T1&,const T2&) { }
6 template <typename T1,typename T2,void F(const T1&,const T2&)>
instantiate-blocks.cpp 18 template <typename T, typename T1> void foo(T t, T1 r)
21 __block T1 byref_block_arg;
23 T1 (^block)(char, T, T1, double) =
24 ^ T1 (char ch, T arg, T1 arg2, double d1) { byref_block_arg = arg2;
  /external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Callbacks.java 18 * @param <T1> the type of argument 1.
20 interface Callback1<T1> {
24 public void call(T1 arg1);
30 * @param <T1> the type of argument 1.
33 interface Callback2<T1, T2> {
37 public void call(T1 arg1, T2 arg2);
43 * @param <T1> the type of argument 1.
47 interface Callback3<T1, T2, T3> {
51 public void call(T1 arg1, T2 arg2, T3 arg3);
57 * @param <T1> the type of argument 1
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p10.cpp 4 typedef int& T1;
10 mutable T1 f3; // expected-error{{'mutable' cannot be applied to references}}
  /external/clang/test/CXX/temp/temp.param/
p10-0x.cpp 7 template<class T1, class T2 = int> using B2 = T1;
8 template<class T1 = int, class T2> using B2 = T1;
p10.cpp 6 template<class T1, class T2 = int> class B2;
7 template<class T1 = int, class T2> class B2;
p12.cpp 6 template<class T1,
9 template<class T1, typename T2> class B3;
10 template<class T1,
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.rel/
eq.pass.cpp 25 typedef std::tuple<> T1;
27 const T1 t1; local
29 assert(t1 == t2);
30 assert(!(t1 != t2));
33 typedef std::tuple<int> T1;
35 const T1 t1(1);
37 assert(!(t1 == t2));
38 assert(t1 != t2)
    [all...]
  /external/clang/test/CXX/special/class.inhctor/
p3.cpp 32 template<typename T> struct T1 : B1 {
35 template<typename T> struct T2 : T1<T> {
36 using T1<int>::T1;
38 template<typename T> struct T3 : T1<int> {
39 using T1<T>::T1;
42 friend T1<int>::T1(int);
43 friend T1<int>::T1(int, int)
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
partial-ordering.cpp 34 template<typename T1, typename T2, typename ...Rest>
35 int &f0(T1, T2, Rest...);
37 template<typename T1, typename T2>
38 float &f0(T1, T2);
45 template<typename T1, typename T2, typename ...Rest>
46 int &f1(T1, T2, Rest...);
48 template<typename T1, typename T2>
49 float &f1(T1, T2, ...);
55 template<typename T1, typename T2, typename ...Rest>
56 int &f2(T1, T2, Rest...)
    [all...]
  /external/libcxx/test/utilities/time/time.point/time.point.comparisons/
op_equal.pass.cpp 30 typedef std::chrono::time_point<Clock, Duration1> T1;
34 T1 t1(Duration1(3));
35 T1 t2(Duration1(3));
36 assert( (t1 == t2));
37 assert(!(t1 != t2));
40 T1 t1(Duration1(3));
41 T1 t2(Duration1(4));
42 assert(!(t1 == t2))
    [all...]
  /external/chromium_org/google_apis/drive/
task_util.h 33 template<typename T1>
34 struct ComposedCallback<void(T1)> {
37 const base::Callback<void(T1)>& callback,
38 T1 arg1) {
44 template<typename T1, typename T2>
45 struct ComposedCallback<void(T1, T2)> {
48 const base::Callback<void(T1, T2)>& callback,
49 T1 arg1, T2 arg2) {
55 template<typename T1, typename T2, typename D2>
56 struct ComposedCallback<void(T1, scoped_ptr<T2, D2>)>
    [all...]

Completed in 625 milliseconds

1 2 3 4 5 6 7 8 91011>>