Home
last modified time | relevance | path

Searched refs:notations (Results 1 – 25 of 35) sorted by relevance

12

/external/expat/xmlwf/
Dxmlwf.c370 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/
Dtest_minidom.py35 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/
Dtest_minidom.py32 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/
Dexpatbuilder.py256 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)
Dminidom.py1291 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/
Dexpatbuilder.py256 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)
Dminidom.py1246 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/
Dxml.dom.rst460 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
Dxml.sax.handler.rst127 than notations and unparsed entities.
/external/python/cpython3/Doc/library/
Dxml.dom.rst445 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
Dxml.sax.handler.rst128 than notations and unparsed entities.
/external/libxml2/
Dxmlsave.c728 (dtd->attributes == NULL) && (dtd->notations == NULL) && in xmlDtdDumpOutput()
738 if ((dtd->notations != NULL) && ((dtd->doc == NULL) || in xmlDtdDumpOutput()
741 (xmlNotationTablePtr) dtd->notations); in xmlDtdDumpOutput()
Dvalid.c2384 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()
DSAX2.c1616 ((ctxt->myDoc->intSubset->notations == NULL) && in xmlSAX2StartElement()
2233 ((ctxt->myDoc->intSubset->notations == NULL) && in xmlSAX2StartElementNs()
Dtree.c1138 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()
DNEWS1360 (William), notations serialization missing, xmlGetNodePath (Dodji),
2263 - included a number of bug fixes(XML push parser, 51876, notations,
DChangeLog4447 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/
Dtree.h418 void *notations; /* Hash table for notations if any */ member
/external/libxml2/os400/libxmlrpg/
Dtree.rpgle440 d notations * notations hash table
/external/python/cpython2/Doc/reference/
Dlexical_analysis.rst412 Literals are notations for constant values of some built-in types.
/external/python/cpython3/Doc/reference/
Dlexical_analysis.rst400 Literals are notations for constant values of some built-in types.
/external/python/cpython3/Doc/faq/
Ddesign.rst222 mathematics which likes notations where the visuals help the
/external/python/cpython2/Doc/faq/
Ddesign.rst233 mathematics which likes notations where the visuals help the
/external/one-true-awk/
DFIXES315 patterns of characters. in any case, the notations [:lower:], etc.,
/external/scapy/doc/scapy/
Dusage.rst380 Use either notations to scan ports 400 through 443 on the system:

12