Lines Matching refs:ctx
756 * @ctx: the user data (XML parser context)
764 getPublicId(void *ctx)
767 return (xmlSAX2GetPublicId(ctx));
772 * @ctx: the user data (XML parser context)
781 getSystemId(void *ctx)
784 return (xmlSAX2GetSystemId(ctx));
789 * @ctx: the user data (XML parser context)
797 getLineNumber(void *ctx)
800 return (xmlSAX2GetLineNumber(ctx));
805 * @ctx: the user data (XML parser context)
813 getColumnNumber(void *ctx)
816 return (xmlSAX2GetColumnNumber(ctx));
821 * @ctx: the user data (XML parser context)
829 isStandalone(void *ctx)
832 return (xmlSAX2IsStandalone(ctx));
837 * @ctx: the user data (XML parser context)
845 hasInternalSubset(void *ctx)
848 return (xmlSAX2HasInternalSubset(ctx));
853 * @ctx: the user data (XML parser context)
861 hasExternalSubset(void *ctx)
864 return (xmlSAX2HasExternalSubset(ctx));
869 * @ctx: the user data (XML parser context)
878 internalSubset(void *ctx, const xmlChar * name,
882 xmlSAX2InternalSubset(ctx, name, ExternalID, SystemID);
887 * @ctx: the user data (XML parser context)
896 externalSubset(void *ctx, const xmlChar * name,
900 xmlSAX2ExternalSubset(ctx, name, ExternalID, SystemID);
905 * @ctx: the user data (XML parser context)
919 resolveEntity(void *ctx, const xmlChar * publicId,
923 return (xmlSAX2ResolveEntity(ctx, publicId, systemId));
928 * @ctx: the user data (XML parser context)
937 getEntity(void *ctx, const xmlChar * name)
940 return (xmlSAX2GetEntity(ctx, name));
945 * @ctx: the user data (XML parser context)
954 getParameterEntity(void *ctx, const xmlChar * name)
957 return (xmlSAX2GetParameterEntity(ctx, name));
963 * @ctx: the user data (XML parser context)
974 entityDecl(void *ctx, const xmlChar * name, int type,
979 xmlSAX2EntityDecl(ctx, name, type, publicId, systemId, content);
984 * @ctx: the user data (XML parser context)
996 attributeDecl(void *ctx, const xmlChar * elem, const xmlChar * fullname,
1001 xmlSAX2AttributeDecl(ctx, elem, fullname, type, def, defaultValue,
1007 * @ctx: the user data (XML parser context)
1016 elementDecl(void *ctx, const xmlChar * name, int type,
1020 xmlSAX2ElementDecl(ctx, name, type, content);
1025 * @ctx: the user data (XML parser context)
1034 notationDecl(void *ctx, const xmlChar * name,
1038 xmlSAX2NotationDecl(ctx, name, publicId, systemId);
1043 * @ctx: the user data (XML parser context)
1053 unparsedEntityDecl(void *ctx, const xmlChar * name,
1058 xmlSAX2UnparsedEntityDecl(ctx, name, publicId, systemId,
1064 * @ctx: the user data (XML parser context)
1072 setDocumentLocator(void *ctx ATTRIBUTE_UNUSED,
1080 * @ctx: the user data (XML parser context)
1086 startDocument(void *ctx)
1090 xmlSAX2StartDocument(ctx);
1095 * @ctx: the user data (XML parser context)
1101 endDocument(void *ctx)
1104 xmlSAX2EndDocument(ctx);
1109 * @ctx: the user data (XML parser context)
1120 attribute(void *ctx ATTRIBUTE_UNUSED,
1129 * @ctx: the user data (XML parser context)
1137 startElement(void *ctx, const xmlChar * fullname, const xmlChar ** atts)
1139 xmlSAX2StartElement(ctx, fullname, atts);
1144 * @ctx: the user data (XML parser context)
1151 endElement(void *ctx, const xmlChar * name ATTRIBUTE_UNUSED)
1154 xmlSAX2EndElement(ctx, name);
1159 * @ctx: the user data (XML parser context)
1166 reference(void *ctx, const xmlChar * name)
1169 xmlSAX2Reference(ctx, name);
1174 * @ctx: the user data (XML parser context)
1182 characters(void *ctx, const xmlChar * ch, int len)
1185 xmlSAX2Characters(ctx, ch, len);
1190 * @ctx: the user data (XML parser context)
1199 ignorableWhitespace(void *ctx ATTRIBUTE_UNUSED,
1208 * @ctx: the user data (XML parser context)
1216 processingInstruction(void *ctx, const xmlChar * target,
1220 xmlSAX2ProcessingInstruction(ctx, target, data);
1225 * @ctx: the user data (XML parser context)
1233 globalNamespace(void *ctx ATTRIBUTE_UNUSED,
1242 * @ctx: the user data (XML parser context)
1250 setNamespace(void *ctx ATTRIBUTE_UNUSED,
1258 * @ctx: the user data (XML parser context)
1267 getNamespace(void *ctx ATTRIBUTE_UNUSED)
1275 * @ctx: the user data (XML parser context)
1286 checkNamespace(void *ctx ATTRIBUTE_UNUSED,
1295 * @ctx: the user data (XML parser context)
1303 namespaceDecl(void *ctx ATTRIBUTE_UNUSED,
1312 * @ctx: the user data (XML parser context)
1319 comment(void *ctx, const xmlChar * value)
1322 xmlSAX2Comment(ctx, value);
1327 * @ctx: the user data (XML parser context)
1335 cdataBlock(void *ctx, const xmlChar * value, int len)
1338 xmlSAX2CDataBlock(ctx, value, len);