Lines Matching refs:is

11  * distributed under the License is distributed on an "AS IS" BASIS,
44 * // name now contains "Joe User". (The string is first decoded, which
45 * // converts the '+' to a ' '. Then the string is sanitized, which
46 * // converts the ' ' to an '_'. (The ' ' is converted because the default
48 * and ' ' is a special character.)
116 * whether space is a legal character or not.
291 * <li>If neither spaces nor other white space is OK, then
296 * either ' ' or '_', depending on whether a space is itself a
367 * Check if c is whitespace.
369 * @return true if c is a whitespace character
386 * Check whether an individual character is legal. Uses the
389 * @return true if c is a legal character
413 * <b>Note:</b> The default unregistered parameter value sanitizer is
415 * is returned by calling createAllIllegal.
558 * <li>the last instance of a repeated parameter is preferred.
559 * <li>The default value sanitizer is an AllIllegal value sanitizer.
567 * This constructor is provided for convenience when the
568 * default parsing behavior is acceptable.
570 * Because the URL is parsed before the constructor returns, there isn't
581 * <li>the last instance of a repeated parameter is preferred.
582 * <li>The default value sanitizer is an AllIllegal value sanitizer.
593 * calling parseQuery(). If there is no query portion it is
594 * treated as if the query portion is an empty string.
610 * Parse a query. A query string is any number of parameter-value clauses
612 * is a parameter followed by an equal sign, followed by a value. If the
613 * equal sign is missing, the value is assumed to be the empty string.
712 * are not allowed, then they will be dropped when a query is sanitized.
725 * allowed, they will be dropped when a query is parsed.
734 * Set whether or not the first occurrence of a repeated parameter is
735 * preferred. True means the first repeated parameter is preferred.
736 * False means that the last repeated parameter is preferred.
738 * The preferred parameter is the one that is returned when getParameter
739 * is called.
743 * parameter is preferred.
752 * Get whether or not the first occurrence of a repeated parameter is
754 * @return true if the first occurrence of a repeated parameter is
766 * the value. If all goes well then addSanitizedValue is called with
803 * is no value sanitizer registered for the parameter.
814 * except if there is no value sanitizer registered for a parameter, and
815 * unregistered paramaters are allowed, then the default value sanitizer is
873 * Test if a character is a hexidecimal digit. Both upper case and lower
876 * @return true if c is a hex digit.
884 * If the character is not a hexidecimal digit, then -1 is returned.