Lines Matching refs:i

86             for (short i = 0; i < list.getLength(); i++) {  in AttributeList()
87 add(list.getNameByIndex(i), list.getTypeByIndex(i), in AttributeList()
88 list.getValueByIndex(i)) ; in AttributeList()
219 for (short i = 0; i < attrLen; i++) { in startElement()
220 if (i != 0) _log.print(align + " ") ; in startElement()
221 _log.print(attr.getNameByIndex(i) + "[" + in startElement()
222 attr.getTypeByIndex(i) + "]=\"" + in startElement()
223 attr.getValueByIndex(i) + "\"") ; in startElement()
224 if (i+1 != attrLen) { in startElement()
362 for (int i = 0; i < tagStack.size(); i++) { in printError()
363 String tag = (String) tagStack.elementAt(i) ; in printError()
418 for (int i = 0; i < tagStack.size(); i++) { in startElement()
419 if (outerTag.equals((String) tagStack.elementAt(i))) { in startElement()
441 for (int i = 0; i < tagStack.size(); i++) { in characters()
442 if (outerTag.equals((String) tagStack.elementAt(i))) { in characters()
545 for (int i = 0; i < attrNames.length; i++) { in Tag()
546 attrList[i][0] = attrNames[i] ; in Tag()
564 for (int i = 0; i < attrValues.length; i++) { in Tag()
565 attrList[i][0] = attrValues[i][0] ; in Tag()
566 attrList[i][1] = "CDATA" ; in Tag()
567 attrList[i][2] = attrValues[i][1] ; in Tag()
576 for (int i = 0; i < attrList.length; i++) { in toString()
577 ret += " " + attrList[i][0] + "="; in toString()
578 if (attrList[i][2] == null) { in toString()
581 ret += "\"" + attrList[i][2] + "\""; in toString()
615 for (int i = 0; i < attrList.length; i++) { in isMatchTo()
616 result &= checkAttr(i, list) ; in isMatchTo()
663 for (int i = 0; i < tags.size(); i++) { in startElement()
664 Tag[] tag = (Tag[]) tags.elementAt(i); in startElement()
667 tags.remove(i--); in startElement()
679 tags.remove(i--) ; in startElement()
695 for (int i = 0; i < chars.size(); i++) { in characters()
696 Object[] chr = (Object[]) chars.elementAt(i); in characters()
699 chars.remove(i--); in characters()
711 chars.remove(i--) ; in characters()
734 for (int i = 0; i < tags.size(); i++) { in check()
735 Tag[] tag = (Tag[]) tags.elementAt(i) ; in check()
743 for (int i = 0; i < chars.size(); i++) { in check()
744 Object[] ch = (Object[]) chars.elementAt(i) ; in check()
796 for (int i = 0; i < props.length; i++) { in createMediaDescriptor()
797 props[i] = new PropertyValue() ; in createMediaDescriptor()
798 props[i].Name = propNames[i] ; in createMediaDescriptor()
799 if (values != null && i < values.length) { in createMediaDescriptor()
800 props[i].Value = values[i] ; in createMediaDescriptor()