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

1 2 3 4 5 6 7

  /external/clang/test/CodeCompletion/
namespace.cpp 5 namespace I1 { }
6 namespace I4 = I1;
8 namespace I1 { }
12 // CHECK-CC1: I1
namespace-alias.cpp 8 namespace I1 { }
9 namespace I4 = I1;
11 namespace I1 { }
15 // CHECK-CC1: I1
using-namespace.cpp 8 namespace I1 { }
9 namespace I4 = I1;
11 namespace I1 { }
16 // CHECK-CC1: I1
using.cpp 8 namespace I1 { }
9 namespace I4 = I1;
11 namespace I1 { }
18 // CHECK-CC1: I1
  /external/clang/test/CXX/class/class.nest/
p3.cpp 11 class I1;
13 class I1 { };
  /external/clang/test/ARCMT/whitelisted/
header1.h 2 @interface I1 : NSObject
5 +(id)i1; variable
  /external/clang/test/Index/
complete-categories.m 4 @interface I1 @end
8 @interface I1(Cat1) @end
9 @interface I1(Cat2) @end
10 @interface I1(Cat3) @end
18 @implementation I1(Cat2) @end
19 @implementation I1(Cat3) @end
  /toolchain/binutils/binutils-2.25/opcodes/
mips16-opc.c 176 #define I1 INSN_ISA1
185 {"nop", "", 0x6500, 0xffff, 0, RD_16, I1, 0, 0 }, /* move $0,$Z */
186 {"la", "x,A", 0x0800, 0xf800, WR_1, RD_PC, I1, 0, 0 },
187 {"abs", "x,w", 0, (int) M_ABS, INSN_MACRO, 0, I1, 0, 0 },
188 {"addiu", "y,x,4", 0x4000, 0xf810, WR_1|RD_2, 0, I1, 0, 0 },
189 {"addiu", "x,k", 0x4800, 0xf800, MOD_1, 0, I1, 0, 0 },
190 {"addiu", "S,K", 0x6300, 0xff00, 0, MOD_SP, I1, 0, 0 },
191 {"addiu", "S,S,K", 0x6300, 0xff00, 0, MOD_SP, I1, 0, 0 },
192 {"addiu", "x,P,V", 0x0800, 0xf800, WR_1, RD_PC, I1, 0, 0 },
193 {"addiu", "x,S,V", 0x0000, 0xf800, WR_1, RD_SP, I1, 0, 0 }
    [all...]
