Home | History | Annotate | Download | only in ref

Lines Matching defs:atts

475       java.lang.String qName, Attributes atts)
495 int nAtts=(atts==null) ? 0 : atts.getLength();
499 qName=atts.getQName(i);
517 m_nsNames.stringToIndex(atts.getValue(i)),
518 atts.getType(i).equalsIgnoreCase("ID"));
524 qName=atts.getQName(i);
544 m_char.append(atts.getValue(i)); // Single-string value
548 appendAttribute(m_nsNames.stringToIndex(atts.getURI(i)),
551 atts.getType(i).equalsIgnoreCase("ID"),
683 // public int createElement(int nsIndex, int nameIndex, Attributes atts)
702 // setAttributes(atts);
726 // * @param atts The attributes attached to the element, if any.
730 // public int createElement(String name, Attributes atts)
742 // return createElement(nsIndex, nameIndex, atts);
762 // * @param atts The attributes attached to the element, if any.
766 // public int createElementNS(String ns, String name, Attributes atts)
778 // return createElement(nsIndex, nameIndex, atts);
818 // * @param atts Attributes to be created.
820 // void setAttributes(Attributes atts) {
821 // int atLength = (null == atts) ? 0 : atts.getLength();
823 // String qname = atts.getQName(i);
824 // createAttribute(atts.getQName(i), atts.getValue(i));