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

  /external/owasp/sanitizer/src/main/org/owasp/html/
Strings.java 104 private static final char[] UCASE_CHARS = new char['z' + 1];
108 for (int i = 0; i < 'a'; ++i) { UCASE_CHARS[i] = (char) i; }
109 for (int i = 'a'; i <= 'z'; ++i) { UCASE_CHARS[i] = (char) (i & ~0x20); }
134 chars[i] = UCASE_CHARS[c];
138 chars[i] = UCASE_CHARS[c];
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 

Completed in 180 milliseconds