Lines Matching +full:c +full:- +full:22
9 Copyright (c) 2001-2006 Fred L. Drake, Jr. <fdrake@users.sourceforge.net>
10 Copyright (c) 2003 Greg Stein <gstein@users.sourceforge.net>
11 Copyright (c) 2005-2007 Steven Solie <steven@solie.ca>
12 Copyright (c) 2005-2012 Karl Waclawek <karl@waclawek.net>
13 Copyright (c) 2016-2024 Sebastian Pipping <sebastian@pipping.org>
14 Copyright (c) 2017-2022 Rhodri James <rhodri@wildebeest.org.uk>
15 Copyright (c) 2017 Joe Orton <jorton@redhat.com>
16 Copyright (c) 2017 José Gutiérrez de la Concha <jose@zeroc.com>
17 Copyright (c) 2018 Marco Maggi <marco.maggi-ipsu@poste.it>
18 Copyright (c) 2019 David Loffredo <loffredo@steptools.com>
19 Copyright (c) 2020 Tim Gates <tim.gates@iress.com>
20 Copyright (c) 2021 Donghee Na <donghee.na@python.org>
21 Copyright (c) 2023 Sony Corporation / Snild Dolkow <snild@sony.com>
91 {"<!-- Comment --><e><!-- Comment --></e>", NULL, NULL, 0}, in START_TEST()
94 {"<?xml-stylesheet type=\"text/xsl\" href=\"https://domain.invalid/\" media=\"all\"?><e/>", in START_TEST()
105 /* The following is the essence of this OSS-Fuzz finding: in START_TEST()
106 https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=34302 in START_TEST()
107 https://oss-fuzz.com/testcase-detail/4860575394955264 in START_TEST()
124 "<![%draft;[<!--1-->]]>\n" in START_TEST()
125 "<![%final;[<!--22-->]]>", in START_TEST()
157 "\xEF\xBB\xBF" /* UTF-8 BOM */, NULL, 0}, in START_TEST()
162 "<!ENTITY % comment \"<!---->\">\n" in START_TEST()
166 NULL, NULL, sizeof(XML_Char) * strlen("<!---->")}, in START_TEST()
176 "<!ENTITY % comment \"<!--1-->\">\n" in START_TEST()
177 "<!ENTITY % comment2 \"%comment;<!--22-->%comment;\">\n" in START_TEST()
183 * (strlen("%comment;<!--22-->%comment;") + 2 * strlen("<!--1-->"))}, in START_TEST()
197 "<!ENTITY % comment '<!--1-->'>\n" in START_TEST()
198 "<!ENTITY % comment2 '<!--22-->%comment;<!--22-->%comment;<!--22-->'>\n" in START_TEST()
202 * (strlen("<!--22-->%comment;<!--22-->%comment;<!--22-->") in START_TEST()
203 + 2 /* calls to "%comment;" */ * strlen("<!---->"))}, in START_TEST()
207 "<!ENTITY % e2 '<!--22-->%e1;<!--22-->'>\n" in START_TEST()
209 "<!--1-->", sizeof(XML_Char) * strlen("<!--22--><!--1--><!--22-->")}, in START_TEST()
215 "<?xml version='1.0' encoding='utf-8'?>\n" in START_TEST()
225 "<?xml version='1.0' encoding='utf-8'?>\n" in START_TEST()
236 "\xEF\xBB\xBF<!ATTLIST doc a1 CDATA 'value'>" /* UTF-8 BOM */, in START_TEST()
312 fail("Call with non-root parser is NOT supposed to succeed"); in START_TEST()
318 parserWithoutParent, -1.0f) in START_TEST()
347 fail("Call with non-root parser is NOT supposed to succeed"); in START_TEST()
353 fail("Call with non-NULL parentless parser is supposed to succeed"); in START_TEST()
370 if (uc == (unsigned char)-1) { in START_TEST()
387 // (22) that is used in function accountingGetCurrentAmplification in in START_TEST()
388 // xmlparse.c. in START_TEST()
391 const int docLen = (int)sizeof(doc) - 1; in START_TEST()
400 {-2, XML_STATUS_ERROR}, {-1, XML_STATUS_ERROR}, {0, XML_STATUS_ERROR}, in START_TEST()