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

1 2

  /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 11 class I2;
14 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();
  /frameworks/base/tests/RenderScriptTests/tests/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/base/tests/RenderScriptTests/tests_v14/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 31 struct Incomplete* I2 = (struct foo[x]){1, 2, 3}; // -expected-error {{variable-sized object may not be initialized}}
  /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 777 I2 = NF->arg_begin(); I != E; ++I) {
781 I->replaceAllUsesWith(I2);
782 I2->takeName(I)
    [all...]
DeadArgumentElimination.cpp 281 I2 = NF->arg_begin(); I != E; ++I, ++I2) {
283 I->replaceAllUsesWith(I2);
284 I2->takeName(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());
AliasAnalysis.cpp 398 /// instructions to consider are all of the instructions in the range of [I1,I2]
399 /// INCLUSIVE. I1 and I2 must be in the same basic block.
402 const Instruction &I2,
404 assert(I1.getParent() == I2.getParent() &&
407 BasicBlock::const_iterator E = &I2;
  /external/clang/lib/StaticAnalyzer/Checkers/
OSAtomicChecker.cpp 186 for (ExplodedNodeSet::iterator I2 = TmpStore.begin(),
187 E2 = TmpStore.end(); I2 != E2; ++I2) {
188 ExplodedNode *predNew = *I2;
  /external/qemu/
mips-dis.c     [all...]
  /external/llvm/lib/CodeGen/
BranchFolding.cpp 310 MachineBasicBlock::iterator &I2) {
312 I2 = MBB2->end();
315 while (I1 != MBB1->begin() && I2 != MBB2->begin()) {
316 --I1; --I2;
320 while (I2->isDebugValue()) {
321 if (I2==MBB2->begin())
322 // I1==DBG at begin; I2==DBG at begin
324 --I2;
326 ++I2;
327 // I1==DBG at begin; I2==non-DBG, or first of DBGs not at begi
    [all...]
PrologEpilogInserter.cpp 329 MachineBasicBlock::iterator I2 = I;
330 while (I2 != MBB->begin() && (--I2)->isTerminator())
331 I = I2;
427 MachineBasicBlock::iterator I2 = I;
428 while (I2 != MBB->begin() && (--I2)->isTerminator())
429 I = I2;
  /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)
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 481 /// range of [I1,I2] INCLUSIVE. I1 and I2 must be in the same basic block.
482 bool canInstructionRangeModify(const Instruction &I1, const Instruction &I2,
486 bool canInstructionRangeModify(const Instruction &I1, const Instruction &I2,
488 return canInstructionRangeModify(I1, I2, Location(Ptr, Size));
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 159 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
164 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
  /external/ppp/pppd/
md4.c 47 #define I2 0x98badcfe
110 MDp->buffer[2] = I2;
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 532 unsigned i1 = 0, i2 = 0, e1 = V1->size(), e2 = V2->size(); local
533 while (i1 != e1 && i2 != e2) {
534 if ((*V1)[i1].first == (*V2)[i2].first)
536 if ((*V1)[i1].first < (*V2)[i2].first)
539 ++i2;
    [all...]
  /external/clang/lib/AST/
ASTImporter.cpp 242 static bool IsSameValue(const llvm::APInt &I1, const llvm::APInt &I2) {
243 if (I1.getBitWidth() == I2.getBitWidth())
244 return I1 == I2;
246 if (I1.getBitWidth() > I2.getBitWidth())
247 return I1 == I2.zext(I1.getBitWidth());
249 return I1.zext(I2.getBitWidth()) == I2;
254 static bool IsSameValue(const llvm::APSInt &I1, const llvm::APSInt &I2) {
255 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned()
    [all...]

Completed in 1098 milliseconds

1 2