MCPcopy Index your code
hub / github.com/apache/tomcat / indexOf

Method indexOf

java/org/apache/tomcat/util/buf/MessageBytes.java:550–553  ·  view source on GitHub ↗

Find the index of a string. @param s the string @param starting the starting position @return the index

(String s, int starting)

Source from the content-addressed store, hash-verified

548 * @return the index
549 */
550 public int indexOf(String s, int starting) {
551 toString();
552 return strValue.indexOf(s, starting);
553 }
554
555 // Inefficient initial implementation. Will be replaced on the next
556 // round of tune-up

Callers 1

indexOfIgnoreCaseMethod · 0.45

Calls 1

toStringMethod · 0.95

Tested by

no test coverage detected