Searched refs:hashCode (Results 1 - 3 of 3) sorted by relevance

/ropes-1.2.5/src/org/ahmadsoft/ropes/impl/
H A DAbstractRope.java41 protected int hashCode = 0; field in class:AbstractRope
88 if (rope.hashCode() != this.hashCode() || rope.length() != this.length())
114 public int hashCode() { method in class:AbstractRope
115 if (this.hashCode == 0 && this.length() > 0) {
118 this.hashCode = 31 * this.hashCode + c;
122 this.hashCode = 31 * this.hashCode + i.next();
123 this.hashCode
[all...]
/ropes-1.2.5/
H A Dropes.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ahmadsoft/ org/ahmadsoft/ropes/ org/ahmadsoft/ropes/impl/ ...
/ropes-1.2.5/src/org/ahmadsoft/ropes/test/
H A DRopeTest.java244 Assert.assertEquals(r1.hashCode(), r3.hashCode());
245 Assert.assertFalse(r1.hashCode() == r2.hashCode());

Completed in 85 milliseconds