HomeSort by relevance Sort by last modified time
    Searched defs:One (Results 1 - 25 of 56) 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/android-mock/tests/com/google/android/testing/mocking/
ClassIsEnum.java 24 One, Two, Three, Four;
  /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/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/Index/
comment-c-decls.c 84 One,
format-comment-cdecls.c 79 One,
  /external/clang/test/Sema/
warn-outof-range-assign-enum.c 6 One,
missing-field-initializers.c 25 struct One { int a; int b; };
30 struct One one; member in union:Three::__anon16911
36 { .one = { 1, 2 } }
43 { { .one = { 1, 2 } } },
44 { { .one = { 1 } } }, // expected-warning {{missing field 'b' initializer}}
  /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/openfst/src/include/fst/
expectation-weight.h 21 // One: <One, Zero>
80 static const ExpectationWeight<X1, X2> &One() {
81 static const ExpectationWeight<X1, X2> one(X1::One(), X2::Zero());
82 return one;
lexicographic-weight.h 47 using PairWeight<W1, W2>::One;
80 static const LexicographicWeight<W1, W2> &One() {
81 static const LexicographicWeight<W1, W2> one(PairWeight<W1, W2>::One());
82 return one;
product-weight.h 38 using PairWeight<W1, W2>::One;
57 static const ProductWeight<W1, W2> &One() {
58 static const ProductWeight<W1, W2> one(PairWeight<W1, W2>::One());
59 return one;
power-weight.h 42 using TupleWeight<W, n>::One;
61 static const PowerWeight<W, n> &One() {
62 static const PowerWeight<W, n> one(TupleWeight<W, n>::One());
63 return one;
signed-log-weight.h 62 static const SignedLogWeightTpl<T> &One() {
63 static const SignedLogWeightTpl<T> one(X1(1.0), X2::One());
64 return one;
sparse-power-weight.h 65 return ApproxEqual(v1, v2, delta_) ? W::One() : W::Zero();
83 using SparseTupleWeight<W, K>::One;
107 static const SparsePowerWeight<W, K> &One() {
108 static const SparsePowerWeight<W, K> one(SparseTupleWeight<W, K>::One());
109 return one;
198 return ret == SparsePowerWeight<W, K>::One();
tuple-weight.h 69 static const TupleWeight<W, n> &One() {
70 static const TupleWeight<W, n> one(W::One());
71 return 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/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/openfst/src/include/fst/script/
weight-class.h 105 case ONE:
106 return "ONE";
125 static const WeightClass &One() {
126 static WeightClass w(ONE);
140 enum ElementType { ZERO, ONE, OTHER };
152 // We need to store zero and one as statics, because the weight type
156 static const W one = W::One(); local
160 } else if (element_type_ == ONE) {
161 return &one;
    [all...]
  /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;

Completed in 1504 milliseconds

1 2 3