Home
last modified time | relevance | path

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

/external/wayland/
Dmeson.build42 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/
Dmeson.build42 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/
Dmeson.build67 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/
Dpywrap_tfe_test.py271 self.assertFalse(ctx.has_function("not_a_function"))
277 self.assertTrue(ctx.has_function(f.get_concrete_function().name))
Dcontext.py1209 def has_function(self, name): member in Context
Dfunction.py519 if not ctx.has_function(self.name):
/external/libepoxy/test/
Dmeson.build2 has_dlvsym = cc.has_function('dlvsym', dependencies: dl_dep)
/external/tensorflow/tensorflow/python/framework/
Dfunction_def_to_graph.py118 return context.context().has_function(fname)
Dconvert_to_constants.py1005 if context.context().has_function(f.signature.name):
/external/mesa3d/src/egl/
Dmeson.build139 if cc.has_function('mincore')
/external/libopus/
Dmeson.build83 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/
Dmeson.build924 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/
Dccompiler.py760 def has_function(self, funcname, includes=None, include_dirs=None, member in CCompiler
/external/igt-gpu-tools/
Dmeson.build222 have = cc.has_function('memfd_create', prefix : '''#include <sys/mman.h>''', args : '-D_GNU_SOURCE')
/external/python/cpython2/Lib/distutils/
Dccompiler.py726 def has_function(self, funcname, includes=None, include_dirs=None, member in CCompiler
/external/mesa3d/src/compiler/nir/
Dmeson.build316 if not cc.has_function('mmap')
/external/python/cpython3/Doc/distutils/
Dapiref.rst528 ….. method:: CCompiler.has_function(funcname [, includes=None, include_dirs=None, libraries=None, l…
/external/python/cpython2/Doc/distutils/
Dapiref.rst503 ….. method:: CCompiler.has_function(funcname [, includes=None, include_dirs=None, libraries=None, l…
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst1994 Fix C compiler warning caused by distutils.ccompiler.CCompiler.has_function.