Searched refs:One (Results 1 - 25 of 161) sorted by relevance

1234567

/external/clang/test/Modules/Inputs/wildcard-submodule-exports/
H A DC_one.h1 @__experimental_modules_import A.One;
2 @__experimental_modules_import B.One;
/external/llvm/unittests/VMCore/
H A DConstantsTest.cpp20 Constant* One = ConstantInt::get(Int1, 1, true); local
28 EXPECT_EQ(Zero, ConstantExpr::getAdd(One, One));
32 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, One));
40 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One));
44 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne));
48 EXPECT_EQ(Zero, ConstantExpr::getSub(One, One));
52 EXPECT_EQ(Undef, ConstantExpr::getShl(One, One));
[all...]
H A DInstructionsTest.cpp35 Constant* One = ConstantInt::get(Int1, 1, true); local
36 const ReturnInst* r1 = ReturnInst::Create(C, One);
40 EXPECT_EQ(One, *b);
41 EXPECT_EQ(One, r1->getOperand(0));
73 Constant* One = ConstantInt::get(Int1, 1, true); local
76 BranchInst* b1 = BranchInst::Create(bb0, bb1, One);
89 EXPECT_EQ(One, *b);
90 EXPECT_EQ(One, b1->getOperand(0));
91 EXPECT_EQ(One, b1->getCondition());
/external/android-mock/tests/com/google/android/testing/mocking/
H A DClassIsEnum.java24 One, Two, Three, Four; enum constant in enum:ClassIsEnum
/external/clang/test/Modules/
H A Dwildcard-submodule-exports.cpp5 @__experimental_modules_import C.One;
21 @__experimental_modules_import B.One;
/external/llvm/include/llvm/Target/
H A DTargetCallingConv.h48 static const uint64_t One = 1ULL; ///< 1 of this type, for shifts member in struct:llvm::ISD::ArgFlagsTy
55 void setZExt() { Flags |= One << ZExtOffs; }
58 void setSExt() { Flags |= One << SExtOffs; }
61 void setInReg() { Flags |= One << InRegOffs; }
64 void setSRet() { Flags |= One << SRetOffs; }
67 void setByVal() { Flags |= One << ByValOffs; }
70 void setNest() { Flags |= One << NestOffs; }
74 ((One << ((Flags & ByValAlign) >> ByValAlignOffs)) / 2);
82 void setSplit() { Flags |= One << SplitOffs; }
86 ((One << ((Flag
[all...]
/external/llvm/unittests/Support/
H A DConstantRangeTest.cpp23 static ConstantRange One; member in class:__anon9267::ConstantRangeTest
30 ConstantRange ConstantRangeTest::One(APInt(16, 0xa));
55 EXPECT_FALSE(One.isFullSet());
56 EXPECT_FALSE(One.isEmptySet());
57 EXPECT_FALSE(One.isWrappedSet());
58 EXPECT_FALSE(One.contains(APInt(16, 0x0)));
59 EXPECT_FALSE(One.contains(APInt(16, 0x9)));
60 EXPECT_TRUE(One.contains(APInt(16, 0xa)));
61 EXPECT_FALSE(One.contains(APInt(16, 0xaa9)));
62 EXPECT_FALSE(One
[all...]
/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/markdown/MarkdownTest/Tests_2004/
H A DOrdered and unordered lists.text64 1. One
79 1. One
/external/markdown/MarkdownTest/Tests_2007/
H A DOrdered and unordered lists.text64 1. One
79 1. One
/external/markdown/tests/markdown-test/
H A Dordered-and-unordered-list.txt64 1. One
79 1. One
/external/openfst/src/include/fst/
H A Drational.h130 rfst_.SetFinal(1, Weight::One());
134 rfst_.AddArc(0, A(0, -1, Weight::One(), 1));
135 rfst_.AddArc(0, A(0, -2, Weight::One(), 1));
153 rfst_.SetFinal(2, Weight::One());
157 rfst_.AddArc(0, A(0, -1, Weight::One(), 1));
158 rfst_.AddArc(1, A(0, -2, Weight::One(), 2));
174 rfst_.SetFinal(0, Weight::One());
175 rfst_.AddArc(0, A(0, -1, Weight::One(), 0));
180 rfst_.SetFinal(1, Weight::One());
181 rfst_.AddArc(0, A(0, -1, Weight::One(),
[all...]
H A Dreweight.h108 if ((startweight != Weight::One()) && (startweight != Weight::Zero())) {
119 Divide(Weight::One(), startweight, DIVIDE_RIGHT),
126 fst->SetFinal(state, Times(Divide(Weight::One(), startweight,
132 Divide(Weight::One(), startweight, DIVIDE_RIGHT);
H A Dpush.h63 if ((w == Arc::Weight::One()) || (w == Arc::Weight::Zero()))
91 // equal to One() in the resulting machine. If pushing towards the
104 typename Arc::Weight total_weight = Arc::Weight::One();
149 GallicArc<Arc, stype>::Weight::One();
155 : StringWeight<typename Arc::Label, stype>::One(),
157 : Arc::Weight::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 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 Dunion.h98 fst1->AddArc(start1, Arc(0, 0, Weight::One(), start2 + numstates1));
102 fst1->AddArc(nstart1, Arc(0, 0, Weight::One(), start1));
103 fst1->AddArc(nstart1, Arc(0, 0, Weight::One(), start2 + numstates1));
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Drational.h71 rfst_.SetFinal(1, Weight::One());
75 rfst_.AddArc(0, A(0, -1, Weight::One(), 1));
76 rfst_.AddArc(0, A(0, -2, Weight::One(), 1));
94 rfst_.SetFinal(2, Weight::One());
98 rfst_.AddArc(0, A(0, -1, Weight::One(), 1));
99 rfst_.AddArc(1, A(0, -2, Weight::One(), 2));
115 rfst_.SetFinal(0, Weight::One());
116 rfst_.AddArc(0, A(0, -1, Weight::One(), 0));
121 rfst_.SetFinal(1, Weight::One());
122 rfst_.AddArc(0, A(0, -1, Weight::One(),
[all...]
H A Dreweight.h87 if ((potential[fst->Start()] != Weight::One()) &&
99 Divide(Weight::One(), potential[state], DIVIDE_RIGHT),
106 fst->SetFinal(state, Times(Divide(Weight::One(), potential[state],
114 Divide(Weight::One(), potential[fst->Start()], DIVIDE_RIGHT);
/external/clang/test/SemaTemplate/
H A Dalias-church-numerals.cpp11 template<template<typename> class F, typename X> using One = Succ<Zero, F, X>;
12 template<template<typename> class F, typename X> using Two = Succ<One, F, X>;
/external/llvm/examples/HowToUseJIT/
H A DHowToUseJIT.cpp78 Value *One = builder.getInt32(1); local
86 Value *Add = builder.CreateAdd(One, ArgX);
/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/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tests.pas49 Stream := TANTLRStringStream.Create('One'#13#10'Two');
109 Stream := TANTLRStringStream.Create('One'#13#10'Two');
167 Stream := TANTLRStringStream.Create('One'#13#10'Two'#13#10'Three');
170 CheckEquals('One', Stream.Substring(0, 2));
176 CheckEquals('One', Stream.Substring(0, 2));
/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);

Completed in 1768 milliseconds

1234567