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

  /external/owasp/sanitizer/src/main/org/owasp/html/
Encoding.java 170 if (ch < REPLACEMENTS.length) {
171 String repl = REPLACEMENTS[ch];
215 // TODO: is this dead code due to REPLACEMENTS above.
244 static final String[] REPLACEMENTS = new String[0x61];
253 REPLACEMENTS[i] = ""; // Elide
257 REPLACEMENTS['"'] = "&#" + ((int) '"') + ";"; // Attribute delimiter.
258 REPLACEMENTS['&'] = "&amp;"; // HTML special.
260 REPLACEMENTS['\''] = "&#" + ((int) '\'') + ";"; // Attribute delimiter.
261 REPLACEMENTS['+'] = "&#" + ((int) '+') + ";"; // UTF-7 special.
262 REPLACEMENTS['<'] = "&lt;"; // HTML special
    [all...]
  /external/chromium_org/build/linux/unbundle/
replace_gyp_files.py 18 REPLACEMENTS = {
60 for flag, path in REPLACEMENTS.items():
  /external/chromium_org/tools/gyp/tools/
pretty_vcproj.py 23 REPLACEMENTS = dict()
117 for key in REPLACEMENTS:
118 filename = filename.replace(key, REPLACEMENTS[key])
293 REPLACEMENTS[key] = value
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 

Completed in 227 milliseconds