Home
last modified time | relevance | path

Searched refs:XML_Bool (Results 1 – 10 of 10) sorted by relevance

/freebsd-13-stable/contrib/expat/lib/
HDexpat.h57 typedef unsigned char XML_Bool; typedef
58 #define XML_TRUE ((XML_Bool)1)
59 #define XML_FALSE ((XML_Bool)0)
286 XMLPARSEAPI(XML_Bool)
721 XML_UseForeignDTD(XML_Parser parser, XML_Bool useDTD);
828 XML_StopParser(XML_Parser parser, XML_Bool resumable);
849 XML_Bool finalBuffer;
1051 XMLPARSEAPI(XML_Bool)
1057 XMLPARSEAPI(XML_Bool)
1063 XMLPARSEAPI(XML_Bool)
[all …]
HDxmlparse.c327 XML_Bool open;
328 XML_Bool hasMore; /* true if entity has not been completely processed */
332 XML_Bool is_param;
333 XML_Bool is_internal; /* true if declared in internal subset outside PE */
368 XML_Bool maybeTokenized;
369 XML_Bool xmlns;
374 XML_Bool isCdata;
401 XML_Bool keepProcessing;
404 XML_Bool hasParamEntityRefs;
405 XML_Bool standalone;
[all …]
HDinternal.h172 XML_Bool g_reparseDeferralEnabledDefault; // written ONLY in runtests.c
/freebsd-13-stable/contrib/expat/tests/
HDcommon.h83 extern XML_Bool g_resumable;
84 extern XML_Bool g_abortable;
HDcommon.c140 XML_Bool g_resumable = XML_FALSE;
143 XML_Bool g_abortable = XML_FALSE;
HDmisc_tests.c368 const XML_Bool suspendOrNot[] = {XML_FALSE, XML_TRUE}; in START_TEST()
376 const XML_Bool suspend = suspendOrNot[suspendOrNotIndex]; in START_TEST()
570 const XML_Bool cases[] = {XML_TRUE, XML_FALSE}; in START_TEST()
572 const XML_Bool resumable = cases[i]; in START_TEST()
HDhandlers.h597 XML_Bool seen;
HDbasic_tests.c1253 const XML_Bool reset_or_not[] = {XML_TRUE, XML_FALSE}; in START_TEST()
1258 const XML_Bool reset_wanted = reset_or_not[j]; in START_TEST()
3388 XML_Bool nested_callback_happened;
5898 assert_true(XML_SetReparseDeferralEnabled(NULL, (XML_Bool)INT_MIN) in START_TEST()
5900 assert_true(XML_SetReparseDeferralEnabled(NULL, (XML_Bool)INT_MAX) in START_TEST()
/freebsd-13-stable/contrib/expat/xmlwf/
HDxmlwf.c978 XML_Bool attackThresholdGiven = XML_FALSE; in tmain()
980 XML_Bool disableDeferral = XML_FALSE; in tmain()
1186 const XML_Bool success = XML_SetReparseDeferralEnabled(parser, XML_FALSE); in tmain()
/freebsd-13-stable/contrib/expat/
HDChanges1577 - Defined XML_Bool type and the values XML_TRUE and XML_FALSE.