Home
last modified time | relevance | path

Searched refs:p1 (Results 1 – 17 of 17) sorted by relevance

/libcore/luni/src/test/java/tests/security/spec/
DECPointTest.java150 ECPoint p2=null, p1 = in testEqualsObject01() local
152 assertTrue(p1.equals(p1)); in testEqualsObject01()
155 p1 = new ECPoint(BigInteger.valueOf(-23456L), BigInteger.ONE); in testEqualsObject01()
157 assertTrue(p1.equals(p2) && p2.equals(p1)); in testEqualsObject01()
160 p1 = ECPoint.POINT_INFINITY; in testEqualsObject01()
162 assertTrue(p1.equals(p2) && p2.equals(p1)); in testEqualsObject01()
173 ECPoint p2=null, p1 = in testEqualsObject02() local
175 assertFalse(p1.equals(p2)); in testEqualsObject02()
178 p1 = new ECPoint(BigInteger.valueOf(-23457L), BigInteger.ONE); in testEqualsObject02()
180 assertFalse(p1.equals(p2) || p2.equals(p1)); in testEqualsObject02()
[all …]
/libcore/support/src/test/java/tests/support/
DSupport_SetTest.java26 public Support_SetTest(String p1) { in Support_SetTest() argument
27 super(p1); in Support_SetTest()
30 public Support_SetTest(String p1, Set<Integer> s) { in Support_SetTest() argument
31 super(p1); in Support_SetTest()
DSupport_CollectionTest.java29 public Support_CollectionTest(String p1) { in Support_CollectionTest() argument
30 super(p1); in Support_CollectionTest()
33 public Support_CollectionTest(String p1, Collection<Integer> c) { in Support_CollectionTest() argument
34 super(p1); in Support_CollectionTest()
DSupport_UnmodifiableCollectionTest.java34 public Support_UnmodifiableCollectionTest(String p1) { in Support_UnmodifiableCollectionTest() argument
35 super(p1); in Support_UnmodifiableCollectionTest()
38 public Support_UnmodifiableCollectionTest(String p1, Collection<Integer> c) { in Support_UnmodifiableCollectionTest() argument
39 super(p1); in Support_UnmodifiableCollectionTest()
DSupport_UnmodifiableMapTest.java33 public Support_UnmodifiableMapTest(String p1) { in Support_UnmodifiableMapTest() argument
34 super(p1); in Support_UnmodifiableMapTest()
37 public Support_UnmodifiableMapTest(String p1, Map<String, Integer> m) { in Support_UnmodifiableMapTest() argument
38 super(p1); in Support_UnmodifiableMapTest()
DSupport_ListTest.java29 public Support_ListTest(String p1) { in Support_ListTest() argument
30 super(p1); in Support_ListTest()
33 public Support_ListTest(String p1, List<Integer> l) { in Support_ListTest() argument
34 super(p1); in Support_ListTest()
DSupport_Format.java32 public Support_Format(String p1) { in Support_Format() argument
33 super(p1); in Support_Format()
DSupport_MessageFormat.java31 public Support_MessageFormat(String p1) { in Support_MessageFormat() argument
32 super(p1); in Support_MessageFormat()
DSupport_DecimalFormat.java27 public Support_DecimalFormat(String p1) { in Support_DecimalFormat() argument
28 super(p1); in Support_DecimalFormat()
/libcore/luni/src/test/java/libcore/java/util/beans/
DPropertyChangeSupportTest.java188 PropertyChangeListenerProxy p1 in testAddingAListenerActuallyAddsAProxy() local
190 assertEquals(PropertyChangeListenerProxy.class, p1.getClass()); in testAddingAListenerActuallyAddsAProxy()
191 assertTrue(p1 != listener); // weird but consistent with the RI in testAddingAListenerActuallyAddsAProxy()
192 assertEquals("a", p1.getPropertyName()); in testAddingAListenerActuallyAddsAProxy()
193 assertEquals(listener, p1.getListener()); in testAddingAListenerActuallyAddsAProxy()
206 PropertyChangeListenerProxy p1 in testAddingAProxy() local
208 assertEquals(PropertyChangeListenerProxy.class, p1.getClass()); in testAddingAProxy()
209 assertEquals("b", p1.getPropertyName()); in testAddingAProxy()
212 PropertyChangeListenerProxy p2 = (PropertyChangeListenerProxy) p1.getListener(); in testAddingAProxy()
/libcore/luni/src/test/java/tests/api/javax/net/ssl/
DSSLSessionTest.java73 Principal p1 = clientSession.getPeerPrincipal(); in test_getPeerPrincipal() local
77 assertEquals(p1, p2); in test_getPeerPrincipal()
143 Principal p1 = clientSession.getLocalPrincipal(); in test_getLocalPrincipal() local
147 assertEquals(p1, p2); in test_getLocalPrincipal()
/libcore/luni/src/test/java/libcore/java/security/cert/
DOldPKIXParametersTest.java164 PKIXParameters p1 = null; in testToString() local
166 p1.toString(); in testToString()
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DKeyStoreTest.java339 public void verify(PublicKey p0, String p1) in testKeyStoreTCToString() argument
/libcore/luni/src/main/java/java/util/concurrent/
DExchanger.java292 Object p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, pa, pb, pc, pd, pe, pf; field in Exchanger.Node
/libcore/luni/src/test/java/tests/security/cert/
DX509CertSelectorTest.java558 HashSet<String> p1 = new HashSet<String>(Arrays.asList(policies1)); in test_getPolicy() local
566 selector.setPolicy(p1); in test_getPolicy()
567 assertEquals("The returned date should be equal to specified", p1, selector.getPolicy()); in test_getPolicy()
1176 HashSet<String> p1 = new HashSet<String>(Arrays.asList(policies1)); in test_setPolicyLjava_util_Set() local
1189 selector.setPolicy(p1); in test_setPolicyLjava_util_Set()
/libcore/luni/src/test/java/tests/api/java/util/
DCollectionsTest.java241 public CollectionTest(String p1) { in CollectionTest() argument
242 super(p1); in CollectionTest()
245 public CollectionTest(String p1, Collection c) { in CollectionTest() argument
246 super(p1); in CollectionTest()
/libcore/luni/src/test/java/libcore/java/util/prefs/
DOldPreferencesTest.java105 Preferences p1 = Preferences.userNodeForPackage(Preferences.class); in testToString() local
106 assertNotNull(p1.toString()); in testToString()