/external/clang/test/Modules/Inputs/wildcard-submodule-exports/ |
C_one.h | 1 @import A.One; 2 @import B.One;
|
/external/android-mock/tests/com/google/android/testing/mocking/ |
ClassIsEnum.java | 24 One, Two, Three, Four;
|
/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/clang/test/Modules/ |
wildcard-submodule-exports.cpp | 5 @import C.One; 21 @import B.One;
|
/external/llvm/unittests/Support/ |
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...] |
/external/clang/test/Sema/ |
missing-field-initializers.c | 25 struct One { int a; int b; }; 30 struct One one; member in union:Three::__anon19627 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/llvm/unittests/IR/ |
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/include/llvm/Target/ |
TargetCallingConv.h | 50 static const uint64_t One = 1ULL; ///< 1 of this type, for shifts 57 void setZExt() { Flags |= One << ZExtOffs; } 60 void setSExt() { Flags |= One << SExtOffs; } 63 void setInReg() { Flags |= One << InRegOffs; } 66 void setSRet() { Flags |= One << SRetOffs; } 69 void setByVal() { Flags |= One << ByValOffs; } 72 void setNest() { Flags |= One << NestOffs; } 75 void setReturned() { Flags |= One << ReturnedOffs; } 79 ((One << ((Flags & ByValAlign) >> ByValAlignOffs)) / 2); 87 void setSplit() { Flags |= One << SplitOffs; [all...] |
/external/clang/test/Index/ |
comment-c-decls.c | 84 One,
|
format-comment-cdecls.c | 79 One,
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
rational.h | 71 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(), 1)) [all...] |
reweight.h | 87 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/markdown/MarkdownTest/Tests_2004/ |
Ordered and unordered lists.text | 64 1. One 79 1. One 87 1. Item 1, graf one.
|
/external/markdown/MarkdownTest/Tests_2007/ |
Ordered and unordered lists.text | 64 1. One 79 1. One 87 1. Item 1, graf one.
|
/external/markdown/tests/markdown-test/ |
ordered-and-unordered-list.txt | 64 1. One 79 1. One 87 1. Item 1, graf one.
|
/external/openfst/src/include/fst/ |
rational.h | 130 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(), 1)) [all...] |
reweight.h | 108 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);
|
/external/llvm/examples/HowToUseJIT/ |
HowToUseJIT.cpp | 78 Value *One = builder.getInt32(1); 86 Value *Add = builder.CreateAdd(One, ArgX);
|
/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/clang/test/SemaTemplate/ |
alias-church-numerals.cpp | 12 template<template<typename> class F, typename X> using One = Succ<Zero, F, X>; 13 template<template<typename> class F, typename X> using Two = Succ<One, F, X>;
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
Antlr.Runtime.Tests.pas | 49 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/clang/test/Analysis/ |
inline.cpp | 32 class One : public A { 39 One b; 196 // at one point for virtual methods with visible definitions. 393 void test(One *object) { 394 // This uses the One class from the top of the file. 396 clang_analyzer_eval(object->One::getNum() == 1); // expected-warning{{TRUE}} 401 clang_analyzer_eval(object->One::getZero() == 0); // expected-warning{{TRUE}}
|
/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); 254 // Create one thread for add1 and two threads for fib
|