Home
last modified time | relevance | path

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

/src/contrib/expat/lib/
H A Dexpat.h58 typedef unsigned char XML_Bool; typedef
59 # define XML_TRUE ((XML_Bool)1)
60 # define XML_FALSE ((XML_Bool)0)
287 XMLPARSEAPI(XML_Bool)
722 XML_UseForeignDTD(XML_Parser parser, XML_Bool useDTD);
829 XML_StopParser(XML_Parser parser, XML_Bool resumable);
850 XML_Bool finalBuffer;
1055 XMLPARSEAPI(XML_Bool)
1061 XMLPARSEAPI(XML_Bool)
1066 XMLPARSEAPI(XML_Bool)
[all …]
H A Dxmlparse.c328 XML_Bool open;
329 XML_Bool hasMore; /* true if entity has not been completely processed */
333 XML_Bool is_param;
334 XML_Bool is_internal; /* true if declared in internal subset outside PE */
369 XML_Bool maybeTokenized;
370 XML_Bool xmlns;
375 XML_Bool isCdata;
402 XML_Bool keepProcessing;
405 XML_Bool hasParamEntityRefs;
406 XML_Bool standalone;
[all …]
H A Dinternal.h183 XML_Bool g_reparseDeferralEnabledDefault; // written ONLY in runtests.c
/src/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.c369 const XML_Bool suspendOrNot[] = {XML_FALSE, XML_TRUE}; in START_TEST()
377 const XML_Bool suspend = suspendOrNot[suspendOrNotIndex]; in START_TEST()
571 const XML_Bool cases[] = {XML_TRUE, XML_FALSE}; in START_TEST()
573 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()
3392 XML_Bool nested_callback_happened;
5902 assert_true(XML_SetReparseDeferralEnabled(NULL, (XML_Bool)INT_MIN) in START_TEST()
5904 assert_true(XML_SetReparseDeferralEnabled(NULL, (XML_Bool)INT_MAX) in START_TEST()
/src/contrib/expat/xmlwf/
H A Dxmlwf.c988 XML_Bool attackThresholdGiven = XML_FALSE; in tmain()
990 XML_Bool disableDeferral = XML_FALSE; in tmain()
1199 const XML_Bool success = XML_SetReparseDeferralEnabled(parser, XML_FALSE); in tmain()
/src/contrib/expat/
H A DChanges1708 - Defined XML_Bool type and the values XML_TRUE and XML_FALSE.