HomeSort by relevance Sort by last modified time
    Searched refs:ONE (Results 1 - 25 of 243) sorted by null

1 2 3 4 5 6 7 8 910

  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
RSAMultiPrimePrivateCrtKeySpecTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
41 new RSAOtherPrimeInfo(BigInteger.ONE, BigInteger.ONE, BigInteger.ONE),
42 new RSAOtherPrimeInfo(BigInteger.ONE, BigInteger.ONE, BigInteger.ONE),
43 new RSAOtherPrimeInfo(BigInteger.ONE, BigInteger.ONE, BigInteger.ONE)
    [all...]
RSAPrivateCrtKeySpecTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
52 BigInteger.ONE,
53 BigInteger.ONE,
54 BigInteger.ONE,
55 BigInteger.ONE,
56 BigInteger.ONE,
57 BigInteger.ONE,
58 BigInteger.ONE,
59 BigInteger.ONE);
70 BigInteger.ONE,
    [all...]
  /libcore/luni/src/test/java/tests/security/spec/
RSAMultiPrimePrivateCrtKeySpecTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
42 new RSAOtherPrimeInfo(BigInteger.ONE, BigInteger.ONE, BigInteger.ONE),
43 new RSAOtherPrimeInfo(BigInteger.ONE, BigInteger.ONE, BigInteger.ONE),
44 new RSAOtherPrimeInfo(BigInteger.ONE, BigInteger.ONE, BigInteger.ONE)
    [all...]
RSAPrivateCrtKeySpecTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
45 BigInteger.ONE,
46 BigInteger.ONE,
47 BigInteger.ONE,
48 BigInteger.ONE,
49 BigInteger.ONE,
50 BigInteger.ONE,
51 BigInteger.ONE,
52 BigInteger.ONE);
63 BigInteger.ONE,
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-namespace.cpp 7 ONE
  /external/clang/test/Modules/Inputs/
redecl-merge-top-explicit.h 7 #define ONE 1
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidEnumTest.java 26 ZERO, ONE, TWO, THREE, FOUR {boolean isFour() {
40 assertTrue(MyEnum.ZERO.compareTo(MyEnum.ONE) < 0);
42 assertTrue(MyEnum.TWO.compareTo(MyEnum.ONE) > 0);
43 assertTrue(MyEnum.FOUR.compareTo(MyEnum.ONE) > 0);
45 assertEquals("ONE", MyEnum.ONE.name());
46 assertSame(MyEnum.ONE.getDeclaringClass(), MyEnum.class);
  /libcore/luni/src/test/java/tests/security/interfaces/
RSAMultiPrimePrivateCrtKeyTest.java 33 new RSAOtherPrimeInfo(BigInteger.ONE, BigInteger.ONE, BigInteger.ONE),
34 new RSAOtherPrimeInfo(BigInteger.ONE, BigInteger.ONE, BigInteger.ONE),
35 new RSAOtherPrimeInfo(BigInteger.ONE, BigInteger.ONE, BigInteger.ONE)
38 private final BigInteger publicExponent = BigInteger.ONE;
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
EllipticCurve_ImplTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
47 BigInteger.ONE,
53 BigInteger.ONE,
62 BigInteger.ONE,
71 BigInteger.ONE,
74 BigInteger.ONE,
80 BigInteger.ONE,
89 // test case 6: not equal objects - one seed is null
91 BigInteger.ONE,
102 BigInteger.ONE,
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
RSAKeyPairGenerator.java 18 private static final BigInteger ONE = BigInteger.valueOf(1);
52 if (p.mod(e).equals(ONE))
62 if (e.gcd(p.subtract(ONE)).equals(ONE))
85 if (q.mod(e).equals(ONE))
95 if (e.gcd(q.subtract(ONE)).equals(ONE))
125 pSub1 = p.subtract(ONE);
126 qSub1 = q.subtract(ONE);
DHParametersHelper.java 17 private static final BigInteger ONE = BigInteger.valueOf(1);
43 p = q.shiftLeft(1).add(ONE);
76 // while (g.modPow(TWO, p).equals(ONE) || g.modPow(q, p).equals(ONE));
88 while (g.equals(ONE));
DSAKeyPairGenerator.java 24 private static final BigInteger ONE = BigInteger.valueOf(1);
51 // return c.mod(q.subtract(ONE)).add(ONE);
54 return BigIntegers.createRandomInRange(ONE, q.subtract(ONE), random);
  /dalvik/tests/055-enum-performance/src/
SamePackagePrivateEnum.java 2 ZERO, ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE,
SamePackagePublicEnum.java 2 ZERO, ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE,
  /dalvik/tests/055-enum-performance/src/otherpackage/
OtherPackagePublicEnum.java 4 ZERO, ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECConstants.java 8 public static final BigInteger ONE = BigInteger.valueOf(1);
  /external/clang/test/CodeGen/
debug-info-gline-tables-only.c 24 enum E { ZERO = 0, ONE = 1 };
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
SetCreationTester.java 21 import static com.google.common.collect.testing.features.CollectionSize.ONE;
42 @CollectionSize.Require(absent = {ZERO, ONE})
54 @CollectionSize.Require(absent = {ZERO, ONE})
67 @CollectionSize.Require(absent = {ZERO, ONE})
79 @CollectionSize.Require(absent = {ZERO, ONE})
ListCreationTester.java 20 import static com.google.common.collect.testing.features.CollectionSize.ONE;
37 @CollectionSize.Require(absent = {ZERO, ONE})
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
AlgorithmParameterGenerator3Test.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
160 DSAParameterSpec spec = new DSAParameterSpec(BigInteger.ONE,
161 BigInteger.ONE, BigInteger.ONE);
181 DSAParameterSpec spec = new DSAParameterSpec(BigInteger.ONE,
182 BigInteger.ONE, BigInteger.ONE);
  /external/clang/test/FixIt/
fixit.c 39 #define ONE 1
45 // CHECK: x = y ? ONE : TWO;
46 x = y ? ONE TWO; // expected-error {{':'}} expected-note {{to match}}
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
EnumConstantNotPresentExceptionTest.java 1 /* Licensed to the Apache Software Foundation (ASF) under one or more
24 ONE,TWO,THREE
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DHPrivateKeySpecTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
43 BigInteger.ONE, new BigInteger("1000000000000")};
45 BigInteger.ONE, new BigInteger("1000000000000")};
47 BigInteger.ONE, new BigInteger("1000000000000")};
DHPublicKeySpecTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
43 BigInteger.ONE, new BigInteger("1000000000000")};
45 BigInteger.ONE, new BigInteger("1000000000000")};
47 BigInteger.ONE, new BigInteger("1000000000000")};
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
TypeConverter.java 27 private static final String ONE = "1";
76 // NOTE: This is likely to be one of the areas we will want to optimize
94 if (value.equals(ONE)) {
124 if (value.equals(ONE)) {

Completed in 514 milliseconds

1 2 3 4 5 6 7 8 910