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

1 2 3

  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
p3.cpp 5 typedef int I2;
6 typedef I2 I; // expected-note {{previous definition is here}}
  /external/clang/test/CXX/class/class.nest/
p3.cpp 12 class I2;
15 class E::I2 { };
  /external/clang/test/Index/
complete-categories.m 5 @interface I2 @end
6 @interface I3 : I2 @end
12 @interface I2 (Cat2) @end
13 @interface I2 (Cat3) @end
14 @interface I2 (Cat2) @end
complete-properties.m 14 @interface I2 : I1
19 @implementation I2
24 @interface I3 : I2
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/
p6-0x.cpp 9 typedef int I1, I2;
15 q->I1::~I2();
p6.cpp 7 typedef int I1, I2;
13 q->I1::~I2();
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/stream.iterators/istreambuf.iterator/
types.pass.cpp 42 typedef std::istreambuf_iterator<wchar_t> I2;
43 static_assert((std::is_convertible<I2,
46 static_assert((std::is_same<I2::char_type, wchar_t>::value), "");
47 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), "");
48 static_assert((std::is_same<I2::int_type, I2::traits_type::int_type>::value), "");
49 static_assert((std::is_same<I2::streambuf_type, std::wstreambuf>::value), "");
50 static_assert((std::is_same<I2::istream_type, std::wistream>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/stream.iterators/istream.iterator/
types.pass.cpp 35 typedef std::istream_iterator<unsigned, wchar_t> I2;
36 static_assert((std::is_convertible<I2,
39 static_assert((std::is_same<I2::char_type, wchar_t>::value), "");
40 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), "");
41 static_assert((std::is_same<I2::istream_type, std::wistream>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/stream.iterators/ostream.iterator/
types.pass.cpp 34 typedef std::ostream_iterator<unsigned, wchar_t> I2;
35 static_assert((std::is_convertible<I2,
37 static_assert((std::is_same<I2::char_type, wchar_t>::value), "");
38 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), "");
39 static_assert((std::is_same<I2::ostream_type, std::wostream>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/stream.iterators/ostreambuf.iterator/
types.pass.cpp 37 typedef std::ostreambuf_iterator<wchar_t> I2;
38 static_assert((std::is_convertible<I2,
40 static_assert((std::is_same<I2::char_type, wchar_t>::value), "");
41 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), "");
42 static_assert((std::is_same<I2::streambuf_type, std::wstreambuf>::value), "");
43 static_assert((std::is_same<I2::ostream_type, std::wostream>::value), "");
  /external/clang/test/SemaCXX/
ms-interface.cpp 25 __interface I2 {
44 __interface I4 : I1, I2 {
  /external/llvm/include/llvm/ADT/
APSInt.h 268 static bool isSameValue(const APSInt &I1, const APSInt &I2) {
269 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
270 return I1 == I2;
273 if (I1.getBitWidth() > I2.getBitWidth())
274 return isSameValue(I1, I2.extend(I1.getBitWidth()));
275 else if (I2.getBitWidth() > I1.getBitWidth())
276 return isSameValue(I1.extend(I2.getBitWidth()), I2);
284 return APSInt(I1, true) == I2;
    [all...]
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_vector.java 167 Int2 I2 = s.get_u16_2();
168 if (I2.x != 1 || I2.y != 2) {
171 I2.x = 2;
172 I2.y = 3;
173 s.set_u16_2(I2);
194 I2 = s.get_i32_2();
195 if (I2.x != 1 || I2.y != 2) {
198 I2.x = 2
    [all...]
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_vector.java 167 Int2 I2 = s.get_u16_2();
168 if (I2.x != 1 || I2.y != 2) {
171 I2.x = 2;
172 I2.y = 3;
173 s.set_u16_2(I2);
194 I2 = s.get_i32_2();
195 if (I2.x != 1 || I2.y != 2) {
198 I2.x = 2
    [all...]
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
UT_vector.java 167 Int2 I2 = s.get_u16_2();
168 if (I2.x != 1 || I2.y != 2) {
171 I2.x = 2;
172 I2.y = 3;
173 s.set_u16_2(I2);
194 I2 = s.get_i32_2();
195 if (I2.x != 1 || I2.y != 2) {
198 I2.x = 2
    [all...]
  /external/clang/test/Sema/
compound-literal.c 32 struct Incomplete* I2 = (struct foo[x]){1, 2, 3}; // expected-error {{variable-sized object may not be initialized}}
warn-duplicate-enum.c 57 I2,
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 178 const Instruction *I2) const;
287 const Instruction *I2) const {
292 if (I1->getOpcode() != I2->getOpcode() ||
293 I1->getNumOperands() != I2->getNumOperands() ||
294 !isEquivalentType(I1->getType(), I2->getType()) ||
295 !I1->hasSameSubclassOptionalData(I2))
302 I2->getOperand(i)->getType()))
307 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
308 LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() &&
309 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &
    [all...]
ArgumentPromotion.cpp 776 I2 = NF->arg_begin(); I != E; ++I) {
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 177 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) {
179 Type *I2ElTy =cast<PointerType>((*I2)->getType())->getElementType();
182 switch (AA.alias(*I1, I1Size, *I2, I2Size)) {
184 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent());
187 PrintResults("MayAlias", PrintMayAlias, *I1, *I2, F.getParent());
190 PrintResults("PartialAlias", PrintPartialAlias, *I1, *I2,
194 PrintResults("MustAlias", PrintMustAlias, *I1, *I2, F.getParent());
  /external/qemu/
mips-dis.c     [all...]
  /external/llvm/lib/CodeGen/
BranchFolding.cpp 308 MachineBasicBlock::iterator &I2) {
310 I2 = MBB2->end();
313 while (I1 != MBB1->begin() && I2 != MBB2->begin()) {
314 --I1; --I2;
318 while (I2->isDebugValue()) {
319 if (I2==MBB2->begin())
320 // I1==DBG at begin; I2==DBG at begin
322 --I2;
324 ++I2;
325 // I1==DBG at begin; I2==non-DBG, or first of DBGs not at begi
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-function-1.cpp 161 template<typename T, int I1, int I2> struct Switch1 {
165 case I2: return z; // expected-error{{duplicate}}
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ComputeTest.java 131 Int2 i2 = new Int2(); local
132 i2.x = 1;
133 i2.y = 2;
134 i2 = new Int2(1, 2);
135 assertTrue(i2.x == 1);
136 assertTrue(i2.y == 2);
287 avtItem.i2.x = 1;
288 avtItem.i2.y = 2;
536 Int2 I2 = s.get_u16_2();
537 if (I2.x != 1 || I2.y != 2)
812 int i2[] = new int[1]; local
    [all...]
  /external/clang/test/Misc/
diag-template-diffing.cpp 70 class I2{};
71 void set2(I2<int, int>) {};
73 set2(I2<double, int, int>());
76 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'I2<double, [...], int>' to 'I2<int, [...], (default) void>' for 1st argument
78 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'I2<double, int, int>' to 'I2<int, int, (default) void>' for 1st argument
81 // CHECK-ELIDE-TREE: I2<
87 // CHECK-NOELIDE-TREE: I2<
    [all...]

Completed in 1496 milliseconds

1 2 3