Home | History | Annotate | Download | only in tagsoup

Lines Matching refs:length

69 	length = 0;
103 return length;
117 if (index >= 0 && index < length) {
135 if (index >= 0 && index < length) {
153 if (index >= 0 && index < length) {
171 if (index >= 0 && index < length) {
188 if (index >= 0 && index < length) {
211 int max = length * 5;
230 int max = length * 5;
252 int max = length * 5;
272 int max = length * 5;
294 int max = length * 5;
314 int max = length * 5;
341 for (int i = 0; i < (length * 5); i++)
344 length = 0;
359 length = atts.getLength();
360 if (length > 0) {
361 data = new String[length*5];
362 for (int i = 0; i < length; i++) {
393 ensureCapacity(length+1);
394 data[length*5] = uri;
395 data[length*5+1] = localName;
396 data[length*5+2] = qName;
397 data[length*5+3] = type;
398 data[length*5+4] = value;
399 length++;
427 if (index >= 0 && index < length) {
449 if (index >= 0 && index < length) {
450 if (index < length - 1) {
452 (length-index-1)*5);
454 index = (length - 1) * 5;
460 length--;
479 if (index >= 0 && index < length) {
499 if (index >= 0 && index < length) {
519 if (index >= 0 && index < length) {
538 if (index >= 0 && index < length) {
557 if (index >= 0 && index < length) {
583 if (data == null || data.length == 0) {
586 else if (data.length >= n * 5) {
590 max = data.length;
597 if (length > 0) {
598 System.arraycopy(data, 0, newData, 0, length*5);
625 int length;