Lines Matching defs:flag
1008 flag: int
1013 Possible flag values are XML_PARAM_ENTITY_PARSING_NEVER,
1015 XML_PARAM_ENTITY_PARSING_ALWAYS. Returns true if setting the flag
1020 pyexpat_xmlparser_SetParamEntityParsing_impl(xmlparseobject *self, int flag)
1023 flag = XML_SetParamEntityParsing(self->itself, flag);
1024 return PyLong_FromLong(flag);
1033 flag: bool = True
1040 information to the parser. 'flag' defaults to True if not provided.
1045 int flag)
1051 rc = XML_UseForeignDTD(self->itself, flag ? XML_TRUE : XML_FALSE);