Searched refs:startsWith (Results 1 - 4 of 4) sorted by relevance

/ropes-1.2.5/src/org/ahmadsoft/ropes/
H A DRope.java164 * this.startsWith(str, k)
180 * k >= fromIndex && this.startsWith(str, k)
385 * @see #startsWith(CharSequence, int)
387 public boolean startsWith(CharSequence prefix); method in interface:Rope
396 public boolean startsWith(CharSequence prefix, int offset); method in interface:Rope
/ropes-1.2.5/src/org/ahmadsoft/ropes/impl/
H A DAbstractRope.java141 public boolean startsWith(CharSequence prefix) { method in class:AbstractRope
142 return startsWith(prefix, 0);
146 public boolean startsWith(CharSequence prefix, int offset) { method in class:AbstractRope
167 return startsWith(suffix, length() - suffix.length() - offset);
/ropes-1.2.5/src/org/ahmadsoft/ropes/test/
H A DRopeTest.java547 assertTrue(r.startsWith(""));
548 assertTrue(r.startsWith("H"));
549 assertTrue(r.startsWith("He"));
550 assertTrue(r.startsWith("Hello "));
551 assertTrue(r.startsWith("", 0));
552 assertTrue(r.startsWith("H", 0));
553 assertTrue(r.startsWith("He", 0));
554 assertTrue(r.startsWith("Hello ", 0));
555 assertTrue(r.startsWith("", 1));
556 assertTrue(r.startsWith("
[all...]
/ropes-1.2.5/
H A Dropes.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ahmadsoft/ org/ahmadsoft/ropes/ org/ahmadsoft/ropes/impl/ ...

Completed in 8 milliseconds