Searched defs:two (Results 1 - 9 of 9) sorted by relevance

/dalvik/tests/068-classloader/src-ex/
H A DDoubledImplement.java15 public void two() { method in class:DoubledImplement
16 System.out.println("DoubledImplement two");
H A DDoubledImplement2.java29 public void two() { method in class:DoubledImplement2
30 System.out.println("DoubledImplement2 two");
/dalvik/tests/004-annotations/src/android/test/anno/
H A DFullyNoted.java21 @AnnoFancyParameter(factor=3.7879912899761) long two)
30 @AnnoFancyParameter(factor=3.7879912899761) long two)
19 bar( @nnoSimpleParameter int one, @AnnoFancyParameter(factor=3.7879912899761) long two) argument
28 bar1( @nnoSimpleParameter int one, @AnnoFancyParameter(factor=3.7879912899761) long two) argument
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
H A DCodeSourceTest.java305 * Checks whether two arrays of certificates represent the same same set of
308 * @param two second array
314 java.security.cert.Certificate[] two) {
317 return two == null;
320 if (two == null) {
324 if (one.length != two.length) {
330 if (two[i] != null) {
334 if (!one[i].equals(two[i])) {
752 // two CodeSource-s with different set of certificates
313 checkEqual(java.security.cert.Certificate[] one, java.security.cert.Certificate[] two) argument
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DJDKKeyStore.java700 byte[] two)
702 if (one.length != two.length)
709 if (one[i] != two[i])
698 isSameAs( byte[] one, byte[] two) argument
/dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
H A DJSR166TestCase.java70 * a simple sentence or two describing the property that the testcase
340 static final Integer two = new Integer(2); field in class:JSR166TestCase
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DSerializationTestClass.java103 public int two; field in class:SerializationTestClass.TestFieldsTwoPublic
114 private int two; field in class:SerializationTestClass.TestFieldsTwoPrivate
123 protected int two; field in class:SerializationTestClass.TestFieldsTwoProtected
132 static int two; field in class:SerializationTestClass.TestFieldsTwoStatic
141 final int two = 0; field in class:SerializationTestClass.TestFieldsTwoFinal
150 volatile int two; field in class:SerializationTestClass.TestFieldsTwoVolatile
159 transient int two; field in class:SerializationTestClass.TestFieldsTwoTransient
/dalvik/libcore/math/src/test/java/tests/api/java/math/
H A DBigIntegerTest.java40 BigInteger two = new BigInteger("2", 10); field in class:BigIntegerTest
53 BigInteger twoToTheSeventy = two.pow(70);
138 assertTrue("Random number two is negative", bi2.compareTo(zero) >= 0);
139 assertTrue("Random number two is too big",
182 .setBit(16).subtract(two)));
202 .setBit(16).subtract(two)));
205 .setBit(16).subtract(two).negate()));
348 assertFalse("isProbablePrime failed for product of two large primes" +
388 assertFalse("isProbablePrime failed for product of two large primes" +
509 assertTrue("Smaller number returned >= 0", one.compareTo(two) <
[all...]
/dalvik/libdex/
H A DDexFile.h990 unsigned int one, two, three; local
994 /* two- or three-byte encoding */
995 two = *(*pUtf8Ptr)++;
1000 ((two & 0x3f) << 6) |
1003 /* two-byte encoding */
1005 (two & 0x3f);
1013 /* Compare two '\0'-terminated modified UTF-8 strings, using Unicode
1029 * the consumed character. This will consume two encoded UTF-16 code

Completed in 390 milliseconds