Home | History | Annotate | Download | only in utils

Lines Matching refs:ch

24  * Class used to verify whether the specified <var>ch</var> 
32 * Returns whether the specified <var>ch</var> conforms to the XML 1.0 definition
35 * @param ch Character to check as XML whitespace.
36 * @return =true if <var>ch</var> is XML whitespace; otherwise =false.
38 public static boolean isWhiteSpace(char ch)
40 return (ch == 0x20) || (ch == 0x09) || (ch == 0xD) || (ch == 0xA);
46 * @param ch Character array to check as XML whitespace.
52 public static boolean isWhiteSpace(char ch[], int start, int length)
59 if (!isWhiteSpace(ch[s]))