Home
last modified time | relevance | path

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

/external/jsilver/src/com/google/streamhtmlparser/impl/
DHtmlParserImpl.java26 import com.google.streamhtmlparser.util.HtmlUtils;
242 if (HtmlUtils.isAttributeJavascript(attribute)) { in getAttributeType()
245 if (HtmlUtils.isAttributeUri(attribute)) { in getAttributeType()
248 if (HtmlUtils.isAttributeStyle(attribute)) { in getAttributeType()
254 HtmlUtils.META_REDIRECT_TYPE redirectType = in getAttributeType()
255 HtmlUtils.parseContentAttributeForUrl(getValue()); in getAttributeType()
256 if (redirectType == HtmlUtils.META_REDIRECT_TYPE.URL_START || in getAttributeType()
257 redirectType == HtmlUtils.META_REDIRECT_TYPE.URL) in getAttributeType()
320 return (HtmlUtils.parseContentAttributeForUrl(getValue()) == in isUrlStart()
321 HtmlUtils.META_REDIRECT_TYPE.URL_START); in isUrlStart()
[all …]
DJavascriptParserImpl.java22 import com.google.streamhtmlparser.util.HtmlUtils;
185 if (HtmlUtils.isJavascriptWhitespace(ccBuffer.getChar(position))) { in enterStateJsSlash()
227 if (lastIdentifier != null && HtmlUtils in enterStateJsSlash()
252 if (HtmlUtils.isJavascriptWhitespace(ccBuffer.getChar(-2))) { in enterStateJsCommentAfter()
DGenericParser.java23 import com.google.streamhtmlparser.util.HtmlUtils;
115 HtmlUtils.encodeCharForAscii(input), in parse()
/external/jsilver/src/com/google/streamhtmlparser/util/
DJavascriptTokenBuffer.java111 if (HtmlUtils.isJavascriptWhitespace(input) && in appendChar()
112 HtmlUtils.isJavascriptWhitespace(getChar(-1))) { in appendChar()
196 if (HtmlUtils.isJavascriptWhitespace(getChar(-1))) {
200 for (position = end; HtmlUtils.isJavascriptIdentifier(getChar(position));
DHtmlUtils.java40 public final class HtmlUtils { class
45 private HtmlUtils() { in HtmlUtils() method in HtmlUtils
DEntityResolver.java204 if ((input == ';') || (HtmlUtils.isHtmlSpace(input))) { in processChar()