Lines Matching refs:context
541 static XML_Bool setContext(XML_Parser parser, const XML_Char *context);
1356 XML_ExternalEntityParserCreate(XML_Parser oldParser, const XML_Char *context, in XML_ExternalEntityParserCreate() argument
1446 if (! context) in XML_ExternalEntityParserCreate()
1501 if (context) { in XML_ExternalEntityParserCreate()
1504 || ! setContext(parser, context)) { in XML_ExternalEntityParserCreate()
2966 const XML_Char *context; in doContent() local
2968 context = getContext(parser); in doContent()
2970 if (! context) in doContent()
2973 parser->m_externalEntityRefHandlerArg, context, entity->base, in doContent()
6765 setContext(XML_Parser parser, const XML_Char *context) { in setContext() argument
6766 if (context == NULL) { in setContext()
6771 const XML_Char *s = context; in setContext()
6773 while (*context != XML_T('\0')) { in setContext()
6784 context = s; in setContext()
6805 for (context = s + 1; *context != CONTEXT_SEP && *context != XML_T('\0'); in setContext()
6806 context++) in setContext()
6807 if (! poolAppendChar(&parser->m_tempPool, *context)) in setContext()
6816 if (*context != XML_T('\0')) in setContext()
6817 ++context; in setContext()
6818 s = context; in setContext()