MCPcopy Create free account
hub / github.com/JetBrains/skija / previous

Method previous

shared/java/BreakIterator.java:401–408  ·  view source on GitHub ↗

Returns the boundary following the current boundary. If the current boundary is the last text boundary, it returns BreakIterator#DONE and the iterator's current position is unchanged. Otherwise, the iterator's current position is set to the boundary following the current boundary.

()

Source from the content-addressed store, hash-verified

399 * boundary.
400 */
401 public int previous() {
402 try {
403 Stats.onNativeCall();
404 return _nPrevious(_ptr);
405 } finally {
406 Reference.reachabilityFence(this);
407 }
408 }
409
410 /**
411 * Returns the first boundary. The iterator's current position is set to the first text boundary.

Callers 1

nextMethod · 0.95

Calls 2

onNativeCallMethod · 0.95
_nPreviousMethod · 0.95

Tested by

no test coverage detected