Home | History | Annotate | Download | only in util

Lines Matching defs:URL

54    * <li>{@code NONE} if it does not contain a URL in the expected format.
55 * <li>{@code URL_START} if it contains a URL but hasn't seen any of
57 * <li>{@code URL} if it contains a URL and has seen at least some of
64 URL
69 * that contains a URL. Used by {@link #parseContentAttributeForUrl}.
72 "^\\s*\\d*\\s*;\\s*URL\\s*=\\s*[\'\"]?";
354 * Parses the given {@code String} to determine if it contains a URL in the
363 * a URL.
369 * value contains a URL and whether we are at the start of the URL or past
370 * the start. We are at the start of the URL if and only if one of the two
373 * <li>The given input does not contain any characters from the URL proper.
374 * Example "5; URL=".
376 * quote leading the URL. Example "5; URL='".
383 * attribute contains a URL [we are not at the start of the URL]:
385 * &lt;meta http-equiv="refresh" content="5; URL=http://www.google.com"&gt;
388 * attribute contains a URL [we are at the start of the URL]:
390 * &lt;meta http-equiv="refresh" content="5; URL="&gt;
393 * attribute does not contain a URL:
401 * of a URL in the given value
413 return META_REDIRECT_TYPE.URL;