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

1 2 3 4 5 6 7

  /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/ARCMT/whitelisted/
header2.h 2 @interface I2 : NSObject
  /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/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/
types.pass.cpp 55 typedef std::istreambuf_iterator<wchar_t> I2;
56 static_assert((std::is_same<I2::iterator_category, std::input_iterator_tag>::value), "");
57 static_assert((std::is_same<I2::value_type, wchar_t>::value), "");
58 static_assert((std::is_same<I2::difference_type, std::char_traits<wchar_t>::off_type>::value), "");
59 LIBCPP_STATIC_ASSERT((std::is_same<I2::pointer, wchar_t*>::value), "");
60 static_assert((std::is_same<I2::reference, wchar_t>::value), "");
61 static_assert((std::is_same<I2::char_type, wchar_t>::value), "");
62 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), "");
63 static_assert((std::is_same<I2::int_type, I2::traits_type::int_type>::value), "")
    [all...]
  /external/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/
types.pass.cpp 47 typedef std::ostreambuf_iterator<wchar_t> I2;
49 static_assert((std::is_convertible<I2,
52 static_assert((std::is_same<I2::iterator_category, std::output_iterator_tag>::value), "");
53 static_assert((std::is_same<I2::value_type, void>::value), "");
54 static_assert((std::is_same<I2::difference_type, void>::value), "");
55 static_assert((std::is_same<I2::pointer, void>::value), "");
56 static_assert((std::is_same<I2::reference, void>::value), "");
58 static_assert((std::is_same<I2::char_type, wchar_t>::value), "");
59 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), "");
60 static_assert((std::is_same<I2::streambuf_type, std::wstreambuf>::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/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Vectorize/
VPlanTest.cpp 30 VPInstruction *I2 = new VPInstruction(1, {});
36 I2->insertBefore(I1);
37 CHECK_ITERATOR(VPBB1, I2, I1);
39 I3->insertBefore(I2);
40 CHECK_ITERATOR(VPBB1, I3, I2, I1);
45 VPInstruction *I2 = new VPInstruction(1, {});
50 VPBB1.appendRecipe(I2);
53 I2->eraseFromParent();
  /external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/java8/
DefaultInterfaceMethodWithStaticInitializer.java 65 interface I2 {
67 DefaultInterfaceMethodWithStaticInitializer D = RECORDER.register(I2.class);
75 public static class C implements I1, I2 {
82 return ImmutableList.of(I1.class.getSimpleName(), I2.class.getSimpleName());
104 interface I2 extends I1 {
105 DefaultInterfaceMethodWithStaticInitializer D = RECORDER.register(I2.class);
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.
116 public static class C implements I2, I1 {
125 return ImmutableList.of(I1.class.getSimpleName(), I2.class.getSimpleName())
    [all...]
  /external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/
types.pass.cpp 44 typedef std::ostream_iterator<unsigned, wchar_t> I2;
46 static_assert((std::is_convertible<I2,
49 static_assert((std::is_same<I2::iterator_category, std::output_iterator_tag>::value), "");
50 static_assert((std::is_same<I2::value_type, void>::value), "");
51 static_assert((std::is_same<I2::difference_type, void>::value), "");
52 static_assert((std::is_same<I2::pointer, void>::value), "");
53 static_assert((std::is_same<I2::reference, void>::value), "");
55 static_assert((std::is_same<I2::char_type, wchar_t>::value), "");
56 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), "");
57 static_assert((std::is_same<I2::ostream_type, std::wostream>::value), "")
    [all...]
  /external/libcxx/test/std/iterators/stream.iterators/istream.iterator/
types.pass.cpp 65 typedef std::istream_iterator<unsigned, wchar_t> I2; // unsigned is trivially destructible
67 static_assert((std::is_convertible<I2,
71 static_assert((std::is_same<I2::iterator_category, std::input_iterator_tag>::value), "");
72 static_assert((std::is_same<I2::value_type, unsigned>::value), "");
73 static_assert((std::is_same<I2::difference_type, std::ptrdiff_t>::value), "");
74 static_assert((std::is_same<I2::pointer, const unsigned*>::value), "");
75 static_assert((std::is_same<I2::reference, const unsigned&>::value), "");
77 static_assert((std::is_same<I2::char_type, wchar_t>::value), "");
78 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), "");
79 static_assert((std::is_same<I2::istream_type, std::wistream>::value), "")
    [all...]
  /external/strace/tests/
interactive_block.test 13 run_strace -I2 -echdir ../umovestr
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/
interactive_block.test 13 run_strace -I2 -echdir ../umovestr
sigblock.test 18 for i in '' -I1 -I2 -I3 -I4; do
  /external/strace/tests-mx32/
interactive_block.test 13 run_strace -I2 -echdir ../umovestr
  /external/webp/src/dsp/
mips_macro.h 42 I0, I1, I2, I3, I4, I5, I6, I7, I8, I9) \
44 "ulw %[" #O1 "], " #I2 "+" XSTR(I9) "*" #I6 "(%[" #I0 "]) \n\t" \
53 I0, I1, I2, I3, I4, I5, I6, I7) \
58 "mul %[" #O4 "], %[" #I2 "], %[kC2] \n\t" \
59 "mul %[" #O5 "], %[" #I2 "], %[kC1] \n\t" \
85 I0, I1, I2, I3) \
88 "sra %[" #O2 "], %[" #I2 "], 16 \n\t" \
98 I0, I1, I2, I3, I4, I5, I6, I7) \
103 "addq.ph %[" #O4 "], %[" #I2 "], %[" #I6 "] \n\t" \
104 "subq.ph %[" #O5 "], %[" #I2 "], %[" #I6 "] \n\t"
    [all...]
  /art/test/044-proxy/src/
NarrowingTest.java 25 interface I2 extends I1 {
32 I2 proxy = (I2) Proxy.newProxyInstance(NarrowingTest.class.getClassLoader(),
33 new Class<?>[] { I2.class },
55 System.out.println("Invoking foo using I2 type: " + proxy.foo());
64 // With an I2 invocation returning an integer is an exception.
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
InstructionTables.cpp 57 for (unsigned I2 = 0, E2 = SubUnit.NumUnits; I2 < E2; ++I2) {
58 ResourceRef ResourceUnit = std::make_pair(SubUnitIdx, 1U << I2);
  /external/llvm/include/llvm/ADT/
APSInt.h 290 static bool isSameValue(const APSInt &I1, const APSInt &I2) {
291 return !compareValues(I1, I2);
295 static int compareValues(const APSInt &I1, const APSInt &I2) {
296 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
297 return I1 == I2 ? 0 : I1 > I2 ? 1 : -1;
300 if (I1.getBitWidth() > I2.getBitWidth())
301 return compareValues(I1, I2.extend(I1.getBitWidth()));
302 else if (I2.getBitWidth() > I1.getBitWidth()
    [all...]
  /external/llvm/lib/IR/
Instruction.cpp 341 static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2,
343 assert(I1->getOpcode() == I2->getOpcode() &&
347 return AI->getAllocatedType() == cast<AllocaInst>(I2)->getAllocatedType() &&
348 (AI->getAlignment() == cast<AllocaInst>(I2)->getAlignment() ||
351 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
352 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() ||
354 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
355 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope();
357 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
358 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() |
    [all...]
  /external/clang/test/SemaCXX/
ms-interface.cpp 25 __interface I2 {
44 __interface I4 : I1, I2 {

Completed in 876 milliseconds

1 2 3 4 5 6 7