MCPcopy Index your code
hub / github.com/OpenTSDB/opentsdb / skip

Method skip

src/query/expression/ExpressionReader.java:65–70  ·  view source on GitHub ↗

@param num the number of characters to skip

(final int num)

Source from the content-addressed store, hash-verified

63
64 /** @param num the number of characters to skip */
65 public void skip(final int num) {
66 if (num < 0) {
67 throw new UnsupportedOperationException("Skipping backwards is not allowed");
68 }
69 mark += num;
70 }
71
72 /**
73 * Checks to see if the next character matches the parameter

Callers 6

ctorEmptyStringMethod · 0.95
skipMethod · 0.95
skipOutOfBoundsMethod · 0.95
skipBackwardsMethod · 0.95
isNextCharMethod · 0.95
parseMethod · 0.45

Calls

no outgoing calls

Tested by 5

ctorEmptyStringMethod · 0.76
skipMethod · 0.76
skipOutOfBoundsMethod · 0.76
skipBackwardsMethod · 0.76
isNextCharMethod · 0.76