Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/expat/expat/lib/
Dexpat.h54 typedef unsigned char XML_Bool; typedef
55 #define XML_TRUE ((XML_Bool)1)
56 #define XML_FALSE ((XML_Bool)0)
268 XMLPARSEAPI(XML_Bool)
703 XML_UseForeignDTD(XML_Parser parser, XML_Bool useDTD);
810 XML_StopParser(XML_Parser parser, XML_Bool resumable);
831 XML_Bool finalBuffer;
1034 XMLPARSEAPI(XML_Bool)
1040 XMLPARSEAPI(XML_Bool)
1046 XMLPARSEAPI(XML_Bool)
[all …]
Dxmlparse.c311 XML_Bool open;
312 XML_Bool is_param;
313 XML_Bool is_internal; /* true if declared in internal subset outside PE */
348 XML_Bool maybeTokenized;
349 XML_Bool xmlns;
354 XML_Bool isCdata;
381 XML_Bool keepProcessing;
384 XML_Bool hasParamEntityRefs;
385 XML_Bool standalone;
388 XML_Bool paramEntityRead;
[all …]
Dinternal.h162 extern XML_Bool g_reparseDeferralEnabledDefault; // written ONLY in runtests.c
/third_party/python/Modules/expat/
Dexpat.h53 typedef unsigned char XML_Bool; typedef
54 #define XML_TRUE ((XML_Bool)1)
55 #define XML_FALSE ((XML_Bool)0)
267 XMLPARSEAPI(XML_Bool)
702 XML_UseForeignDTD(XML_Parser parser, XML_Bool useDTD);
809 XML_StopParser(XML_Parser parser, XML_Bool resumable);
830 XML_Bool finalBuffer;
1029 XMLPARSEAPI(XML_Bool)
1034 XMLPARSEAPI(XML_Bool)
Dxmlparse.c300 XML_Bool open;
301 XML_Bool is_param;
302 XML_Bool is_internal; /* true if declared in internal subset outside PE */
337 XML_Bool maybeTokenized;
338 XML_Bool xmlns;
343 XML_Bool isCdata;
370 XML_Bool keepProcessing;
373 XML_Bool hasParamEntityRefs;
374 XML_Bool standalone;
377 XML_Bool paramEntityRead;
[all …]
/third_party/expat/
D11-backport-0001-CVE-2022-40674.patch36 - (XML_Bool)! parser->m_parsingStatus.finalBuffer,
40 + (XML_Bool)! parser->m_parsingStatus.finalBuffer,
D17-backport-lib-Relax-fix-to-CVE-2022-25236-with-regard-to-RFC-3.patch19 +static XML_Bool
D02-backport-CVE-2022-22822-CVE-2022-22823-CVE-2022-22824-CVE-2022-22825-CVE-2022-22826-CVE-2022-22827.patch155 @@ -6141,7 +6229,24 @@ defineAttribute(ELEMENT_TYPE *type, ATTRIBUTE_ID *attId, XML_Bool isCdata,
/third_party/skia/third_party/externals/expat/expat/xmlwf/
Dxmlwf.c970 XML_Bool attackThresholdGiven = XML_FALSE; in tmain()
972 XML_Bool disableDeferral = XML_FALSE; in tmain()
1147 const XML_Bool success = XML_SetReparseDeferralEnabled(parser, XML_FALSE); in tmain()
/third_party/skia/third_party/externals/expat/expat/tests/
Druntests.c1980 static XML_Bool resumable = XML_FALSE;
2040 static XML_Bool abortable = XML_FALSE;
6481 XML_Bool seen;
11356 XML_Bool singleBytesWanted;
11396 const XML_Bool filled_later = XML_TRUE; /* value is arbitrary */ in START_TEST()
11587 const XML_Bool singleBytesWanted = (v == 0) ? XML_FALSE : XML_TRUE; in START_TEST()
/third_party/skia/third_party/externals/expat/expat/
DChanges877 - Defined XML_Bool type and the values XML_TRUE and XML_FALSE.