Home | History | Annotate | Download | only in base

Lines Matching defs:string

45   // Length of string to match against
48 // Percent of string that the CharMatcher matches
69 private String string;
80 this.string = checkString(length, percent, config.matchingChars,
89 dummy += matcher.trimAndCollapseFrom(string, '!').length();
97 dummy += matcher.matches(string.charAt(i % string.length())) ? 1 : 0;
102 private static final String NONMATCHING_CHARS =
105 private static String checkString(int length, int percent,
106 String matchingChars, Random rand, boolean forceSlow, boolean web) {
141 private static char randomCharFrom(String s, Random rand) {