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/swiftshader/third_party/llvm-7.0/llvm/test/MC/Hexagon/
missing_label.s 4 .I1:
7 # CHECK: .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
  /external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/java8/
DefaultInterfaceMethodWithStaticInitializer.java 55 interface I1 {
57 DefaultInterfaceMethodWithStaticInitializer C = RECORDER.register(I1.class);
75 public static class C implements I1, I2 {
82 return ImmutableList.of(I1.class.getSimpleName(), I2.class.getSimpleName());
96 interface I1 {
97 DefaultInterfaceMethodWithStaticInitializer C = RECORDER.register(I1.class);
104 interface I2 extends I1 {
113 * Loading this class will trigger the execution of the static initializers of I2 and I1.
114 * However, I1 will be loaded first, as I2 extends I1
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Vectorize/
VPlanTest.cpp 29 VPInstruction *I1 = new VPInstruction(0, {});
34 VPBB1.appendRecipe(I1);
36 I2->insertBefore(I1);
37 CHECK_ITERATOR(VPBB1, I2, I1);
40 CHECK_ITERATOR(VPBB1, I3, I2, I1);
44 VPInstruction *I1 = new VPInstruction(0, {});
49 VPBB1.appendRecipe(I1);
54 CHECK_ITERATOR(VPBB1, I1, I3);
56 I1->eraseFromParent();
  /external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/
types.pass.cpp 40 typedef std::istreambuf_iterator<char> I1;
41 static_assert((std::is_same<I1::iterator_category, std::input_iterator_tag>::value), "");
42 static_assert((std::is_same<I1::value_type, char>::value), "");
43 static_assert((std::is_same<I1::difference_type, std::char_traits<char>::off_type>::value), "");
44 LIBCPP_STATIC_ASSERT((std::is_same<I1::pointer, char*>::value), "");
45 static_assert((std::is_same<I1::reference, char>::value), "");
46 static_assert((std::is_same<I1::char_type, char>::value), "");
47 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
48 static_assert((std::is_same<I1::int_type, I1::traits_type::int_type>::value), "")
    [all...]
  /external/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/
types.pass.cpp 31 typedef std::ostreambuf_iterator<char> I1;
33 static_assert((std::is_convertible<I1,
36 static_assert((std::is_same<I1::iterator_category, std::output_iterator_tag>::value), "");
37 static_assert((std::is_same<I1::value_type, void>::value), "");
38 static_assert((std::is_same<I1::difference_type, void>::value), "");
39 static_assert((std::is_same<I1::pointer, void>::value), "");
40 static_assert((std::is_same<I1::reference, void>::value), "");
42 static_assert((std::is_same<I1::char_type, char>::value), "");
43 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
44 static_assert((std::is_same<I1::streambuf_type, std::streambuf>::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();
  /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 30 typedef std::ostream_iterator<double> I1;
32 static_assert((std::is_convertible<I1,
35 static_assert((std::is_same<I1::iterator_category, std::output_iterator_tag>::value), "");
36 static_assert((std::is_same<I1::value_type, void>::value), "");
37 static_assert((std::is_same<I1::difference_type, void>::value), "");
38 static_assert((std::is_same<I1::pointer, void>::value), "");
39 static_assert((std::is_same<I1::reference, void>::value), "");
41 static_assert((std::is_same<I1::char_type, char>::value), "");
42 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
43 static_assert((std::is_same<I1::ostream_type, std::ostream>::value), "")
    [all...]
  /external/libcxx/test/std/iterators/stream.iterators/istream.iterator/
types.pass.cpp 47 typedef std::istream_iterator<double> I1; // double is trivially destructible
49 static_assert((std::is_convertible<I1,
53 static_assert((std::is_same<I1::iterator_category, std::input_iterator_tag>::value), "");
54 static_assert((std::is_same<I1::value_type, double>::value), "");
55 static_assert((std::is_same<I1::difference_type, std::ptrdiff_t>::value), "");
56 static_assert((std::is_same<I1::pointer, const double*>::value), "");
57 static_assert((std::is_same<I1::reference, const double&>::value), "");
59 static_assert((std::is_same<I1::char_type, char>::value), "");
60 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
61 static_assert((std::is_same<I1::istream_type, std::istream>::value), "")
    [all...]
  /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...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
InstructionTables.cpp 52 for (unsigned I1 = 0; I1 < NumUnits; ++I1) {
53 unsigned SubUnitIdx = ProcResource.SubUnitsIdxBegin[I1];
  /external/llvm/unittests/Analysis/
UnrollAnalyzer.cpp 83 " br i1 %cond, label %loop.end, label %loop\n"
108 auto I1 = SimplifiedValuesVector[0].find(Y1);
109 EXPECT_TRUE(I1 != SimplifiedValuesVector[0].end());
110 EXPECT_EQ(cast<ConstantInt>((*I1).second)->getZExtValue(), 1U);
119 I1 = SimplifiedValuesVector[TripCount - 1].find(Y1);
120 EXPECT_TRUE(I1 != SimplifiedValuesVector[TripCount - 1].end());
121 EXPECT_EQ(cast<ConstantInt>((*I1).second)->getZExtValue(), TripCount);
143 " br i1 %exitcond.inner, label %outer.loop.latch, label %inner.loop\n"
146 " br i1 %exitcond.outer, label %exit, label %outer.loop\n"
175 auto I1 = SimplifiedValuesVector[0].find(Y1)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
UnrollAnalyzer.cpp 82 " br i1 %cond, label %loop.end, label %loop\n"
107 auto I1 = SimplifiedValuesVector[0].find(Y1);
108 EXPECT_TRUE(I1 != SimplifiedValuesVector[0].end());
109 EXPECT_EQ(cast<ConstantInt>((*I1).second)->getZExtValue(), 1U);
118 I1 = SimplifiedValuesVector[TripCount - 1].find(Y1);
119 EXPECT_TRUE(I1 != SimplifiedValuesVector[TripCount - 1].end());
120 EXPECT_EQ(cast<ConstantInt>((*I1).second)->getZExtValue(), TripCount);
142 " br i1 %exitcond.inner, label %outer.loop.latch, label %inner.loop\n"
145 " br i1 %exitcond.outer, label %exit, label %outer.loop\n"
174 auto I1 = SimplifiedValuesVector[0].find(Y1)
    [all...]
  /external/clang/test/CXX/special/class.inhctor/
elsewhere.cpp 18 struct I1 : B1 {
29 struct D1 : I1 {
  /external/strace/tests/
sigblock.test 18 for i in '' -I1 -I2 -I3 -I4; do
sigign.test 18 for i in '' -I1 -I2 -I3 -I4; do
  /external/strace/tests-m32/
sigblock.test 18 for i in '' -I1 -I2 -I3 -I4; do

Completed in 1008 milliseconds

1 2 3 4 5 6 7