HomeSort by relevance Sort by last modified time
    Searched defs:LCASE_CHARS (Results 1 - 2 of 2) sorted by null

  /external/owasp/sanitizer/src/main/org/owasp/html/
Strings.java 103 private static final char[] LCASE_CHARS = new char['Z' + 1];
106 for (int i = 0; i < 'A'; ++i) { LCASE_CHARS[i] = (char) i; }
107 for (int i = 'A'; i <= 'Z'; ++i) { LCASE_CHARS[i] = (char) (i | 0x20); }
116 chars[i] = LCASE_CHARS[c];
120 chars[i] = LCASE_CHARS[c];
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 

Completed in 391 milliseconds