/external/wayland/ |
D | meson.build | 42 config_h.set('HAVE_' + f.underscorify().to_upper(), cc.has_function(f)) 61 if not cc.has_function('clock_gettime', prefix: '#include <time.h>') 63 if not cc.has_function('clock_gettime', prefix: '#include <time.h>', dependencies: rt_dep)
|
/external/libfuse/ |
D | meson.build | 42 cc.has_function(func, prefix: include_default, args: args_default)) 45 cc.has_function('setxattr', prefix: '#include <sys/xattr.h>')) 47 cc.has_function('iconv', prefix: '#include <iconv.h>'))
|
/external/libdrm/ |
D | meson.build | 67 elif cc.has_function('atomic_cas_uint') 173 if not cc.has_function('dlsym') 179 if not cc.has_function('clock_gettime', prefix : '#define _GNU_SOURCE\n#include <time.h>') 213 config.set10('HAVE_OPEN_MEMSTREAM', cc.has_function('open_memstream'))
|
/external/tensorflow/tensorflow/python/eager/ |
D | pywrap_tfe_test.py | 271 self.assertFalse(ctx.has_function("not_a_function")) 277 self.assertTrue(ctx.has_function(f.get_concrete_function().name))
|
D | context.py | 1209 def has_function(self, name): member in Context
|
D | function.py | 519 if not ctx.has_function(self.name):
|
/external/libepoxy/test/ |
D | meson.build | 2 has_dlvsym = cc.has_function('dlvsym', dependencies: dl_dep)
|
/external/tensorflow/tensorflow/python/framework/ |
D | function_def_to_graph.py | 118 return context.context().has_function(fname)
|
D | convert_to_constants.py | 1005 if context.context().has_function(f.signature.name):
|
/external/mesa3d/src/egl/ |
D | meson.build | 139 if cc.has_function('mincore')
|
/external/libopus/ |
D | meson.build | 83 opus_conf.set('HAVE_LRINTF', cc.has_function('lrintf', prefix: '#include <math.h>', dependencies: l… 84 opus_conf.set('HAVE_LRINT', cc.has_function('lrint', prefix: '#include <math.h>', dependencies: lib… 85 opus_conf.set('HAVE___MALLOC_HOOK', cc.has_function('__malloc_hook', prefix: '#include <malloc.h>'))
|
/external/mesa3d/ |
D | meson.build | 924 if cc.has_function(b) 1232 if cc.has_function(f) 1249 if cc.has_function('posix_memalign') 1310 if not cc.has_function('dlopen') 1313 if cc.has_function('dladdr', dependencies : dep_dl) 1318 if cc.has_function('dl_iterate_phdr') 1327 if host_machine.system() == 'windows' or cc.has_function('clock_gettime') 1357 if host_machine.system() != 'netbsd' and cc.has_function(
|
/external/python/cpython3/Lib/distutils/ |
D | ccompiler.py | 760 def has_function(self, funcname, includes=None, include_dirs=None, member in CCompiler
|
/external/igt-gpu-tools/ |
D | meson.build | 222 have = cc.has_function('memfd_create', prefix : '''#include <sys/mman.h>''', args : '-D_GNU_SOURCE')
|
/external/python/cpython2/Lib/distutils/ |
D | ccompiler.py | 726 def has_function(self, funcname, includes=None, include_dirs=None, member in CCompiler
|
/external/mesa3d/src/compiler/nir/ |
D | meson.build | 316 if not cc.has_function('mmap')
|
/external/python/cpython3/Doc/distutils/ |
D | apiref.rst | 528 ….. method:: CCompiler.has_function(funcname [, includes=None, include_dirs=None, libraries=None, l…
|
/external/python/cpython2/Doc/distutils/ |
D | apiref.rst | 503 ….. method:: CCompiler.has_function(funcname [, includes=None, include_dirs=None, libraries=None, l…
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 1994 Fix C compiler warning caused by distutils.ccompiler.CCompiler.has_function.
|