Searched refs:set_source (Results 1 – 25 of 58) sorted by relevance
123
| /external/python/cffi/testing/cffi1/ |
| D | test_zdist.py | 110 ffi.set_source("package_name_1.mymod", None) 117 ffi.set_source("package_name_1.mymod", None) 123 ffi.set_source("package_name_1.mymod", None) 130 ffi.set_source("mod_name_in_package.mymod", None) 138 ffi.set_source("mod_name_in_package.mymod", None) 147 ffi.set_source("mod_name_in_package.mymod", None) 157 ffi.set_source("package_name_1.mymod", "/*code would be here*/") 164 ffi.set_source("package_name_1.mymod", "/*code would be here*/") 170 ffi.set_source("package_name_1.mymod", "/*code would be here*/") 177 ffi.set_source("mod_name_in_package.mymod", "/*code would be here*/") [all …]
|
| D | test_dlopen.py | 101 ffi.set_source('test_include', None) 147 baseffi.set_source('test_struct_included_base', None) 167 baseffi.set_source('test_no_cross_include_base', "..source..")
|
| D | test_re_python.py | 81 ffi.set_source('re_python_pysrc', None) 169 sub_ffi.set_source('re_python_pysrc', None) 236 ffi.set_source('test_partial_enum', None)
|
| /external/python/cffi/doc/source/ |
| D | overview.rst | 49 # set_source() gives the name of the python extension module to 53 ffibuilder.set_source("_pi_cffi", 64 ``_pi_cffi.c`` contains a copy of the string given in :ref:`set_source() <set_source>`, 79 For more information about the ``cdef()`` and ``set_source()`` methods 194 :ref:`ffibuilder.set_source() <set_source>`. Then in the main program you write 214 ffibuilder.set_source("_example", 237 struct passwd *get_pw_for_root(void); // defined in set_source() 247 :ref:`set_source() <set_source>` is ``None`` or not.) 336 ffibuilder.set_source("_pi", # name of the output C extension 387 ffibuilder.set_source("_example", [all …]
|
| D | embedding.rst | 73 /* When including this file from ffibuilder.set_source(), the 107 ffibuilder.set_source("my_plugin", r''' 147 ``ffibuilder.set_source()``, as regular C code (see the point after next). 157 ``ffibuilder.set_source()``. This module represents "the caller's C world" 180 * **ffibuilder.set_source(c_module_name, c_code):** set the name of the 189 my_glob = 42;``" in ``ffibuilder.set_source()``. 264 ``ffibuilder.set_source()``:: 266 ffibuilder.set_source('module_name', r''' 350 would put this option in ``ffibuilder.set_source("my_plugin", ..., 464 ``ffibuilder.set_source()``, and prefix it with the macro CFFI_DLLEXPORT: [all …]
|
| D | cdef.rst | 33 ffibuilder.set_source("package._foo", None) 61 ffibuilder.set_source("package._foo", r"""real C code""") # <= 176 ``ffi.set_source()``). 257 1.3:* when using ``set_source()`` or ``verify()``, these two 386 ffibuilder.set_source(): preparing out-of-line modules 389 **ffibuilder.set_source(module_name, c_header_source, [\*\*keywords...])**: 393 ``ffibuilder.set_source()`` by itself does not write any file, but merely 397 In **ABI mode,** you call ``ffibuilder.set_source(module_name, None)``. The 422 The keywords arguments to ``set_source()`` control how the C compiler 446 ffibuilder.set_source("mymodule", r''' [all …]
|
| /external/rust/crates/clap/3.2.23/src/parser/ |
| D | arg_matcher.rs | 151 ma.set_source(source); in start_custom_arg() 162 ma.set_source(source); in start_custom_group() 171 ma.set_source(ValueSource::CommandLine); in start_occurrence_of_arg() 181 ma.set_source(ValueSource::CommandLine); in start_occurrence_of_group() 199 ma.set_source(ValueSource::CommandLine); in start_occurrence_of_external()
|
| /external/openscreen/discovery/mdns/ |
| D | mdns_receiver_unittest.cc | 63 packet.set_source( in TEST() 118 packet.set_source( in TEST()
|
| /external/rust/crates/clap/src/parser/ |
| D | arg_matcher.rs | 144 ma.set_source(source); in start_custom_arg() 155 ma.set_source(source); in start_custom_group() 171 ma.set_source(ValueSource::CommandLine); in start_occurrence_of_external()
|
| /external/python/cffi/demo/ |
| D | readdir2_build.py | 23 ffi.set_source("_readdir2_cffi", """
|
| D | pwuid_build.py | 11 ffi.set_source('_pwuid_cffi', """ // passed to the real C compiler
|
| D | winclipboard_build.py | 31 ffi.set_source('_winclipboard_cffi', '''
|
| D | bsdopendirtype_build.py | 17 ffibuilder.set_source("_bsdopendirtype", """
|
| D | gmp_build.py | 22 ffibuilder.set_source('_gmp_cffi', "#include <gmp.h>",
|
| D | embedding.py | 19 ffibuilder.set_source("_embedding_cffi", "")
|
| D | xclient_build.py | 20 ffi.set_source('_xclient_cffi', """
|
| D | readdir_build.py | 30 ffi.set_source("_readdir", None)
|
| D | recopendirtype_build.py | 13 ffi.set_source("_recopendirtype", """
|
| D | _curses_build.py | 285 ffi.set_source("_curses_cffi", """
|
| /external/python/cffi/testing/embedding/ |
| D | empty.py | 7 ffi.set_source("_empty_cffi", "")
|
| D | initerror.py | 13 ffi.set_source("_initerror_cffi", """
|
| D | perf.py | 17 ffi.set_source("_perf_cffi", """
|
| D | add1.py | 33 ffi.set_source("_add1_cffi", """
|
| D | add3.py | 20 ffi.set_source("_add3_cffi", """
|
| D | tlocal.py | 29 ffi.set_source("_tlocal_cffi", """
|
123