HomeSort by relevance Sort by last modified time
    Searched refs:ZERO (Results 101 - 125 of 821) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListIndexOfTester.java 21 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
45 @CollectionSize.Require(absent = {ZERO, ONE})
ListLastIndexOfTester.java 21 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
45 @CollectionSize.Require(absent = {ZERO, ONE})
ListRemoveAllTester.java 21 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
39 @CollectionSize.Require(absent = {ZERO, ONE})
ListRemoveTester.java 21 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
37 @CollectionSize.Require(absent = {ZERO, ONE})
QueueElementTester.java 22 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
39 @CollectionSize.Require(ZERO)
QueuePeekTester.java 22 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
37 @CollectionSize.Require(ZERO)
QueuePollTester.java 23 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
40 @CollectionSize.Require(ZERO)
QueueRemoveTester.java 23 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
42 @CollectionSize.Require(ZERO)
CollectionRemoveTester.java 24 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
46 @CollectionSize.Require(absent = ZERO)
78 @CollectionSize.Require(absent = ZERO)
90 @CollectionSize.Require(absent = ZERO)
134 @CollectionSize.Require(absent = ZERO)
ListAddAtIndexTester.java 22 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
47 @CollectionSize.Require(absent = ZERO)
54 @CollectionSize.Require(absent = ZERO)
56 * absent = ZERO isn't required, since unmodList.add() must
99 @CollectionSize.Require(absent = {ZERO, ONE})
106 @CollectionSize.Require(absent = ZERO)
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DHParameterSpecTest.java 44 BigInteger[] ps = {new BigInteger("-1000000000000"), BigInteger.ZERO,
46 BigInteger[] gs = {new BigInteger("-1000000000000"), BigInteger.ZERO,
  /packages/apps/Camera2/src/com/android/camera/data/
Location.java 24 * TODO: Add tests. Consider removing "ZERO" location and using UNKNOWN.
28 public static final Location ZERO = new Location(0.0, 0.0);
52 return !this.equals(UNKNOWN) && !this.equals(ZERO)
  /external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
ProperBigFractionFormat.java 100 if (!BigInteger.ZERO.equals(whole)) {
103 if (num.compareTo(BigInteger.ZERO) < 0) {
170 if (num.compareTo(BigInteger.ZERO) < 0) {
209 if (den.compareTo(BigInteger.ZERO) < 0) {
215 boolean wholeIsNeg = whole.compareTo(BigInteger.ZERO) < 0;
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
CollectionAddAllTester.java 23 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
83 @CollectionSize.Require(absent = ZERO)
92 @CollectionSize.Require(absent = ZERO)
104 @CollectionSize.Require(absent = ZERO)
117 @CollectionSize.Require(absent = ZERO)
ListAddAtIndexTester.java 22 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
44 @CollectionSize.Require(absent = ZERO)
51 @CollectionSize.Require(absent = ZERO)
53 * absent = ZERO isn't required, since unmodList.add() must
96 @CollectionSize.Require(absent = {ZERO, ONE})
103 @CollectionSize.Require(absent = ZERO)
  /frameworks/base/core/java/android/view/textclassifier/
GenerateLinksLogger.java 43 private static final String ZERO = "0";
138 Objects.toString(log.getTaggedData(MetricsEvent.FIELD_LINKIFY_NUM_LINKS), ZERO));
140 Objects.toString(log.getTaggedData(MetricsEvent.FIELD_LINKIFY_LINK_LENGTH), ZERO));
142 Objects.toString(log.getTaggedData(MetricsEvent.FIELD_LINKIFY_TEXT_LENGTH), ZERO));
144 Objects.toString(log.getTaggedData(MetricsEvent.FIELD_LINKIFY_LATENCY), ZERO));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterRotateRepresentation.java 37 ZERO(0), NINETY(90), ONE_EIGHTY(180), TWO_SEVENTY(270);
51 return ZERO;
91 case ZERO:
101 mRotation = Rotation.ZERO;
150 return Rotation.ZERO;
  /external/mesa3d/src/mesa/math/
m_matrix.c 109 * \returns non-zero if all geometry related matrix flags are contained within
110 * the mask, or zero otherwise.
921 * been zero, the numerator would have been zero as well, giving
    [all...]
  /external/eigen/lapack/
ilaclc.f 36 *> ILACLC scans A for its last non-zero column.
96 COMPLEX ZERO
97 PARAMETER ( ZERO = (0.0E+0, 0.0E+0) )
104 * Quick test for the common case where one corner is non-zero.
107 ELSE IF( A(1, N).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN
110 * Now scan each column from the end, returning with the first non-zero.
113 IF( A(I, ILACLC).NE.ZERO ) RETURN
ilaclr.f 36 *> ILACLR scans A for its last non-zero row.
96 COMPLEX ZERO
97 PARAMETER ( ZERO = (0.0E+0, 0.0E+0) )
104 * Quick test for the common case where one corner is non-zero.
107 ELSE IF( A(M, 1).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN
110 * Scan up each column tracking the last zero row seen.
114 DO WHILE((A(MAX(I,1),J).EQ.ZERO).AND.(I.GE.1))
iladlc.f 36 *> ILADLC scans A for its last non-zero column.
96 DOUBLE PRECISION ZERO
97 PARAMETER ( ZERO = 0.0D+0 )
104 * Quick test for the common case where one corner is non-zero.
107 ELSE IF( A(1, N).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN
110 * Now scan each column from the end, returning with the first non-zero.
113 IF( A(I, ILADLC).NE.ZERO ) RETURN
iladlr.f 36 *> ILADLR scans A for its last non-zero row.
96 DOUBLE PRECISION ZERO
97 PARAMETER ( ZERO = 0.0D+0 )
104 * Quick test for the common case where one corner is non-zero.
107 ELSE IF( A(M, 1).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN
110 * Scan up each column tracking the last zero row seen.
114 DO WHILE((A(MAX(I,1),J).EQ.ZERO).AND.(I.GE.1))
ilaslc.f 36 *> ILASLC scans A for its last non-zero column.
96 REAL ZERO
97 PARAMETER ( ZERO = 0.0D+0 )
104 * Quick test for the common case where one corner is non-zero.
107 ELSE IF( A(1, N).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN
110 * Now scan each column from the end, returning with the first non-zero.
113 IF( A(I, ILASLC).NE.ZERO ) RETURN
ilaslr.f 36 *> ILASLR scans A for its last non-zero row.
96 REAL ZERO
97 PARAMETER ( ZERO = 0.0E+0 )
104 * Quick test for the common case where one corner is non-zero.
107 ELSEIF( A(M, 1).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN
110 * Scan up each column tracking the last zero row seen.
114 DO WHILE((A(MAX(I,1),J).EQ.ZERO).AND.(I.GE.1))
ilazlc.f 36 *> ILAZLC scans A for its last non-zero column.
96 COMPLEX*16 ZERO
97 PARAMETER ( ZERO = (0.0D+0, 0.0D+0) )
104 * Quick test for the common case where one corner is non-zero.
107 ELSE IF( A(1, N).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN
110 * Now scan each column from the end, returning with the first non-zero.
113 IF( A(I, ILAZLC).NE.ZERO ) RETURN

Completed in 445 milliseconds

1 2 3 45 6 7 8 91011>>