MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / lastIndexOf

Method lastIndexOf

Ports/CLDC11/src/java/lang/String.java:251–253  ·  view source on GitHub ↗
(int ch)

Source from the content-addressed store, hash-verified

249 /// such that: this.charAt(
250 /// ) == ch is true. The String is searched backwards starting at the last character.
251 public int lastIndexOf(int ch){
252 return 0; //TODO codavaj!!
253 }
254
255 /// Returns the index within this string of the last occurrence of the specified character, searching backward starting at the specified index. That is, the index returned is the largest value
256 /// such that: (this.charAt(k) == ch) && (k <= fromIndex) is true.

Callers 15

resolveMethod · 0.95
sendMessageMethod · 0.95
executeMethod · 0.95
listFilesMethod · 0.95
setBrowserURLMethod · 0.95
buildShortClassTagMethod · 0.95
locateCssThemeFileMethod · 0.95
generateSchemaForMethod · 0.95
runMethod · 0.95

Calls 4

lengthMethod · 0.95
charAtMethod · 0.95
lengthMethod · 0.65
toCharArrayMethod · 0.45

Tested by

no test coverage detected