Searched refs:notationName (Results 1 - 25 of 26) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
H A DEntity.idl25 readonly attribute [ConvertNullStringTo=Null] DOMString notationName;
H A DEntity.h35 String notationName() const { ASSERT_NOT_REACHED(); return String(); } function in class:WebCore::Entity
/external/expat/amiga/include/libraries/
H A Dexpat.h239 const XML_Char *notationName);
251 const XML_Char *notationName);
255 const XML_Char *notationName,
/external/expat/lib/
H A Dexpat.h316 be non-NULL and systemId, publicID, and notationName will be NULL.
323 identifier was provided. The notationName argument will have a
338 const XML_Char *notationName);
350 entityName, systemId and notationName arguments will never be
359 const XML_Char *notationName);
362 whatever was set by XML_SetBase. The notationName will never be
367 const XML_Char *notationName,
/external/libxml2/include/libxml/
H A DSAX.h97 const xmlChar *notationName);
H A DSAX2.h95 const xmlChar *notationName);
H A Dvalid.h383 const xmlChar *notationName);
H A Dparser.h466 * @notationName: the name of the notation
474 const xmlChar *notationName);
/external/expat/xmlwf/
H A Dxmlwf.c460 const XML_Char *notationName,
467 ftprintf(fp, T("<notation name=\"%s\""), notationName);
489 const XML_Char *notationName)
501 else if (notationName) {
508 ftprintf(fp, T(" notation=\"%s\""), notationName);
459 metaNotationDecl(void *userData, const XML_Char *notationName, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) argument
481 metaEntityDecl(void *userData, const XML_Char *entityName, int is_param, const XML_Char *value, int value_length, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId, const XML_Char *notationName) argument
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerHandlerImpl.java292 * @param notationName The name of the associated notation.
298 String name, String publicId, String systemId, String notationName)
304 m_dtdHandler.unparsedEntityDecl(name, publicId, systemId, notationName);
297 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
H A DTransformerIdentityImpl.java844 * @param notationName The name of the associated notation.
852 String name, String publicId, String systemId, String notationName)
858 notationName);
851 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTElementProcessor.java125 * @param notationName The name of the associated notation.
130 String notationName)
128 unparsedEntityDecl(StylesheetHandler handler, String name, String publicId, String systemId, String notationName) argument
H A DStylesheetHandler.java342 * @param notationName The name of the associated notation.
346 String systemId, String notationName)
349 notationName);
345 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMHelper.java1143 String notationName = entity.getNotationName();
1145 if (null != notationName) // then it's unparsed
/external/libxml2/
H A Dlegacy.c1047 * @notationName: the name of the notation
1055 const xmlChar * notationName)
1059 notationName);
1053 unparsedEntityDecl(void *ctx, const xmlChar * name, const xmlChar * publicId, const xmlChar * systemId, const xmlChar * notationName) argument
H A DSAX2.c863 * @notationName: the name of the notation
870 const xmlChar *notationName)
878 name, publicId, systemId, notationName);
883 publicId, systemId, notationName);
903 publicId, systemId, notationName);
868 xmlSAX2UnparsedEntityDecl(void *ctx, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId, const xmlChar *notationName) argument
H A Dxmllint.c1164 * @notationName: the name of the notation
1171 const xmlChar *notationName)
1179 if (notationName == NULL)
1180 notationName = nullstr;
1186 (char *) notationName);
1169 unparsedEntityDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId, const xmlChar *notationName) argument
H A Dvalid.c3342 * @notationName: the notation name to check
3352 const xmlChar *notationName) {
3355 (notationName == NULL)) return(-1);
3357 notaDecl = xmlGetDtdNotationDesc(doc->intSubset, notationName);
3359 notaDecl = xmlGetDtdNotationDesc(doc->extSubset, notationName);
3364 notationName, NULL, NULL);
3351 xmlValidateNotationUse(xmlValidCtxtPtr ctxt, xmlDocPtr doc, const xmlChar *notationName) argument
H A Dxmlschemas.c28280 const xmlChar *notationName)
28286 systemId, notationName);
28278 unparsedEntityDeclSplit(void *ctx, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId, const xmlChar *notationName) argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTM.java1433 String notationName = entity.getNotationName();
1435 if (null != notationName) // then it's unparsed
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java162 * publicId, systemID, notationName, and name.
1619 * @param notationName The name of the associated notation.
1627 String name, String publicId, String systemId, String notationName)
1653 m_entities.addElement(notationName);
1626 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
/external/expat/tests/
H A Druntests.c112 const XML_Char *notationName)
117 const XML_Char *notationName,
104 dummy_entity_decl_handler(void *userData, const XML_Char *entityName, int is_parameter_entity, const XML_Char *value, int value_length, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId, const XML_Char *notationName) argument
116 dummy_notation_decl_handler(void *userData, const XML_Char *notationName, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) argument
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToStream.java3519 public void unparsedEntityDecl(String name, String pubID, String sysID, String notationName) throws SAXException { argument
3536 m_writer.write(notationName);
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h238 @property(readonly, copy) NSString *notationName; variable
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...

Completed in 560 milliseconds

12