HomeSort by relevance Sort by last modified time
    Searched refs:T1 (Results 1 - 25 of 447) 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/stlport/test/compiler/
partial_spec.cpp 17 template <class T1>
20 template <class T1>
21 int func(T1 p1);
23 template <class T1>
24 int func(template_struct<T1>);
ttei6.cpp 15 template <typename T1>
26 template <typename T1, typename T2>
29 typedef typename A<T1>:: template B<T2>::_Type ABType;
  /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}}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
aligned_storage.pass.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/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/srec/tools/grxmlcompile/
hashmap.h 29 template <typename T1, typename T2>
33 //typedef T1 MapValue;
36 bool insert( T1 const & index, T2 const & value);
37 bool remove( T1 const & index);
40 bool getFirst( T1 *index, T2 *value );
41 bool getNext( T1 *index, T2 *value );
42 bool getValue( T1 const & index, T2 *value); //returns value
43 bool getIndex( T2 const & value, T1 *index ); //returns index
47 typename std::map<T1,T2>::iterator begin();
48 typename std::map<T1,T2>::iterator end()
    [all...]
hashmap.cpp 38 template <typename T1, typename T2>
39 HashMap<T1,T2>::HashMap():
44 template <typename T1, typename T2>
45 void HashMap<T1,T2>::setName(std::string s)
50 template <typename T1, typename T2>
51 bool HashMap<T1,T2>::insert( T1 const & index, T2 const & value)
54 pair<typename std::map<T1,T2>::iterator,bool> result = m_Map.insert( make_pair(index, value) );
62 template <typename T1, typename T2>
63 bool HashMap<T1,T2>::remove( T1 const & index
    [all...]
  /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/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p10.cpp 5 typedef int& T1;
11 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;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
if.hpp 31 , typename T1
36 typedef T1 type;
40 typename T1
43 struct if_c<false,T1,T2>
51 typename BOOST_MPL_AUX_NA_PARAM(T1)
61 BOOST_MPL_AUX_VALUE_WKND(T1)::value
63 BOOST_MPL_AUX_STATIC_CAST(bool, BOOST_MPL_AUX_VALUE_WKND(T1)::value)
72 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,if_,(T1,T2,T3))
84 template< typename T1, typename T2 > struct result_
86 typedef T1 type
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/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...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
apply.hpp 40 typename F, typename T1
46 , T1
52 , (F, T1)
57 typename F, typename T1
59 struct apply< F,T1,na,na,na,na >
60 : apply1< F,T1 >
65 typename F, typename T1, typename T2
71 , T1, T2
77 , (F, T1, T2)
82 typename F, typename T1, typename T
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
armCOMM_BitDec_s.h 106 ;// $T1,$T2,$T3 - registers that must be preserved between calls to
125 M_BD_INIT1 $T1, $T2, $T3
127 LDRB $T1, [$pBitStream, #1]
133 M_BD_INIT2 $T1, $T2, $T3
134 ORR $T2, $T2, $T1, LSL #8
152 ;// $T1 - corrupted temp/scratch register
177 ;// $T1 - corrupted temp/scratch register
183 M_BD_LOOK16 $Symbol, $N, $T1
200 ;// $T1 - corrupted temp/scratch register
206 M_BD_SKIP8 $N, $T1
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
armCOMM_BitDec_s.h 106 ;// $T1,$T2,$T3 - registers that must be preserved between calls to
125 M_BD_INIT1 $T1, $T2, $T3
127 LDRB $T1, [$pBitStream, #1]
133 M_BD_INIT2 $T1, $T2, $T3
134 ORR $T2, $T2, $T1, LSL #8
152 ;// $T1 - corrupted temp/scratch register
177 ;// $T1 - corrupted temp/scratch register
183 M_BD_LOOK16 $Symbol, $N, $T1
200 ;// $T1 - corrupted temp/scratch register
206 M_BD_SKIP8 $N, $T1
    [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...]

Completed in 381 milliseconds

1 2 3 4 5 6 7 8 91011>>