/external/expat/xmlwf/ |
D | xmlwf.c | 370 NotationList **notations; in endDoctypeDecl() local 385 notations = malloc(notationCount * sizeof(NotationList *)); in endDoctypeDecl() 386 if (notations == NULL) { in endDoctypeDecl() 395 notations[i] = p; in endDoctypeDecl() 397 qsort(notations, notationCount, sizeof(NotationList *), notationCmp); in endDoctypeDecl() 407 fputts(notations[i]->notationName, data->fp); in endDoctypeDecl() 408 if (notations[i]->publicId != NULL) { in endDoctypeDecl() 410 fputts(notations[i]->publicId, data->fp); in endDoctypeDecl() 412 if (notations[i]->systemId != NULL) { in endDoctypeDecl() 415 fputts(notations[i]->systemId, data->fp); in endDoctypeDecl() [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_minidom.py | 35 doctype.notations._seq = [] 38 doctype.notations._seq.append(notation) 52 doctype.notations.item(0).ownerDocument = doc 607 and len(clone.notations) == len(doctype.notations) 608 and clone.notations.item(len(clone.notations)) is None 622 for i in range(len(doctype.notations)): 623 sn = doctype.notations.item(i) 624 cn = clone.notations.item(i) 646 and len(clone.notations) == 0 647 and clone.notations.item(0) is None [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_minidom.py | 32 doctype.notations._seq = [] 35 doctype.notations._seq.append(notation) 49 doctype.notations.item(0).ownerDocument = doc 732 and len(clone.notations) == len(doctype.notations) 733 and clone.notations.item(len(clone.notations)) is None 747 for i in range(len(doctype.notations)): 748 sn = doctype.notations.item(i) 749 cn = clone.notations.item(i) 771 and len(clone.notations) == 0 772 and clone.notations.item(0) is None [all …]
|
/external/python/cpython3/Lib/xml/dom/ |
D | expatbuilder.py | 256 doctype.notations._seq = [] 325 self.document.doctype.notations._seq.append(node) 327 del self.document.doctype.notations._seq[-1] 658 for i in range(doctype.notations.length): 659 notation = doctype.notations.item(i)
|
D | minidom.py | 1291 self.notations = ReadOnlySequentialNamedNodeMap() 1309 clone.notations._seq = [] 1310 for n in self.notations._seq: 1312 clone.notations._seq.append(notation) 1908 clone.notations._seq = [] 1909 for n in node.notations._seq: 1912 clone.notations._seq.append(notation)
|
/external/python/cpython2/Lib/xml/dom/ |
D | expatbuilder.py | 256 doctype.notations._seq = [] 329 self.document.doctype.notations._seq.append(node) 331 del self.document.doctype.notations._seq[-1] 665 for i in range(doctype.notations.length): 666 notation = doctype.notations.item(i)
|
D | minidom.py | 1246 self.notations = ReadOnlySequentialNamedNodeMap() 1264 clone.notations._seq = [] 1265 for n in self.notations._seq: 1267 clone.notations._seq.append(notation) 1863 clone.notations._seq = [] 1864 for n in node.notations._seq: 1867 clone.notations._seq.append(notation)
|
/external/python/cpython2/Doc/library/ |
D | xml.dom.rst | 460 Information about the notations and entities declared by a document (including 506 .. attribute:: DocumentType.notations 508 This is a :class:`NamedNodeMap` giving the definitions of notations. For 511 ``None`` if the information is not provided by the parser, or if no notations
|
D | xml.sax.handler.rst | 127 than notations and unparsed entities.
|
/external/python/cpython3/Doc/library/ |
D | xml.dom.rst | 445 Information about the notations and entities declared by a document (including 491 .. attribute:: DocumentType.notations 493 This is a :class:`NamedNodeMap` giving the definitions of notations. For 496 ``None`` if the information is not provided by the parser, or if no notations
|
D | xml.sax.handler.rst | 128 than notations and unparsed entities.
|
/external/libxml2/ |
D | xmlsave.c | 728 (dtd->attributes == NULL) && (dtd->notations == NULL) && in xmlDtdDumpOutput() 738 if ((dtd->notations != NULL) && ((dtd->doc == NULL) || in xmlDtdDumpOutput() 741 (xmlNotationTablePtr) dtd->notations); in xmlDtdDumpOutput()
|
D | valid.c | 2384 table = (xmlNotationTablePtr) dtd->notations; in xmlAddNotationDecl() 2390 dtd->notations = table = xmlHashCreateDict(0, dict); in xmlAddNotationDecl() 3361 if (dtd->notations == NULL) return(NULL); in xmlGetDtdNotationDesc() 3362 table = (xmlNotationTablePtr) dtd->notations; in xmlGetDtdNotationDesc()
|
D | SAX2.c | 1616 ((ctxt->myDoc->intSubset->notations == NULL) && in xmlSAX2StartElement() 2233 ((ctxt->myDoc->intSubset->notations == NULL) && in xmlSAX2StartElementNs()
|
D | tree.c | 1138 if (cur->notations != NULL) in xmlFreeDtd() 1139 xmlFreeNotationTable((xmlNotationTablePtr) cur->notations); in xmlFreeDtd() 4449 if (dtd->notations != NULL) in xmlCopyDtd() 4450 ret->notations = (void *) xmlCopyNotationTable( in xmlCopyDtd() 4451 (xmlNotationTablePtr) dtd->notations); in xmlCopyDtd()
|
D | NEWS | 1360 (William), notations serialization missing, xmlGetNodePath (Dodji), 2263 - included a number of bug fixes(XML push parser, 51876, notations,
|
D | ChangeLog | 4447 QNames and notations. Corrected xmlSchemaGetCanonValue: some 4799 schemata; doing this needed error report fixes for notations, 5107 attribute groups and notations (reported by Michael Hewarth 6001 NOTATIONs, if there is a proof that nobody uses notations ! 17122 * SAX.c: notations can also occur in external subset. 17189 * SAX.c: external subset notations were improperly registered 17868 * valid.[ch]: moved elements, attributes, notations decalarations
|
/external/libxml2/include/libxml/ |
D | tree.h | 418 void *notations; /* Hash table for notations if any */ member
|
/external/libxml2/os400/libxmlrpg/ |
D | tree.rpgle | 440 d notations * notations hash table
|
/external/python/cpython2/Doc/reference/ |
D | lexical_analysis.rst | 412 Literals are notations for constant values of some built-in types.
|
/external/python/cpython3/Doc/reference/ |
D | lexical_analysis.rst | 400 Literals are notations for constant values of some built-in types.
|
/external/python/cpython3/Doc/faq/ |
D | design.rst | 222 mathematics which likes notations where the visuals help the
|
/external/python/cpython2/Doc/faq/ |
D | design.rst | 233 mathematics which likes notations where the visuals help the
|
/external/one-true-awk/ |
D | FIXES | 315 patterns of characters. in any case, the notations [:lower:], etc.,
|
/external/scapy/doc/scapy/ |
D | usage.rst | 380 Use either notations to scan ports 400 through 443 on the system:
|