HomeSort by relevance Sort by last modified time
    Searched refs:ONE (Results 251 - 275 of 388) sorted by null

<<111213141516

  /external/easymock/src/org/easymock/internal/
RecordState.java 265 this.times(org.easymock.MockControl.ONE);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestsForSetsInJavaUtil.java 137 CollectionSize.ONE)
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 154 builder.setBlendFunc(ProgramStore.BlendSrcFunc.ONE, ProgramStore.BlendDstFunc.ZERO);
  /packages/wallpapers/NoiseField/src/com/android/noisefield/
NoiseFieldRS.java 219 builder.setBlendFunc(BlendSrcFunc.SRC_ALPHA, BlendDstFunc.ONE );
  /packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
PhaseBeamRS.java 236 builder.setBlendFunc(BlendSrcFunc.SRC_ALPHA, BlendDstFunc.ONE);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BigMatrixImpl.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
62 static final BigDecimal ONE = new BigDecimal(1);
    [all...]
MatrixUtils.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
163 final T one = field.getOne(); local
169 dRow[row] = one;
189 dRow[row] = BigMatrixImpl.ONE;
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldClassTest.java 97 public enum enumExm {ONE, TWO, THREE};
422 ONE, TWO, THREE
572 assertTrue(TestEnum.ONE.getClass().isEnum());
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
TableCollectionTest.java 131 .withFeatures(CollectionSize.ONE, CollectionSize.SEVERAL,
203 .withFeatures(CollectionSize.ONE, CollectionSize.SEVERAL,
277 .withFeatures(CollectionSize.ONE, CollectionSize.SEVERAL,
396 .withFeatures(CollectionSize.ONE, CollectionSize.SEVERAL,
510 .withFeatures(CollectionSize.ONE, CollectionSize.SEVERAL,
677 table.put('a', "one", 1);
701 Arrays.asList("one", "two", "three", "four"));
755 table.put('a', "one", 2);
775 table.put('a', "one", 1);
795 table.put('a', "one", 1)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/
DiagBigDecimal.java 116 private static final com.ibm.icu.math.BigDecimal one = com.ibm.icu.math.BigDecimal.ONE; field in class:DiagBigDecimal
413 (new Test("con002")).ok = (com.ibm.icu.math.BigDecimal.ONE.toString()).equals("1");
416 (new Test("con005")).ok = (com.ibm.icu.math.BigDecimal.ONE.intValueExact()) == 1;
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
AlgorithmParametersTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
525 BigInteger p = BigInteger.ONE;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 27 ECFieldElement one = curve.fromBigInteger(ECConstants.ONE); local
34 return new ECFieldElement[]{ one };
36 return new ECFieldElement[]{ one, one, one };
38 return new ECFieldElement[]{ one, curve.getA() };
70 return h == null || h.equals(ECConstants.ONE) || !ECAlgorithms.referenceMultiply(this, h).isInfinity();
634 throw new IllegalArgumentException("Exactly one of the field elements is null");
    [all...]
  /external/eigen/blas/testing/
cblat3.f 54 COMPLEX ZERO, ONE
55 PARAMETER ( ZERO = ( 0.0, 0.0 ), ONE = ( 1.0, 0.0 ) )
220 CALL CMMCH( TRANSA, TRANSB, N, 1, N, ONE, AB, NMAX,
229 CALL CMMCH( TRANSA, TRANSB, N, 1, N, ONE, AB, NMAX,
247 CALL CMMCH( TRANSA, TRANSB, N, 1, N, ONE, AB, NMAX,
256 CALL CMMCH( TRANSA, TRANSB, N, 1, N, ONE, AB, NMAX,
    [all...]
zblat3.f 54 COMPLEX*16 ZERO, ONE
56 $ ONE = ( 1.0D0, 0.0D0 ) )
221 CALL ZMMCH( TRANSA, TRANSB, N, 1, N, ONE, AB, NMAX,
230 CALL ZMMCH( TRANSA, TRANSB, N, 1, N, ONE, AB, NMAX,
248 CALL ZMMCH( TRANSA, TRANSB, N, 1, N, ONE, AB, NMAX,
257 CALL ZMMCH( TRANSA, TRANSB, N, 1, N, ONE, AB, NMAX,
    [all...]
  /frameworks/base/keystore/tests/src/android/security/keystore/
AndroidKeyPairGeneratorTest.java 61 private static final BigInteger TEST_SERIAL_1 = BigInteger.ONE;
383 assertEquals("PublicKey used to sign certificate should match one returned in KeyPair",
390 assertEquals("The Subject DN should be the one passed into the params", dn,
396 assertEquals("The Serial should be the one passed into the params", serial,
399 assertDateEquals("The notBefore date should be the one passed into the params", start,
402 assertDateEquals("The notAfter date should be the one passed into the params", end,
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
202 * The constant one as a {@code BigDecimal}.
204 public static final BigDecimal ONE = new BigDecimal(1, 0);
    [all...]
  /packages/wallpapers/Galaxy4/src/com/android/galaxy4/
GalaxyRS.java 256 builder.setBlendFunc(BlendSrcFunc.SRC_ALPHA, BlendDstFunc.ONE);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MathUtils.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
886 * <li>The invocation <code>gcd(0, 0)</code> is the only one which returns
    [all...]
  /external/v8/src/
code-stubs.cc 815 case ONE:
947 minor_key_ = ArgumentCountBits::encode(ONE);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
31 BigInteger one = new BigInteger("1", 10); field in class:BigIntegerTest
220 assertTrue("0=1", !zero.equals(one));
222 assertTrue("1=-1", !one.equals(minusOne));
232 assertTrue("Smaller number returned >= 0", one.compareTo(two) < 0);
233 assertTrue("Larger number returned >= 0", two.compareTo(one) > 0);
234 assertTrue("Equal numbers did not return 0", one.compareTo(one) == 0);
236 two.negate().compareTo(one) < 0);
274 assertTrue("0+1", zero.add(one).equals(one))
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
SmsProvider.java 56 private static final Integer ONE = Integer.valueOf(1);
285 * Return a Cursor containing just one message from the ICC.
539 values.put(Sms.READ, ONE);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java     [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
CaptureRequestTest.java 169 // Allow at most one lock OFF state as the exposure is changed once.
240 // Allow at most one lock OFF state as the exposure is changed once.
    [all...]
  /external/crcalc/src/com/hp/creals/
UnaryCRFunction.java 211 CR one = CR.valueOf(1); field in class:atan_UnaryCRFunction
214 CR abs_sin_atan = x2.divide(one.add(x2)).sqrt();
331 // Comparison with a difference of one treated as equality.
361 // one outside [f_l, f_h].
639 CR delta = ONE.shiftLeft(log_delta);
  /external/eigen/Eigen/src/Core/arch/AltiVec/
PacketMath.h 8 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
67 static _EIGEN_DECLARE_CONST_FAST_Packet4i(ONE,1);
223 // Do one Newton-Raphson iteration to get the needed accuracy

Completed in 1816 milliseconds

<<111213141516