Searched defs:One (Results 1 - 25 of 60) sorted by relevance

123

/external/chromium_org/v8/test/webkit/
H A Dcomparison-operators.js61 var One = 1; variable
93 doTest('0', 'One', -1);
94 doTest('One', '0', 1);
H A Dcomparison-operators-greater.js61 var One = 1; variable
103 doTest('0', 'One', -1);
104 doTest('One', '0', 1);
H A Dcomparison-operators-less.js60 var One = 1; variable
101 doTest('0', 'One', -1);
102 doTest('One', '0', 1);
/external/clang/test/Index/
H A Dcomment-c-decls.c84 One, enumerator in enum:e
H A Dformat-comment-cdecls.c79 One, enumerator in enum:e
/external/llvm/examples/HowToUseJIT/
H A DHowToUseJIT.cpp78 Value *One = builder.getInt32(1); local
86 Value *Add = builder.CreateAdd(One, ArgX);
/external/llvm/unittests/IR/
H A DPatternMatch.cpp51 // One = (1 + 2) + 42
52 // Two = One + 42
54 Value *One = IRB.CreateAdd(IRB.CreateAdd(IRB.getInt32(1), IRB.getInt32(2)), local
56 Value *Two = IRB.CreateAdd(One, IRB.getInt32(42));
61 EXPECT_TRUE(m_OneUse(m_Value(V)).match(One));
62 EXPECT_EQ(One, V);
H A DConstantRangeTest.cpp22 static ConstantRange One; member in class:__anon26495::ConstantRangeTest
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
[all...]
H A DConstantsTest.cpp23 Constant* One = ConstantInt::get(Int1, 1, true); local
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));
187 Constant *One = ConstantInt::get(Int32Ty, 1); local
263 Constant *One = ConstantInt::get(Int32Ty, 1); local
[all...]
/external/llvm/unittests/ADT/
H A DAPIntTest.cpp21 APInt One = APInt::getNullValue(65) + 1; local
22 APInt Shl = One.shl(0);
/external/clang/test/Sema/
H A Dmissing-field-initializers.c25 struct One { int a; int b; }; struct
30 struct One one;
H A Dwarn-outof-range-assign-enum.c6 One, enumerator in enum:CCTestEnum
/external/llvm/examples/Fibonacci/
H A Dfibonacci.cpp51 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1); local
68 ReturnInst::Create(Context, One, RetBB);
71 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB);
/external/openfst/src/include/fst/
H A Dexpectation-weight.h21 // One: <One, Zero>
80 static const ExpectationWeight<X1, X2> &One() { function in class:fst::ExpectationWeight
81 static const ExpectationWeight<X1, X2> one(X1::One(), X2::Zero());
H A Dlexicographic-weight.h47 using PairWeight<W1, W2>::One;
80 static const LexicographicWeight<W1, W2> &One() { function in class:fst::LexicographicWeight
81 static const LexicographicWeight<W1, W2> one(PairWeight<W1, W2>::One());
H A Dproduct-weight.h38 using PairWeight<W1, W2>::One;
57 static const ProductWeight<W1, W2> &One() { function in class:fst::ProductWeight
58 static const ProductWeight<W1, W2> one(PairWeight<W1, W2>::One());
H A Dpower-weight.h42 using TupleWeight<W, n>::One;
61 static const PowerWeight<W, n> &One() { function in class:fst::PowerWeight
62 static const PowerWeight<W, n> one(TupleWeight<W, n>::One());
H A Dpair-weight.h61 static const PairWeight<W1, W2> &One() { function in class:fst::PairWeight
62 static const PairWeight<W1, W2> one(W1::One(), W2::One());
H A Dsigned-log-weight.h62 static const SignedLogWeightTpl<T> &One() { function in class:fst::SignedLogWeightTpl
63 static const SignedLogWeightTpl<T> one(X1(1.0), X2::One());
H A Dsparse-power-weight.h65 return ApproxEqual(v1, v2, delta_) ? W::One() : W::Zero();
83 using SparseTupleWeight<W, K>::One;
107 static const SparsePowerWeight<W, K> &One() { function in class:fst::SparsePowerWeight
108 static const SparsePowerWeight<W, K> one(SparseTupleWeight<W, K>::One());
198 return ret == SparsePowerWeight<W, K>::One();
H A Dtuple-weight.h69 static const TupleWeight<W, n> &One() { function in class:fst::TupleWeight
70 static const TupleWeight<W, n> one(W::One());
/external/llvm/unittests/Linker/
H A DLinkModulesTest.cpp49 ConstantInt *One = ConstantInt::get(Type::getInt32Ty(Ctx), 1); local
50 Constant *OnePtr = ConstantExpr::getCast(Instruction::IntToPtr, One,
/external/clang/include/clang/AST/
H A DCharUnits.h57 /// One - Construct a CharUnits quantity of one.
58 static CharUnits One() { function in class:clang::CharUnits
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp48 Value *One = ConstantInt::get(Type::getInt32Ty(M->getContext()), 1); local
56 Instruction *Add = BinaryOperator::CreateAdd(One, ArgX, "addresult", BB);
78 Value *One = ConstantInt::get(Type::getInt32Ty(M->getContext()), 1); local
95 ReturnInst::Create(M->getContext(), One, RetBB);
98 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB);
/external/openfst/src/include/fst/script/
H A Dweight-class.h125 static const WeightClass &One() { function in class:fst::script::WeightClass
156 static const W one = W::One();

Completed in 5243 milliseconds

123