micromips-opc.c 250 /* Reuse INSN_ISA1 for 32-bit microMIPS ISA. All instructions in I1
254 #define I1 INSN_ISA1
288 {"pref", "k,~(b)", 0x60002000, 0xfc00f000, RD_3|LM, 0, I1, 0, 0 },
289 {"pref", "k,A(b)", 0, (int) M_PREF_AB, INSN_MACRO, 0, I1, 0, 0 },
290 {"prefx", "h,t(b)", 0x540001a0, 0xfc0007ff, RD_2|RD_3|FP_S|LM, 0, I1, 0, 0 },
291 {"nop", "", 0x0c00, 0xffff, 0, INSN2_ALIAS, I1, 0, 0 },
292 {"nop", "", 0x00000000, 0xffffffff, 0, INSN2_ALIAS, I1, 0, 0 }, /* sll */
293 {"ssnop", "", 0x00000800, 0xffffffff, 0, INSN2_ALIAS, I1, 0, 0 }, /* sll */
294 {"ehb", "", 0x00001800, 0xffffffff, 0, INSN2_ALIAS, I1, 0, 0 }, /* sll */
295 {"pause", "", 0x00002800, 0xffffffff, 0, INSN2_ALIAS, I1, 0, 0 }, /* sll *
    [all...]
  /external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/
types.pass.cpp 35 typedef std::istreambuf_iterator<char> I1;
36 static_assert((std::is_convertible<I1,
39 static_assert((std::is_same<I1::char_type, char>::value), "");
40 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
41 static_assert((std::is_same<I1::int_type, I1::traits_type::int_type>::value), "");
42 static_assert((std::is_same<I1::streambuf_type, std::streambuf>::value), "");
43 static_assert((std::is_same<I1::istream_type, std::istream>::value), "");
44 static_assert((std::is_nothrow_default_constructible<I1>::value), "" );
45 static_assert((std::is_trivially_copy_constructible<I1>::value), "" )
    [all...]
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/
p6-0x.cpp 8 typedef int I1, I2;
14 q->I1::~I2();
p6.cpp 8 typedef int I1, I2;
14 q->I1::~I2();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istreambuf.iterator/
types.pass.cpp 32 typedef std::istreambuf_iterator<char> I1;
33 static_assert((std::is_convertible<I1,
36 static_assert((std::is_same<I1::char_type, char>::value), "");
37 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
38 static_assert((std::is_same<I1::int_type, I1::traits_type::int_type>::value), "");
39 static_assert((std::is_same<I1::streambuf_type, std::streambuf>::value), "");
40 static_assert((std::is_same<I1::istream_type, std::istream>::value), "");
  /external/clang/test/SemaCXX/
ms-interface.cpp 3 __interface I1 {
5 I1();
7 ~I1();
13 // expected-error@+1 {{nested class I1::(anonymous) is not permitted within an interface type}}
44 __interface I4 : I1, I2 {
50 // expected-error@+1 {{interface type cannot inherit from non-public 'interface I1'}}
51 __interface I5 : private I1 {
  /external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/
types.pass.cpp 28 typedef std::ostream_iterator<double> I1;
29 static_assert((std::is_convertible<I1,
31 static_assert((std::is_same<I1::char_type, char>::value), "");
32 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
33 static_assert((std::is_same<I1::ostream_type, std::ostream>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istream.iterator/
types.pass.cpp 28 typedef std::istream_iterator<double> I1;
29 static_assert((std::is_convertible<I1,
32 static_assert((std::is_same<I1::char_type, char>::value), "");
33 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
34 static_assert((std::is_same<I1::istream_type, std::istream>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostream.iterator/
types.pass.cpp 28 typedef std::ostream_iterator<double> I1;
29 static_assert((std::is_convertible<I1,
31 static_assert((std::is_same<I1::char_type, char>::value), "");
32 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
33 static_assert((std::is_same<I1::ostream_type, std::ostream>::value), "");
  /external/libcxx/test/std/iterators/stream.iterators/istream.iterator/
types.pass.cpp 33 typedef std::istream_iterator<double> I1;
34 static_assert((std::is_convertible<I1,
37 static_assert((std::is_same<I1::char_type, char>::value), "");
38 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
39 static_assert((std::is_same<I1::istream_type, std::istream>::value), "");
40 static_assert( std::is_trivially_copy_constructible<I1>::value, "");
41 static_assert( std::is_trivially_destructible<I1>::value, "");
  /external/valgrind/cachegrind/tests/
chdir.stderr.exp 4 I1 misses:
6 I1 miss rate:
dlclose.stderr.exp 4 I1 misses:
6 I1 miss rate:
notpower2.stderr.exp 4 I1 misses:
6 I1 miss rate:
wrap5.stderr.exp 4 I1 misses:
6 I1 miss rate:
  /external/valgrind/cachegrind/tests/x86/
fpu-28-108.stderr.exp 4 I1 misses:
6 I1 miss rate:
  /external/webp/src/dsp/
mips_macro.h 22 // O0[31..16 | 15..0] = I0[31..16 | 15..0] + I1[31..16 | 15..0]
23 // O1[31..16 | 15..0] = I0[31..16 | 15..0] - I1[31..16 | 15..0]
27 I0, I1) \
28 "addq.ph %[" #O0 "], %[" #I0 "], %[" #I1 "] \n\t" \
29 "subq.ph %[" #O1 "], %[" #I0 "], %[" #I1 "] \n\t"
35 I0, I1) \
37 "lh %[" #O1 "], " #I1 "(%[in]) \n\t"
40 // I1..I9 - offsets in bytes
42 I0, I1, I2, I3, I4, I5, I6, I7, I8, I9) \
43 "ulw %[" #O0 "], " #I1 "+" XSTR(I9) "*" #I5 "(%[" #I0 "]) \n\t"
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
parallel5.s 4 R0 = W[P1++] (X) || R1.L = W[I1++];

Completed in 1967 milliseconds

1 2 3 4 5 6 7