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

1 2 3

  /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
complete-properties.m 4 @interface I1
14 @interface I2 : I1
  /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/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/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), "");
  /external/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/iterators/stream.iterators/ostreambuf.iterator/
types.pass.cpp 29 typedef std::ostreambuf_iterator<char> I1;
30 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::streambuf_type, std::streambuf>::value), "");
35 static_assert((std::is_same<I1::ostream_type, std::ostream>::value), "");
  /external/linux-tools-perf/perf-3.12.0/arch/blackfin/lib/
memcpy.S 74 I1 = P1;
75 R3 = [I1++];
80 R3 = [I1++];
84 MNOP || [P0++] = R3 || R3 = [I1++];
91 P1 = I1; /* in case there's something left, */
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 187 for (SetVector<Value *>::iterator I1 = Pointers.begin(), E = Pointers.end();
188 I1 != E; ++I1) {
190 Type *I1ElTy = cast<PointerType>((*I1)->getType())->getElementType();
193 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) {
198 switch (AA.alias(*I1, I1Size, *I2, I2Size)) {
200 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent());
203 PrintResults("MayAlias", PrintMayAlias, *I1, *I2, F.getParent());
206 PrintResults("PartialAlias", PrintPartialAlias, *I1, *I2,
210 PrintResults("MustAlias", PrintMustAlias, *I1, *I2, F.getParent())
    [all...]
  /external/llvm/lib/Transforms/Utils/
AddDiscriminators.cpp 35 // br i1 %cmp, label %if.end, label %if.then, !dbg !15
109 /// with successor B2. The last instruction I1 in B1 and the first
116 /// br i1 %cmp, label %if.then, label %if.end, !dbg !10
151 /// If the last instruction I1 of a block B1 is at the same file and line
155 /// different discriminator number than I1.
208 for (BasicBlock::iterator I1(*First), E1 = Succ->end(); I1 != E1;
209 ++I1) {
210 if (I1->getDebugLoc() != FirstLoc) break;
211 I1->setDebugLoc(newDebugLoc)
    [all...]
  /external/clang/test/CXX/special/class.inhctor/
elsewhere.cpp 18 struct I1 : B1 {
29 struct D1 : I1 {
  /external/lldb/test/functionalities/data-formatter/data-formatter-script/
main.cpp 31 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) :
32 first_cool(I1,F1,C1),
  /art/test/044-proxy/src/
NarrowingTest.java 21 interface I1 {
25 interface I2 extends I1 {
54 I1 proxyAsParent = proxy;
55 System.out.println("Invoking foo using I1 type: " + proxyAsParent.foo());
  /external/llvm/lib/Target/Hexagon/
HexagonCopyToCombine.cpp 82 MachineInstr *findPairable(MachineInstr *I1, bool &DoInsertAtI1);
86 void combine(MachineInstr *I1, MachineInstr *I2,
89 bool isSafeToMoveTogether(MachineInstr *I1, MachineInstr *I2,
231 /// isSafeToMoveTogether - Returns true if it is safe to move I1 next to I2 such
233 bool HexagonCopyToCombine::isSafeToMoveTogether(MachineInstr *I1,
242 // It is not safe to move I1 and I2 into one combine if I2 has a true
243 // dependence on I1.
244 if (I2UseReg && I1->modifiesRegister(I2UseReg, TRI))
249 // First try to move I2 towards I1.
251 // A reverse_iterator instantiated like below starts before I2, and I1
    [all...]
  /external/llvm/include/llvm/ADT/
APSInt.h 262 static bool isSameValue(const APSInt &I1, const APSInt &I2) {
263 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
264 return I1 == I2;
267 if (I1.getBitWidth() > I2.getBitWidth())
268 return isSameValue(I1, I2.extend(I1.getBitWidth()));
269 else if (I2.getBitWidth() > I1.getBitWidth())
270 return isSameValue(I1.extend(I2.getBitWidth()), I2);
274 if (I1.isSigned())
    [all...]
  /external/clang/test/Sema/
ms_bitfield_layout.c 234 typedef struct I1 {
237 } I1;
239 // CHECK: Type: struct I1
264 sizeof(I1) +
compound-literal.c 30 struct Incomplete* I1 = &(struct Incomplete){1, 2, 3}; // expected-error {{variable has incomplete type}}

Completed in 355 milliseconds

1 2 3