Lines Matching full:character
48 * Return true if the character is NOT printable ASCII.
57 * U+FFFF and \Uxxxxxxxx for U+10000 and above. If the character is
64 * Returns the index of a character, ignoring quoted text.
72 * @param c character to search for
83 * character at or after pos, or str.length(), if there is none.
85 * @return the index of the first non-white-space character at or
113 * Parse a single non-whitespace character 'ch', optionally
117 * offset of the first character to be parsed. On output, pos[0]
118 * is the index after the last parsed character. If the parse
120 * @param ch the non-whitespace character to be parsed.
131 * successful, the offset of the next non-space character is
135 * character matches one or more required spaces. A '~' character
136 * matches zero or more optional spaces. A '#' character matches
142 * @return the position after the last character parsed, or -1 if
160 * @param index offset to first character to parse
161 * @param limit offset after last character to parse
162 * @return index after last parsed character, or -1 on parse failure.
174 * character to parse. On output, the character after the last
175 * parsed character.
185 * first character to examine. It must be less than str.length(),
186 * and it must not point to a whitespace character. That is, must
189 * OUTPUT, the position after the last parsed character.
202 * parsed character. If the parse failed, it will be unchanged on