Searched refs:pp1 (Results 1 – 3 of 3) sorted by relevance
27 ParsePosition pp1 = new ParsePosition(0); in test_hashCode() local30 pp1.hashCode() == pp2.hashCode()); in test_hashCode()31 pp1.setIndex(Integer.MAX_VALUE); in test_hashCode()33 pp1.hashCode() != pp2.hashCode()); in test_hashCode()
30 ParsePosition pp1 = new ParsePosition(Integer.MIN_VALUE); in test_ConstructorI() local31 assertTrue("Initialization failed.", pp1.getIndex() == Integer.MIN_VALUE); in test_ConstructorI()32 assertEquals("Initialization failed.", -1, pp1.getErrorIndex()); in test_ConstructorI()
56 ParsePosition pp1 = new ParsePosition(0); in TestParsePosition() local57 if (pp1.getIndex() == 0) { in TestParsePosition()