Home | History | Annotate | Download | only in util

Lines Matching defs:input

92    * @param input the {@code String} to append, cannot be {@code null}
95 public void appendString(String input) {
96 if (input == null) {
97 throw new NullPointerException("input == null is not allowed");
99 for (int i = 0; i < input.length(); i++) {
100 appendChar(input.charAt(i));
108 * @param input the {@code char} to append
110 public void appendChar(char input) {
111 if (HtmlUtils.isJavascriptWhitespace(input) &&
115 buffer[endIndex] = input;
164 * Sets the given {@code input} at the given {@code position} of the buffer.
172 * @param input The character to set in the buffer
175 public boolean setChar(int position, char input) {
183 buffer[absolutePosition] = input;