Searched refs:I2 (Results 1 - 25 of 95) sorted by relevance

1234

/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp3.cpp5 typedef int I2; typedef
6 typedef I2 I; // expected-note {{previous definition is here}}
/external/clang/test/ARCMT/whitelisted/
H A Dheader2.h2 @interface I2 : NSObject
/external/clang/test/CXX/class/class.nest/
H A Dp3.cpp12 class I2;
15 class E::I2 { }; class in class:example::E
/external/clang/test/Index/
H A Dcomplete-categories.m5 @interface I2 @end
6 @interface I3 : I2 @end
12 @interface I2 (Cat2) @end
13 @interface I2 (Cat3) @end
14 @interface I2 (Cat2) @end
H A Dcomplete-properties.m14 @interface I2 : I1
19 @implementation I2
24 @interface I3 : I2
H A Dcomplete-method-decls.m88 @interface I2
89 -(nonnull I2 *)produceI2:(nullable I2 *)i2;
95 @implementation I2
229 // CHECK-NULLABILITY: ObjCInstanceMethodDecl:{LeftParen (}{Text I2 *}{RightParen )}{TypedText produceI2}{TypedText :}{LeftParen (}{Text I2 *}{RightParen )}{Text i2} (40)
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/
H A Dtypes.pass.cpp55 typedef std::istreambuf_iterator<wchar_t> I2; typedef
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
[all...]
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/
H A Dp6-0x.cpp8 typedef int I1, I2; typedef
14 q->I1::~I2();
H A Dp6.cpp8 typedef int I1, I2; typedef
14 q->I1::~I2();
/external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/
H A Dtypes.pass.cpp34 typedef std::ostream_iterator<unsigned, wchar_t> I2; typedef
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), "");
/external/libcxx/test/std/iterators/stream.iterators/istream.iterator/
H A Dtypes.pass.cpp55 typedef std::istream_iterator<unsigned, wchar_t> I2; // unsigned is trivially destructible typedef
56 static_assert((std::is_convertible<I2,
59 static_assert((std::is_same<I2::char_type, wchar_t>::value), "");
60 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), "");
61 static_assert((std::is_same<I2::istream_type, std::wistream>::value), "");
62 static_assert( std::is_trivially_copy_constructible<I2>::value, "");
63 static_assert( std::is_trivially_destructible<I2>::value, "");
/external/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/
H A Dtypes.pass.cpp37 typedef std::ostreambuf_iterator<wchar_t> I2; typedef
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/webp/src/dsp/
H A Dmips_macro.h42 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 "],
[all...]
/external/llvm/lib/IR/
H A DInstruction.cpp341 static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2, argument
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)
[all...]
/external/clang/test/SemaCXX/
H A Dms-interface.cpp25 __interface I2 {
44 __interface I4 : I1, I2 {
/external/guava/guava-tests/benchmark/com/google/common/base/
H A DObjectsBenchmark.java31 private static final Integer I2 = 3; field in class:ObjectsBenchmark
75 dummy += Objects.hashCode(I2, S1, D1, S2, I0);
76 dummy += Objects.hashCode(D0, I1, S3, I2, S0);
/external/llvm/unittests/Analysis/
H A DUnrollAnalyzer.cpp113 auto I2 = SimplifiedValuesVector[0].find(Y2); local
114 EXPECT_TRUE(I2 != SimplifiedValuesVector[0].end());
115 EXPECT_FALSE(cast<ConstantInt>((*I2).second)->getZExtValue());
124 I2 = SimplifiedValuesVector[TripCount - 1].find(Y2);
125 EXPECT_TRUE(I2 != SimplifiedValuesVector[TripCount - 1].end());
126 EXPECT_TRUE(cast<ConstantInt>((*I2).second)->getZExtValue());
177 auto I2 = SimplifiedValuesVector[0].find(Y2); local
178 EXPECT_TRUE(I2 == SimplifiedValuesVector[0].end());
220 auto I2 = SimplifiedValuesVector[5].find(Y2); local
221 EXPECT_TRUE(I2 !
315 auto I2 = SimplifiedValuesVector[5].find(Y2); local
[all...]
/external/llvm/include/llvm/ADT/
H A DAPSInt.h290 static bool isSameValue(const APSInt &I1, const APSInt &I2) { argument
291 return !compareValues(I1, I2);
295 static int compareValues(const APSInt &I1, const APSInt &I2) { argument
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
[all...]
/external/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp149 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) {
151 Type *I2ElTy =cast<PointerType>((*I2)->getType())->getElementType();
154 switch (AA.alias(*I1, I1Size, *I2, I2Size)) {
156 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent());
160 PrintResults("MayAlias", PrintMayAlias, *I1, *I2, F.getParent());
164 PrintResults("PartialAlias", PrintPartialAlias, *I1, *I2,
169 PrintResults("MustAlias", PrintMustAlias, *I1, *I2, F.getParent());
209 for (SetVector<Value *>::iterator I2
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp139 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) {
140 const Expr *Cond2 = I2->getCond();
149 Else = I2->getElse();
331 Expr::const_child_iterator I2 = Expr2->child_begin(); local
332 while (I1 != Expr1->child_end() && I2 != Expr2->child_end()) {
333 if (!*I1 || !*I2 || !isIdenticalStmt(Ctx, *I1, *I2, IgnoreSideEffects))
336 ++I2;
342 if (I2 != Expr2->child_end())
436 CompoundStmt::const_body_iterator I2 local
467 llvm::APInt I2 = IntLit2->getValue(); local
[all...]
/external/clang/test/Sema/
H A Dcompound-literal.c32 struct Incomplete* I2 = (struct foo[x]){1, 2, 3}; // expected-error {{variable-sized object may not be initialized}} local
/external/llvm/lib/Target/Hexagon/
H A DHexagonCopyToCombine.cpp100 void combine(MachineInstr &I1, MachineInstr &I2,
104 bool isSafeToMoveTogether(MachineInstr &I1, MachineInstr &I2,
247 /// isSafeToMoveTogether - Returns true if it is safe to move I1 next to I2 such
250 MachineInstr &I2,
254 unsigned I2UseReg = UseReg(I2.getOperand(1));
256 // It is not safe to move I1 and I2 into one combine if I2 has a true
263 // First try to move I2 towards I1.
265 // A reverse_iterator instantiated like below starts before I2, and I1
267 // Look at instructions I in between I2 an
249 isSafeToMoveTogether(MachineInstr &I1, MachineInstr &I2, unsigned I1DestReg, unsigned I2DestReg, bool &DoInsertAtI1) argument
488 MachineInstr *I2 = findPairable(I1, DoInsertAtI1, OptForSize); local
506 MachineBasicBlock::iterator I2 = std::next(MachineBasicBlock::iterator(I1)); local
554 combine(MachineInstr &I1, MachineInstr &I2, MachineBasicBlock::iterator &MI, bool DoInsertAtI1, bool OptForSize) argument
[all...]
/external/clang/test/CodeGenCXX/
H A Dhomogeneous-aggregates.cpp37 struct I2 : Base2 {}; struct in inherits:Base2
39 struct D5 : I1, I2, I3 {}; // homogeneous aggregate
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DMergeFunctions.cpp178 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)
[all...]
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp177 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());

Completed in 535 milliseconds

1234