Lines Matching refs:tag

168         return _CXML("Warning: Unmatched end tag");
170 return _CXML("Warning: No XML tag found");
174 return _CXML("Error: Missing start tag name");
176 return _CXML("Error: Missing end tag name");
178 return _CXML("Error: Unmatched end tag");
180 return _CXML("Error: Unmatched clear tag end");
557 XMLNode XMLNode::openFileHelper(XMLCSTR filename, XMLCSTR tag) {
571 XMLNode xnode = XMLNode::parseFile(filename, tag, &pResults);
580 s2 = tag;
750 // inside a tag
1088 // First check whether the token is in the clear tag list (meaning it
1101 // If we didn't find a clear tag then check for standard tokens
1141 // Close tag
1146 // Check for tag start and tag end
1149 // Peek at the next character to see if we have an end tag '</',
1153 // If we have a tag end...
1160 // If we have an XML declaration tag
1168 // Otherwise we must have a start tag
1174 // Check to see if we have a short hand type end tag ('/>').
1177 // Peek at the next character to see if we have a short end tag '/>'
1180 // If we have a short hand end tag...
1188 // If we haven't found a short hand closing tag then drop into the
1206 // If we find a slash then this maybe text or a short hand end tag
1207 // Peek at the next character to see it we have short hand end tag
1209 // If we found a short hand end tag then we need to exit the loop
1435 // Find the closing tag
1468 // If we failed to find the end tag
1550 enum Status status; // inside or outside a tag
1557 // Assume we are outside of a tag definition
1561 // If this is not the first call then we should only be called when inside a tag.
1574 // If we are outside of a tag definition
1587 // If we found a start tag '<' and declarations '<?'
1597 // Find the name of the tag
1636 // evented in a end tag specified in XML then
1639 // (the element name and end tag name must
1643 // have an unmatched end tag
1649 // If the end tag matches the name of this
1692 // If we found an end tag
1698 // Find the name of the end tag
1701 // The end tag should be text
1708 // After the end tag we should find a closing tag
1717 // of the tag cannot be found we need to keep returning to
1752 // If we are inside a tag definition we need to search for attributes
1773 // If we found a closing tag...
1776 // We are now outside the tag
1781 // If we found a short hand '/>' closing tag then we can
1818 // If we found a closing tag 'Attribute >' or a short hand
1819 // closing tag 'Attribute />'
1840 // If this is the end of the tag then return to the caller
1846 // We are now outside the tag
1963 XMLNode XMLNode::parseString(XMLCSTR lpszXML, XMLCSTR tag,
1990 if (tag && (*tag) && ((!name) || (xstricmp(name, tag)))) {
1991 xnode = xnode.getChildNode(tag);
2023 XMLNode XMLNode::parseFile(XMLCSTR filename, XMLCSTR tag, XMLResults *pResults) {
2086 XMLNode x = parseString((XMLSTR)(buf + headerSz), tag, pResults);
2175 // If there are child nodes we need to terminate the start tag