Home
last modified time | relevance | path

Searched refs:expat (Results 1 – 25 of 164) sorted by relevance

1234567

/external/skia/third_party/expat/
DBUILD.gn13 system("expat") {
14 libs = [ "expat" ]
17 third_party("expat") {
19 public_include_dirs = [ "../externals/expat/expat/lib" ]
27 "../externals/expat/expat/lib/expat.h",
28 "../externals/expat/expat/lib/xmlparse.c",
29 "../externals/expat/expat/lib/xmlrole.c",
30 "../externals/expat/expat/lib/xmltok.c",
/external/expat/
DCMake.README1 == How to build expat with cmake (experimental) ==
3 The cmake based buildsystem for expat works on Windows (cygwin, mingw, Visual
6 Assuming ~/expat-2.3.0 is the source directory of expat, add a subdirectory
8 ~/expat-2.3.0$ mkdir build && cd build
9 ~/expat-2.3.0/build$
13 ~/expat-2.3.0/build$ cmake ..
19 -- Build files have been written to: /home/patrick/expat-2.3.0/build
24 ~/expat-2.3.0/build$ make && make test && make install
25 Scanning dependencies of target expat
26 [ 5%] Building C object CMakeFiles/expat.dir/lib/xmlparse.c.o
[all …]
D.gitignore29 expat/win32/bin/
30 expat/win32/tmp/
31 expat/.vs/
32 expat/**/*.vcxproj.user
33 expat/**/*.suo
34 expat/**/*.sdf
35 expat/**/*.VC.db
36 expat/tests/**/Debug/
37 expat/tests/**/Release/
DMakefile.am52 pkgconfig_DATA = expat.pc
57 cmake/autotools/expat.cmake
60 cmake/autotools/expat-config-version.cmake \
61 cmake/autotools/expat-noconfig.cmake \
62 cmake/expat-config.cmake
64 cmakedir = $(libdir)/cmake/expat-@PACKAGE_VERSION@
68 cmake/autotools/expat-package-init.cmake \
78 win32/expat.iss \
86 conftools/expat.m4 \
DCMakeLists.txt11 # add_subdirectory(${expat_SOURCE_DIR}/expat ${expat_BINARY_DIR})
34 project(expat project
41 set(PACKAGE_BUGREPORT "expat-bugs@libexpat.org")
42 set(PACKAGE_NAME "expat")
77 option(EXPAT_BUILD_TOOLS "build the xmlwf tool for expat library" ${_EXPAT_BUILD_TOOLS_DEFAULT})
78 option(EXPAT_BUILD_EXAMPLES "build the examples for expat library" ON)
79 option(EXPAT_BUILD_TESTS "build the tests for expat library" ON)
80 option(EXPAT_SHARED_LIBS "build a shared expat library" ON)
82 option(EXPAT_BUILD_FUZZERS "build fuzzers for the expat library" OFF)
84 option(EXPAT_OSSFUZZ_BUILD "build fuzzers via ossfuzz for the expat library" OFF)
[all …]
DREADME.md3 …ging status](https://repology.org/badge/tiny-repos/expat.svg)](https://repology.org/metapackage/ex…
23 [`expat-win32bin-*.*.*.exe` installer download](https://github.com/libexpat/libexpat/releases),
30 [`COPYING`](https://github.com/libexpat/libexpat/blob/master/expat/COPYING)
71 Notice the lowercase `expat` in the following example:
78 find_package(expat 2.2.8 CONFIG REQUIRED char dtd ns)
84 target_link_libraries(hello PUBLIC expat::expat)
119 libexpat into `/usr/local/lib`, `expat.h` into `/usr/local/include`, and
189 can use the probing macro in `conftools/expat.m4` to determine how to
221 // build the examples for expat library
224 // build fuzzers for the expat library
[all …]
DMakefile.in146 CONFIG_CLEAN_FILES = expat.pc cmake/expat-config.cmake \
147 cmake/autotools/expat-config-version.cmake \
148 cmake/autotools/expat-noconfig.cmake run.sh
237 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/expat.pc.in \
239 $(top_srcdir)/cmake/autotools/expat-config-version.cmake.in \
240 $(top_srcdir)/cmake/autotools/expat-noconfig.cmake.in \
241 $(top_srcdir)/cmake/expat-config.cmake.in \
448 pkgconfig_DATA = expat.pc
451 cmake/autotools/expat.cmake
454 cmake/autotools/expat-config-version.cmake \
[all …]
DMETADATA4 name: "expat"
13 value: "https://github.com/libexpat/libexpat/releases/download/R_2_3_0/expat-2.3.0.tar.bz2"
Dconfigure.ac1 dnl configuration script for expat
28 [esyscmd(conftools/get-version.sh lib/expat.h)],
30 AC_INIT([expat], expat_version, [expat-bugs@libexpat.org]) package
338 PACKAGE_INIT="${srcdir}"/cmake/autotools/expat-package-init.cmake
363 dnl updating _EXPAT_OUTPUT_NAME variable to effect the package name in expat.pc file (issue #361)
367 [expat.pc]
368 [cmake/expat-config.cmake]
369 [cmake/autotools/expat-config-version.cmake]
370 [cmake/autotools/expat-noconfig.cmake]
/external/expat/cmake/autotools/
Dexpat-noconfig.cmake.in8 # Import target "expat::expat" for configuration ""
9 set_property(TARGET expat::expat APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG)
10 set_target_properties(expat::expat PROPERTIES
15 list(APPEND _IMPORT_CHECK_TARGETS expat::expat )
16 list(APPEND _IMPORT_CHECK_FILES_FOR_expat::expat "${_IMPORT_PREFIX}/@LIBDIR_BASENAME@/libexpat.so.@…
Dexpat.cmake19 foreach(_expectedTarget expat::expat)
53 # Create imported target expat::expat
54 add_library(expat::expat SHARED IMPORTED)
56 set_target_properties(expat::expat PROPERTIES
62 file(GLOB CONFIG_FILES "${_DIR}/expat-*.cmake")
/external/python/cpython3/Lib/test/
Dtest_pyexpat.py12 from xml.parsers import expat
13 from xml.parsers.expat import errors
20 self.parser = expat.ParserCreate(namespace_separator='!')
231 parser = expat.ParserCreate(namespace_separator='!')
243 parser = expat.ParserCreate(namespace_separator='!')
254 parser = expat.ParserCreate(namespace_separator='!')
264 parser = expat.ParserCreate()
270 with self.assertRaises(expat.error) as cm:
272 self.assertEqual(expat.ErrorString(cm.exception.code),
273 expat.errors.XML_ERROR_FINISHED)
[all …]
/external/python/cpython2/Lib/test/
Dtest_pyexpat.py7 from xml.parsers import expat
15 self.parser = expat.ParserCreate(namespace_separator='!')
151 parser = expat.ParserCreate(namespace_separator='!')
180 parser = expat.ParserCreate(namespace_separator='!')
209 parser = expat.ParserCreate(namespace_separator='!')
240 parser = expat.ParserCreate()
247 parser = expat.ParserCreate()
253 with self.assertRaises(expat.error) as cm:
255 self.assertEqual(expat.ErrorString(cm.exception.code),
256 expat.errors.XML_ERROR_FINISHED)
[all …]
/external/skqp/third_party/expat/
DBUILD.gn13 system("expat") {
14 libs = [ "expat" ]
17 third_party("expat") {
19 public_include_dirs = [ "../externals/expat/lib" ]
24 "../externals/expat/lib/xmlparse.c",
25 "../externals/expat/lib/xmlrole.c",
26 "../externals/expat/lib/xmltok.c",
/external/mesa3d/subprojects/
Dexpat.wrap2 directory = expat-2.2.5
4 source_url = https://github.com/libexpat/libexpat/releases/download/R_2_2_5/expat-2.2.5.tar.bz2
5 source_filename = expat-2.2.5.tar.bz2
8 patch_url = https://github.com/mesonbuild/expat/releases/download/2.2.5-4/expat.zip
9 patch_filename = expat-2.2.5-4-wrap.zip
/external/expat/conftools/
Dexpat.m41 dnl Check if --with-expat[=PREFIX] is specified and
6 dnl If --with-expat has not been specified, set with_expat to 'no'.
8 dnl This is necessary to adapt a whole lot of packages that have expat
11 [ AC_ARG_WITH(expat, optwith
12 [ --with-expat=PREFIX Use system Expat library],
24 AC_CHECK_LIB(expat, XML_ParserCreate,
34 AC_CHECK_HEADERS(expat.h, , expat_found=no)
36 AC_MSG_ERROR([Could not find expat.h])
/external/expat/patches/
Dconfig.diff1 Index: expat/expat_config.h
3 --- expat.orig/expat_config.h
4 +++ expat/expat_config.h
/external/expat/win32/
Dbuild_expat_iss.bat47 msbuild /m expat.sln || EXIT /b 1
57 msbuild /m expat.sln || EXIT /b 1
67 msbuild /m expat.sln || EXIT /b 1
77 msbuild /m expat.sln || EXIT /b 1
84 iscc win32\expat.iss || EXIT /b 1
/external/libprotobuf-mutator/cmake/external/
Dexpat.cmake15 set(EXPAT_TARGET external.expat)
17 set(EXPAT_SRC_DIR ${EXPAT_INSTALL_DIR}/src/${EXPAT_TARGET}/expat)
22 list(APPEND EXPAT_LIBRARIES expat)
/external/python/cpython2/Lib/xml/sax/
Dexpatreader.py22 from xml.parsers import expat
26 if not hasattr(expat, "ParserCreate"):
221 except expat.error, e:
222 exc = SAXParseException(expat.ErrorString(e.code), e, self)
281 self._parser = expat.ParserCreate(self._source.getEncoding(), " ",
287 self._parser = expat.ParserCreate(self._source.getEncoding(),
311 expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE)
/external/python/cpython3/Lib/xml/sax/
Dexpatreader.py22 from xml.parsers import expat
26 if not hasattr(expat, "ParserCreate"):
218 except expat.error as e:
219 exc = SAXParseException(expat.ErrorString(e.code), e, self)
278 self._parser = expat.ParserCreate(self._source.getEncoding(), " ",
284 self._parser = expat.ParserCreate(self._source.getEncoding(),
308 expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE)
/external/python/cpython2/Misc/NEWS.d/
D2.7.3rc2.rst8 to the pyexpat module's copy of the expat library to avoid a denial of
10 modifications by the expat project.
/external/expat/lib/
DMakefile.am33 expat.h \
62 expat.h \
/external/python/cpython2/PC/VC6/
Dpyexpat.dsp47 # ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BU…
75 # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "…
100 SOURCE=..\..\Modules\expat\xmlparse.c
104 SOURCE=..\..\Modules\expat\xmlrole.c
108 SOURCE=..\..\Modules\expat\xmltok.c
D_elementtree.dsp47 # ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BU…
75 # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "…
100 SOURCE=..\..\Modules\expat\xmlparse.c
104 SOURCE=..\..\Modules\expat\xmlrole.c
108 SOURCE=..\..\Modules\expat\xmltok.c

1234567