MCPcopy Create free account
hub / github.com/HumbleUI/Skija / previous

Method previous

shared/java/BreakIterator.java:402–409  ·  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

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

Callers 1

nextMethod · 0.95

Calls 3

onNativeCallMethod · 0.95
_nPreviousMethod · 0.95
reachabilityFenceMethod · 0.95

Tested by

no test coverage detected