Lines Matching refs:length

191    * @param length The number of characters to read from the array.
197 public void characters(char ch[], int start, int length)
217 m_writer.write(ch, start, length);
221 writeNormalizedChars(ch, start, length, m_lineSepUse);
225 super.fireCharEvent(ch, start, length);
239 * @param length The number of characters to read from the array.
244 public void charactersRaw(char ch[], int start, int length)
250 writeNormalizedChars(ch, start, length, m_lineSepUse);
265 * @param length The number of characters to read from the array.
275 final int length,
281 final int end = start + length;
373 * @param length The number of characters to read from the array.
379 public void cdata(char ch[], int start, int length)
384 writeNormalizedChars(ch, start, length, m_lineSepUse);
386 super.fireCDATAEvent(ch, start, length);
413 * @param length The number of characters to read from the array.
420 public void ignorableWhitespace(char ch[], int start, int length)
426 writeNormalizedChars(ch, start, length, m_lineSepUse);
474 final int length = data.length();
475 if (length > m_charsBuff.length)
477 m_charsBuff = new char[length*2 + 1];
479 data.getChars(0, length, m_charsBuff, 0);
480 comment(m_charsBuff, 0, length);
492 * @param length The number of characters to use from the array.
495 public void comment(char ch[], int start, int length)
501 super.fireCommentEvent(ch, start, length);
575 final int length = characters.length();
576 if (length > m_charsBuff.length)
578 m_charsBuff = new char[length*2 + 1];
580 characters.getChars(0, length, m_charsBuff, 0);
581 characters(m_charsBuff, 0, length);