Lines Matching full:character
157 * Set of {@code Character}s considered whitespace in Javascript.
160 private static final Set<Character> JAVASCRIPT_WHITESPACE =
173 * Set of {@code Character}s considered whitespace in HTML.
176 private static final Set<Character> HTML_WHITESPACE =
232 * Determines if the specified character is an HTML whitespace character.
233 * A character is an HTML whitespace character if and only if it is one
236 * <li>A <code>Space</code> character
237 * <li>A <code>Tab</code> character
238 * <li>A <code>Line feed</code> character
239 * <li>A <code>Carriage Return</code> character
240 * <li>A <code>Zero-Width Space</code> character
247 * @return {@code true} if the character is an HTML whitespace character
256 * Determines if the specified character is an ECMAScript whitespace or line
257 * terminator character. A character is a whitespace or line terminator if
260 * <li>A white-space character (<code>Tab</code>, <code>Vertical Tab</code>,
263 * <li>A line terminator character (<code>Line Feed</code>,
270 * <code>Character.isWhitespace</code>.
283 * Determines if the specified character is a valid character in an
288 * <li>It does not distinguish between the first character of an identifier
293 * We are considering leveraging <code>Character.isJavaIdentifierStart</code>
294 * and <code>Character.isJavaIdentifierPart</code> given that Java
300 * character; otherwise {@code false}
324 * Encodes the specified character using Ascii for convenient insertion into