Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/expat/lib/
H A Dexpat.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 …]
H A Dxmlparse.c327 XML_Bool open;
369 XML_Bool xmlns;
520 XML_Bool isCdata, XML_Bool isId,
713 XML_Bool m_ns;
1333 XML_Bool XMLCALL
1392 static XML_Bool
2723 XML_Bool XMLCALL
2735 XML_Bool XMLCALL
2760 static XML_Bool
3927 static XML_Bool
[all …]
H A Dinternal.h172 XML_Bool g_reparseDeferralEnabledDefault; // written ONLY in runtests.c
/freebsd-14.2/contrib/expat/tests/
H A Dcommon.h83 extern XML_Bool g_resumable;
84 extern XML_Bool g_abortable;
H A Dcommon.c140 XML_Bool g_resumable = XML_FALSE;
143 XML_Bool g_abortable = XML_FALSE;
H A Dmisc_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()
H A Dhandlers.h597 XML_Bool seen;
H A Dbasic_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-14.2/contrib/expat/xmlwf/
H A Dxmlwf.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-14.2/contrib/expat/
H A DChanges1577 - Defined XML_Bool type and the values XML_TRUE and XML_FALSE.