Lines Matching refs:start

30  * by recording start and length indices within this single buffer. This
338 // us pointing at the start of a chunk which has not yet been allocated. Rather than
640 * @param start offset in chars of first character to be copied,
644 public final void append(char[] chars, int start, int length)
652 int copyfrom = start;
821 * @param start Offset of first character in the range.
824 public boolean isWhitespace(int start, int length)
827 int sourcechunk = start >>> m_chunkBits;
828 int sourcecolumn = start & m_chunkMask;
857 * @param start Offset of first character in the range.
862 public String getString(int start, int length)
864 int startColumn = start & m_chunkMask;
865 int startChunk = start >>> m_chunkBits;
880 * @param start Offset of first character in the range.
884 StringBuffer getString(StringBuffer sb, int start, int length)
886 return getString(sb, start >>> m_chunkBits, start & m_chunkMask, length);
972 * @param start Offset of first character in the range.
978 org.xml.sax.ContentHandler ch, int start, int length)
982 int startChunk = start >>> m_chunkBits;
983 int startColumn = start & m_chunkMask;
989 int stop = start + length;
1019 * @param start Offset of first character in the range.
1026 * at the start of the following chunk (if any) should be converted to a
1030 * at the start of the following chunk (if any) should be completely
1038 org.xml.sax.ContentHandler ch, int start, int length)
1047 int stop = start + length;
1048 int startChunk = start >>> m_chunkBits;
1049 int startColumn = start & m_chunkMask;
1093 * @param start The start position in the array.
1114 * at the start of the following chunk (if any) should be converted to a
1118 * at the start of the following chunk (if any) should be completely
1128 int start, int length,
1136 int currPos = start;
1137 int limit = start+length;
1192 * @param start The start position in the array.
1199 int start, int length,
1203 sendNormalizedSAXcharacters(ch, start, length,
1214 * @param start Offset of first character in the range.
1220 org.xml.sax.ext.LexicalHandler ch, int start, int length)
1225 String comment = getString(start, length);
1238 * @param dstBegin the start offset in the destination array.