Home
last modified time | relevance | path

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

/freebsd/contrib/expat/lib/
H A Dexpat.h61 typedef unsigned char XML_Bool; typedef
62 # define XML_TRUE ((XML_Bool)1)
63 # define XML_FALSE ((XML_Bool)0)
290 XMLPARSEAPI(XML_Bool)
725 XML_UseForeignDTD(XML_Parser parser, XML_Bool useDTD);
832 XML_StopParser(XML_Parser parser, XML_Bool resumable);
853 XML_Bool finalBuffer;
935 XMLPARSEAPI(XML_Bool)
1069 XMLPARSEAPI(XML_Bool)
1075 XMLPARSEAPI(XML_Bool)
[all …]
H A Dxmlparse.c337 XML_Bool hasMore; /* true if entity has not been completely processed */
341 XML_Bool is_param;
342 XML_Bool is_internal; /* true if declared in internal subset outside PE */
377 XML_Bool maybeTokenized;
378 XML_Bool xmlns;
383 XML_Bool isCdata;
427 XML_Bool keepProcessing;
430 XML_Bool hasParamEntityRefs;
431 XML_Bool standalone;
434 XML_Bool paramEntityRead;
[all …]
H A Dinternal.h179 XML_Bool g_reparseDeferralEnabledDefault; // written ONLY in runtests.c
/freebsd/contrib/expat/tests/
H A Dcommon.h85 extern XML_Bool g_resumable;
86 extern XML_Bool g_abortable;
H A Dcommon.c144 XML_Bool g_resumable = XML_FALSE;
147 XML_Bool g_abortable = XML_FALSE;
H A Dmisc_tests.c376 const XML_Bool suspendOrNot[] = {XML_FALSE, XML_TRUE}; in START_TEST()
384 const XML_Bool suspend = suspendOrNot[suspendOrNotIndex]; in START_TEST()
578 const XML_Bool cases[] = {XML_TRUE, XML_FALSE}; in START_TEST()
580 const XML_Bool resumable = cases[i]; in START_TEST()
H A Dhandlers.h605 XML_Bool seen;
H A Dbasic_tests.c1303 const XML_Bool reset_or_not[] = {XML_TRUE, XML_FALSE}; in START_TEST()
1308 const XML_Bool reset_wanted = reset_or_not[j]; in START_TEST()
3796 XML_Bool nested_callback_happened;
6376 assert_true(XML_SetReparseDeferralEnabled(NULL, (XML_Bool)INT_MIN) in START_TEST()
6378 assert_true(XML_SetReparseDeferralEnabled(NULL, (XML_Bool)INT_MAX) in START_TEST()
/freebsd/contrib/expat/xmlwf/
H A Dxmlwf.c1017 XML_Bool attackThresholdGiven = XML_FALSE; in tmain()
1019 XML_Bool disableDeferral = XML_FALSE; in tmain()
1228 const XML_Bool success = XML_SetReparseDeferralEnabled(parser, XML_FALSE); in tmain()
/freebsd/contrib/expat/
H A DChanges2133 - Defined XML_Bool type and the values XML_TRUE and XML_FALSE.