Lines Matching defs:name

22  *     <data name="n1">
23 * <data name="n2">
24 * <data name="n3" />
26 * <data name="n1" />
27 * <data name="n2" />
28 * <data name="n3" />
32 * <data name="n1">
33 * <data name="n2">
34 * <data name="n3" />
62 * * Neither the name of Frank Vanden Berghen nor the
174 return _CXML("Error: Missing start tag name");
176 return _CXML("Error: Missing end tag name");
1597 // Find the name of the tag
1621 // If the name of the new element differs from the name of
1639 // (the element name and end tag name must
1649 // If the end tag matches the name of this
1663 // If the name of this element matches the
1664 // name of the element we need to create
1698 // Find the name of the end tag
1716 // We need to return to the previous caller. If the name
1755 // Check what part of the attribute (name, equals, value) we
1989 XMLCSTR name = xnode.getName();
1990 if (tag && (*tag) && ((!name) || (xstricmp(name, tag)))) {
2117 // If the element has no name then assume this is the head node.
2713 int XMLNode::nChildNode(XMLCSTR name) const {
2718 if (xstricmp(pc->d->lpszName, name) == 0) j++;
2724 XMLNode XMLNode::getChildNode(XMLCSTR name, int *j) const {
2730 if (!xstricmp(pc->d->lpszName, name)) {
2739 XMLNode XMLNode::getChildNode(XMLCSTR name, int j) const {
2743 while (j-- > 0) getChildNode(name, &i);
2744 return getChildNode(name, &i);
2747 while (i--) if (!xstricmp(name, d->pChild[i].d->lpszName)) break;
2752 XMLNode* XMLNode::getChildNodePtr(XMLCSTR name, int *j) const {
2758 if (!xstricmp(pc->d->lpszName, name)) {
2833 XMLElementPosition XMLNode::positionOfChildNode(XMLCSTR name, int count) const {
2834 if (!name) return positionOfChildNode(count);
2837 getChildNode(name, &j);
2843 XMLNode XMLNode::getChildNodeWithAttribute(XMLCSTR name, XMLCSTR attributeName,
2851 x = getChildNode(name, &i);
2902 XMLCSTR XMLNode::getAttribute(XMLCSTR name, int j) const {
2905 while (j-- > 0) getAttribute(name, &i);
2906 return getAttribute(name, &i);