Home
last modified time | relevance | path

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

/third_party/gstreamer/gstplugins_good/ext/raw1394/
Dmeson.build7 if cc.has_function('avc1394_send_command', dependencies: avc1394_dep)
8 if cc.has_function('rom1394_free_directory', dependencies: avc1394_dep)
/third_party/gstreamer/gstplugins_good/sys/ximage/
Dmeson.build6 # FIXME: should add a 'required' arg to cc.has_function() in Meson and use it here
7 if xshm_dep.found() and cc.has_function('XShmAttach', dependencies: xshm_dep)
/third_party/gstreamer/gstreamer/
Dmeson.build249 if cc.has_function(f)
255 if cc.has_function('localtime_r', prefix : '#include<time.h>')
334 if cc.has_function('getpid')
336 elif host_system == 'windows' and cc.has_function('_getpid')
340 if cc.has_function('strdup')
342 elif host_system == 'windows' and cc.has_function('_strdup')
351 if cc.has_function('strsignal')
413 elif cc.has_function('backtrace')
427 if cc.has_function('backtrace', prefix : '#include <execinfo.h>')
431 …if execinfo_dep.found() and cc.has_function('backtrace', prefix : '#include <execinfo.h>', depende…
[all …]
/third_party/libfuse/
Dmeson.build46 cc.has_function(func, prefix: include_default, args: args_default))
49 cc.has_function('setxattr', prefix: '#include <sys/xattr.h>'))
51 cc.has_function('iconv', prefix: '#include <iconv.h>'))
/third_party/gstreamer/gstplugins_bad/tests/examples/ipcpipeline/
Dmeson.build8 build_ipcpipeline_example = cc.has_function(f)
/third_party/gstreamer/gstplugins_bad/ext/gme/
Dmeson.build12 cdata.set('HAVE_LIBGME_ACCURACY', cc.has_function('gme_enable_accuracy', dependencies: gme_dep))
/third_party/libdrm/
Dmeson.build76 elif cc.has_function('atomic_cas_uint')
186 if not cc.has_function('dlsym')
192 if not cc.has_function('clock_gettime', prefix : '#define _GNU_SOURCE\n#include <time.h>')
225 config.set10('HAVE_OPEN_MEMSTREAM', cc.has_function('open_memstream'))
/third_party/skia/third_party/externals/harfbuzz/
Dmeson.build136 if cairo_dep.found() and cpp.has_function('cairo_ft_font_face_create_for_ft_face',
303 found = cpp.has_function(name, dependencies: check_deps)
318 found = cpp.has_function(name, dependencies: check_deps + extra_deps)
/third_party/harfbuzz/
Dmeson.build134 if cairo_dep.found() and cpp.has_function('cairo_ft_font_face_create_for_ft_face',
312 found = cpp.has_function(name, dependencies: check_deps)
327 found = cpp.has_function(name, dependencies: check_deps + extra_deps)
/third_party/pulseaudio/src/daemon/
Dmeson.build97 default_conf.set10('HAVE_MKFIFO', cc.has_function('mkfifo'))
/third_party/pulseaudio/
Dmeson.build293 if cc.has_function(f)
303 if cc.has_function('dgettext')
374 if cc.has_function(f, dependencies : thread_dep)
393 if cc.has_function('iconv_open')
/third_party/mesa3d/
Dmeson.build1080 if cc.has_function(b)
1101 if cc.has_function('reallocarray')
1424 if cc.has_function('sched_getaffinity')
1456 if cc.has_function(f, prefix: prefix)
1466 if cc.has_function('thrd_create', prefix: '#include <threads.h>')
1491 if cc.has_function('posix_memalign')
1553 if not cc.has_function('dlopen')
1556 if cc.has_function('dladdr', dependencies : dep_dl)
1562 if cc.has_function('dl_iterate_phdr')
1569 if host_machine.system() == 'windows' or cc.has_function('clock_gettime')
[all …]
/third_party/mesa3d/src/egl/
Dmeson.build160 if cc.has_function('mincore')
/third_party/pulseaudio/src/tests/
Dmeson.build163 if cc.has_function('pthread_setaffinity_np', dependencies : thread_dep)
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/
Dmeson.build677 …if need_platform_glx != 'no' and glx_dep.found() and cc.has_function ('glXMakeCurrent', dependenci…
912 if egl_dep.found() and cc.has_function ('fbGetDisplay', dependencies : egl_dep)
913 if cc.has_function ('glTexDirectVIV', dependencies : gles2_dep)
/third_party/python/Lib/distutils/
Dccompiler.py760 def has_function(self, funcname, includes=None, include_dirs=None, member in CCompiler
/third_party/mesa3d/src/compiler/nir/
Dmeson.build354 if not cc.has_function('mmap')
/third_party/pulseaudio/src/modules/
Dmeson.build84 if cc.has_function('mkfifo')
/third_party/gstreamer/gstplugins_good/
Dmeson.build175 if cc.has_function(f.get(1), prefix : f.get(2), dependencies : libm)
DChangeLog28228 meson: add libm to has_function checks
/third_party/gstreamer/gstplugins_base/
Dmeson.build192 if cc.has_function(f.get(1), prefix : f.get(2), dependencies : libm)
DChangeLog46558 meson: Add headers and libm to has_function checks
/third_party/gstreamer/gstplugins_bad/
Dmeson.build184 if cc.has_function(f.get(1), prefix: prefix)
/third_party/python/Doc/distutils/
Dapiref.rst528 ….. method:: CCompiler.has_function(funcname [, includes=None, include_dirs=None, libraries=None, l…
/third_party/python/Misc/NEWS.d/
D3.9.0a1.rst1994 Fix C compiler warning caused by distutils.ccompiler.CCompiler.has_function.