HomeSort by relevance Sort by last modified time
    Searched defs:One (Results 1 - 25 of 53) sorted by null

1 2 3

  /ndk/tests/device/test-stlport_shared-exception/jni/
unexpected1.cpp 9 struct One { };
19 catch (One &)
28 throw One ();
  /ndk/tests/device/test-stlport_static-exception/jni/
unexpected1.cpp 9 struct One { };
19 catch (One &)
28 throw One ();
  /external/chromium_org/v8/test/webkit/
comparison-operators.js 61 var One = 1;
93 doTest('0', 'One', -1);
94 doTest('One', '0', 1);
comparison-operators-greater.js 61 var One = 1;
103 doTest('0', 'One', -1);
104 doTest('One', '0', 1);
143 var one = 1; variable
187 shouldBeTrue("one >= zero");
188 shouldBeTrue("one >= one");
189 shouldBeTrue("one > zero");
190 shouldBeFalse("zero >= one");
191 shouldBeFalse("one >= two")
    [all...]
comparison-operators-less.js 60 var One = 1;
101 doTest('0', 'One', -1);
102 doTest('One', '0', 1);
141 var one = 1; variable
185 shouldBeTrue("zero <= one");
186 shouldBeTrue("one <= one");
187 shouldBeTrue("zero < one");
188 shouldBeFalse("one <= zero");
189 shouldBeFalse("two <= one");
    [all...]
  /external/clang/test/Index/
comment-c-decls.c 84 One,
format-comment-cdecls.c 79 One,
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 78 Value *One = builder.getInt32(1);
86 Value *Add = builder.CreateAdd(One, ArgX);
  /external/llvm/unittests/IR/
PatternMatch.cpp 51 // One = (1 + 2) + 42
52 // Two = One + 42
54 Value *One = IRB.CreateAdd(IRB.CreateAdd(IRB.getInt32(1), IRB.getInt32(2)),
56 Value *Two = IRB.CreateAdd(One, IRB.getInt32(42));
61 EXPECT_TRUE(m_OneUse(m_Value(V)).match(One));
62 EXPECT_EQ(One, V);
ConstantRangeTest.cpp 22 static ConstantRange One;
29 ConstantRange ConstantRangeTest::One(APInt(16, 0xa));
54 EXPECT_FALSE(One.isFullSet());
55 EXPECT_FALSE(One.isEmptySet());
56 EXPECT_FALSE(One.isWrappedSet());
57 EXPECT_FALSE(One.contains(APInt(16, 0x0)));
58 EXPECT_FALSE(One.contains(APInt(16, 0x9)));
59 EXPECT_TRUE(One.contains(APInt(16, 0xa)));
60 EXPECT_FALSE(One.contains(APInt(16, 0xaa9)));
61 EXPECT_FALSE(One.contains(APInt(16, 0xaaa)))
    [all...]
ConstantsTest.cpp 23 Constant* One = ConstantInt::get(Int1, 1, true);
31 EXPECT_EQ(Zero, ConstantExpr::getAdd(One, One));
35 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, One));
43 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One));
47 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne));
51 EXPECT_EQ(Zero, ConstantExpr::getSub(One, One));
55 EXPECT_EQ(Undef, ConstantExpr::getShl(One, One));
    [all...]
  /external/llvm/examples/Fibonacci/
fibonacci.cpp 14 // consisting of one function as follow:
51 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1);
68 ReturnInst::Create(Context, One, RetBB);
71 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB);
  /external/llvm/unittests/ADT/
APIntTest.cpp 21 APInt One = APInt::getNullValue(65) + 1;
22 APInt Shl = One.shl(0);
104 APInt one(128, 1, true);
105 EXPECT_EQ(127u, one.countLeadingZeros());
106 EXPECT_EQ(0u, one.countLeadingOnes());
107 EXPECT_EQ(1u, one.getActiveBits());
108 EXPECT_EQ(0u, one.countTrailingZeros());
109 EXPECT_EQ(1u, one.countTrailingOnes());
110 EXPECT_EQ(1u, one.countPopulation());
111 EXPECT_EQ(1, one.getSExtValue())
    [all...]
  /external/clang/test/Sema/
missing-field-initializers.c 25 struct One { int a; int b; };
30 struct One one; member in union:Three::__anon22945
36 { .one = { 1, 2 } }
43 { { .one = { 1, 2 } } },
44 { { .one = { 1 } } }, // expected-warning {{missing field 'b' initializer}}
warn-outof-range-assign-enum.c 6 One,
  /external/clang/include/clang/AST/
CharUnits.h 30 /// char' occupies exactly one byte, so 'character unit' and 'byte' refer to
57 /// One - Construct a CharUnits quantity of one.
58 static CharUnits One() {
118 /// isOne - Test whether the quantity equals one.
  /external/llvm/unittests/Linker/
LinkModulesTest.cpp 49 ConstantInt *One = ConstantInt::get(Type::getInt32Ty(Ctx), 1);
50 Constant *OnePtr = ConstantExpr::getCast(Instruction::IntToPtr, One,
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
float-weight.h 128 static const TropicalWeight One() { return TropicalWeight(0.0F); }
194 static const LogWeight One() { return LogWeight(0.0F); }
product-weight.h 44 static const ProductWeight<W1, W2> &One() {
45 static const ProductWeight<W1, W2> one(W1::One(), W2::One());
46 return one;
string-weight.h 88 static const StringWeight<L, S> &One() {
89 static const StringWeight<L, S> one; local
90 return one;
341 w = StringWeight<L, S>::One();
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 48 Value *One = ConstantInt::get(Type::getInt32Ty(M->getContext()), 1);
56 Instruction *Add = BinaryOperator::CreateAdd(One, ArgX, "addresult", BB);
78 Value *One = ConstantInt::get(Type::getInt32Ty(M->getContext()), 1);
95 ReturnInst::Create(M->getContext(), One, RetBB);
98 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB);
257 // Create one thread for add1 and two threads for fib
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 176 Value *One = ConstantInt::get(Context, APInt(32, 1));
177 Value *RecursiveParam = Builder.CreateSub(Param, One);
  /external/clang/test/Analysis/
inline.cpp 33 class One : public A {
40 One b;
197 // at one point for virtual methods with visible definitions.
394 void test(One *object) {
395 // This uses the One class from the top of the file.
397 clang_analyzer_eval(object->One::getNum() == 1); // expected-warning{{TRUE}}
402 clang_analyzer_eval(object->One::getZero() == 0); // expected-warning{{TRUE}}
  /external/llvm/include/llvm/Target/
TargetCallingConv.h 57 static const uint64_t One = 1ULL; ///< 1 of this type, for shifts
64 void setZExt() { Flags |= One << ZExtOffs; }
67 void setSExt() { Flags |= One << SExtOffs; }
70 void setInReg() { Flags |= One << InRegOffs; }
73 void setSRet() { Flags |= One << SRetOffs; }
76 void setByVal() { Flags |= One << ByValOffs; }
79 void setInAlloca() { Flags |= One << InAllocaOffs; }
82 void setNest() { Flags |= One << NestOffs; }
85 void setReturned() { Flags |= One << ReturnedOffs; }
88 void setInConsecutiveRegs() { Flags |= One << InConsecutiveRegsOffs;
    [all...]
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 128 Value *One = ConstantInt::get(Int32Ty, 1);
129 Value *Idxs[2] = { Zero, One };
277 // we want this one to remain.

Completed in 1391 milliseconds

1 2 3