/external/expat/ |
D | CMake.README | 1 == How to build expat with cmake (experimental) == 3 The cmake based buildsystem for expat works on Windows (cygwin, mingw, Visual 6 Assuming ~/expat-2.2.6 is the source directory of expat, add a subdirectory 8 ~/expat-2.2.6$ mkdir build && cd build 9 ~/expat-2.2.6/build$ 13 ~/expat-2.2.6/build$ cmake .. 19 -- Build files have been written to: /home/patrick/expat-2.2.6/build 24 ~/expat-2.2.6/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 | .gitignore | 29 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/
|
D | CMakeLists.txt | 4 project(expat) project 7 set(PACKAGE_BUGREPORT "expat-bugs@libexpat.org") 8 set(PACKAGE_NAME "expat") 31 option(BUILD_tools "build the xmlwf tool for expat library" ${BUILD_tools_default}) 32 option(BUILD_examples "build the examples for expat library" ON) 33 option(BUILD_tests "build the tests for expat library" ON) 34 option(BUILD_shared "build a shared expat library" ON) 37 option(INSTALL "install expat files in cmake install target" ON) 162 add_library(expat ${_SHARED} ${expat_SRCS}) target 164 target_link_libraries(expat ${LIB_BSD}) [all …]
|
D | Makefile.am | 45 pkgconfig_DATA = expat.pc 63 lib/expat.vcxproj \ 64 lib/expat.vcxproj.filters \ 77 win32/expat.iss \ 84 expat.sln 90 conftools/expat.m4 \
|
D | expat.pc.in | 6 Name: expat pkg 8 Description: expat XML parser
|
D | METADATA | 1 name: "expat" 10 value: "https://github.com/libexpat/libexpat/releases/download/R_2_2_6/expat-2.2.6.tar.bz2"
|
/external/python/cpython3/Lib/test/ |
D | test_pyexpat.py | 11 from xml.parsers import expat 12 from xml.parsers.expat import errors 19 self.parser = expat.ParserCreate(namespace_separator='!') 230 parser = expat.ParserCreate(namespace_separator='!') 242 parser = expat.ParserCreate(namespace_separator='!') 253 parser = expat.ParserCreate(namespace_separator='!') 263 parser = expat.ParserCreate() 269 with self.assertRaises(expat.error) as cm: 271 self.assertEqual(expat.ErrorString(cm.exception.code), 272 expat.errors.XML_ERROR_FINISHED) [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_pyexpat.py | 7 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/ |
D | BUILD.gn | 13 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/skia/third_party/expat/ |
D | BUILD.gn | 13 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/expat/conftools/ |
D | expat.m4 | 1 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/webrtc/webrtc/libjingle/xmllite/ |
D | xmllite.gyp | 21 '<(DEPTH)/third_party/expat/expat.gyp:expat', 24 '<(DEPTH)/third_party/expat/expat.gyp:expat',
|
/external/webrtc/webrtc/libjingle/xmpp/ |
D | xmpp.gyp | 112 '<(DEPTH)/third_party/expat/expat.gyp:expat', 115 '<(DEPTH)/third_party/expat/expat.gyp:expat',
|
/external/wayland/ |
D | configure.ac | 113 PKG_CHECK_MODULES(EXPAT, [expat], [], 114 [AC_CHECK_HEADERS(expat.h, [], 115 [AC_MSG_ERROR([Can't find expat.h. Please install expat.])]) 117 AC_SEARCH_LIBS(XML_ParserCreate, expat, [], 118 [AC_MSG_ERROR([Can't find expat library. Please install expat.])])
|
/external/webrtc/webrtc/libjingle/ |
D | libjingle.gyp | 25 '<(DEPTH)/third_party/expat/expat.gyp:expat',
|
/external/expat/patches/ |
D | config.diff | 1 Index: expat/expat_config.h 3 --- expat.orig/expat_config.h 4 +++ expat/expat_config.h
|
/external/python/cpython2/Lib/xml/sax/ |
D | expatreader.py | 22 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/ |
D | expatreader.py | 22 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/libprotobuf-mutator/cmake/external/ |
D | expat.cmake | 15 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/Misc/NEWS.d/ |
D | 2.7.3rc2.rst | 8 to the pyexpat module's copy of the expat library to avoid a denial of 10 modifications by the expat project.
|
/external/expat/win32/ |
D | README.txt | 9 A solution file for Visual Studio 2013 is provided: expat.sln. 23 pexports libexpat.dll > expat.def 25 dlltool -d expat.def -l libexpat.a 63 By default, the expat-static and expatw-static projects are set up
|
/external/python/cpython2/PC/VC6/ |
D | _elementtree.dsp | 47 # 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 | pyexpat.dsp | 47 # 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
|
/external/expat/lib/ |
D | Makefile.am | 33 expat.h \ 62 expat.h \
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.2rc2.rst | 19 Upgrade expat copy from 2.2.0 to 2.2.1 to get fixes of multiple security 25 Python already gets entropy from the OS to set the expat secret using
|