Lines Matching defs:context
510 static XML_Bool setContext(XML_Parser parser, const XML_Char *context);
957 /* implicit context only set for root parser, since child
1259 XML_ExternalEntityParserCreate(XML_Parser oldParser, const XML_Char *context,
1347 if (! context)
1401 if (context) {
1404 || ! setContext(parser, context)) {
2888 const XML_Char *context;
2890 context = getContext(parser);
2892 if (! context)
2895 parser->m_externalEntityRefHandlerArg, context, entity->base,
4507 "<!"). In a DTD context, that isn't legal.
6632 setContext(XML_Parser parser, const XML_Char *context) {
6634 const XML_Char *s = context;
6636 while (*context != XML_T('\0')) {
6647 context = s;
6668 for (context = s + 1; *context != CONTEXT_SEP && *context != XML_T('\0');
6669 context++)
6670 if (! poolAppendChar(&parser->m_tempPool, *context))
6679 if (*context != XML_T('\0'))
6680 ++context;
6681 s = context;