Home | History | Annotate | Download | only in base

Lines Matching refs:percent

48   // Percent of string that the CharMatcher matches
49 @Param({"0", "10", "50", "100"}) int percent;
80 this.string = checkString(length, percent, config.matchingChars,
105 private static String checkString(int length, int percent,
125 // Move zero index to front to force a matching character (if percent > 0)
130 // zero percent values result in a non-zero threshold (so we always have at
132 int threshold = ((percent * length) + 99) / 100;