Home
last modified time | relevance | path

Searched refs:firstAmp (Results 1 – 1 of 1) sorted by relevance

/external/owasp/sanitizer/src/main/org/owasp/html/
DEncoding.java44 int firstAmp = s.indexOf('&'); in decodeHtml() local
46 if ((firstAmp & safeLimit) < 0) { return s; } in decodeHtml()
53 int amp = firstAmp; in decodeHtml()
67 firstAmp < 0 in decodeHtml()
69 ? firstAmp : Math.min(firstAmp, safeLimit)); in decodeHtml()