Home
last modified time | relevance | path

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

123

/external/libepoxy/
Dmeson.build15 epoxy_prefix = get_option('prefix')
16 epoxy_libdir = join_paths(epoxy_prefix, get_option('libdir'))
17 epoxy_datadir = join_paths(epoxy_prefix, get_option('datadir'))
18 epoxy_includedir = join_paths(epoxy_prefix, get_option('includedir'))
27 conf.set_quoted('PACKAGE_DATADIR', join_paths(get_option('prefix'), get_option('datadir')))
28 conf.set_quoted('PACKAGE_LIBDIR', join_paths(get_option('prefix'), get_option('libdir')))
29 conf.set_quoted('PACKAGE_LOCALEDIR', join_paths(get_option('prefix'), get_option('datadir'), 'local…
30 conf.set_quoted('PACKAGE_LIBEXECDIR', join_paths(get_option('prefix'), get_option('libexecdir')))
37 enable_glx = get_option('glx')
44 enable_egl = get_option('egl')
[all …]
/external/igt-gpu-tools/
Dmeson.build12 if get_option('b_ndebug') != 'false'
19 if not cc.compiles(files('lib/check-ndebug.h'), args: get_option('c_args'))
80 build_chamelium = get_option('chamelium')
81 build_docs = get_option('docs')
82 build_tests = not get_option('tests').disabled()
83 with_libdrm = get_option('libdrm_drivers')
85 build_info = ['Build type: ' + get_option('buildtype')]
121 libunwind = dependency('libunwind', required : get_option('libunwind'))
127 valgrind = dependency('valgrind', required : get_option('valgrind'))
231 if ['debugoptimized', 'release', 'minsize'].contains(get_option('buildtype'))
[all …]
/external/libdrm/
Dmeson.build34 config.set10('UDEV', get_option('udev'))
35 with_freedreno_kgsl = get_option('freedreno-kgsl')
36 with_install_tests = get_option('install-test-programs')
73 _intel = get_option('intel')
83 _radeon = get_option('radeon')
92 _amdgpu = get_option('amdgpu')
101 _nouveau = get_option('nouveau')
110 _vmwgfx = get_option('vmwgfx')
116 _omap = get_option('omap')
125 _freedreno = get_option('freedreno')
[all …]
/external/mesa3d/src/gallium/targets/lavapipe/
Dmeson.build14 module_dir = join_paths(get_option('prefix'), get_option('bindir'))
16 module_dir = join_paths(get_option('prefix'), get_option('libdir'))
/external/mesa3d/
Dmeson.build37 if get_option('layout') != 'mirror'
52 with_vulkan_icd_dir = get_option('vulkan-icd-dir')
53 with_tests = get_option('build-tests')
54 with_aco_tests = get_option('build-aco-tests')
55 with_glx_read_only_text = get_option('glx-read-only-text')
56 with_glx_direct = get_option('glx-direct')
57 with_osmesa = get_option('osmesa')
58 with_swr_arches = get_option('swr-arches')
59 with_vulkan_overlay_layer = get_option('vulkan-overlay-layer')
60 with_tools = get_option('tools')
[all …]
/external/mesa3d/src/intel/tools/
Dmeson.build79 join_paths(get_option('prefix'), get_option('libexecdir'))
83 join_paths(get_option('prefix'), get_option('libdir'))
88 install_dir : get_option('bindir'),
101 install_dir : get_option('libexecdir'),
108 install_dir : get_option('bindir'),
124 install_dir : get_option('libexecdir'),
132 install_dir : get_option('bindir'),
/external/v8/third_party/zlib/contrib/bench/
Dzlib_bench.cc297 char* get_option(int argc, char* argv[], const char* option) { in get_option() function
319 if (get_option(argc, argv, "zlib")) in main()
321 else if (get_option(argc, argv, "gzip")) in main()
323 else if (get_option(argc, argv, "raw")) in main()
329 if (get_option(argc, argv, "--compression")) { in main()
332 } else if (get_option(argc, argv, "--huffman")) { in main()
334 } else if (get_option(argc, argv, "--rle")) { in main()
/external/autotest/client/cros/
Ddhcp_handling_rule.py316 requested_parameters = query_packet.get_option(
397 server_ip = query_packet.get_option(dhcp_packet.OPTION_SERVER_ID)
398 requested_ip = query_packet.get_option(dhcp_packet.OPTION_REQUESTED_IP)
436 requested_parameters = query_packet.get_option(
478 if query_packet.get_option(dhcp_packet.OPTION_SERVER_ID) is not None:
483 requested_ip = query_packet.get_option(dhcp_packet.OPTION_REQUESTED_IP)
529 server_ip = query_packet.get_option(dhcp_packet.OPTION_SERVER_ID)
613 server_ip = query_packet.get_option(dhcp_packet.OPTION_SERVER_ID)
Ddhcp_unittest.py226 offer_packet.get_option(dhcp_packet.OPTION_SERVER_ID))
229 offer_packet.get_option(dhcp_packet.OPTION_SUBNET_MASK))
232 offer_packet.get_option(dhcp_packet.OPTION_IP_LEASE_TIME))
235 offer_packet.get_option(dhcp_packet.OPTION_REQUESTED_IP))
/external/python/cpython2/Lib/test/
Dtest_optparse.py342 opt1 = self.parser.get_option("-v")
350 opt1 = self.parser.get_option("-v")
351 opt2 = self.parser.get_option("--verbose")
352 opt3 = self.parser.get_option("-n")
353 opt4 = self.parser.get_option("--noisy")
361 self.assertTrue(self.parser.get_option("-v") is None)
362 self.assertTrue(self.parser.get_option("--verbose") is None)
363 self.assertTrue(self.parser.get_option("-n") is None)
364 self.assertTrue(self.parser.get_option("--noisy") is None)
431 self.assertEqual(self.parser.get_option("-s").type, "string")
[all …]
/external/zlib/contrib/bench/
Dzlib_bench.cc277 char* get_option(int argc, char* argv[], const char* option) { in get_option() function
296 if (get_option(argc, argv, "zlib")) in main()
298 else if (get_option(argc, argv, "gzip")) in main()
300 else if (get_option(argc, argv, "raw")) in main()
305 if (!get_option(argc, argv, "--compression")) in main()
/external/python/cpython3/Lib/test/
Dtest_optparse.py353 opt1 = self.parser.get_option("-v")
361 opt1 = self.parser.get_option("-v")
362 opt2 = self.parser.get_option("--verbose")
363 opt3 = self.parser.get_option("-n")
364 opt4 = self.parser.get_option("--noisy")
372 self.assertTrue(self.parser.get_option("-v") is None)
373 self.assertTrue(self.parser.get_option("--verbose") is None)
374 self.assertTrue(self.parser.get_option("-n") is None)
375 self.assertTrue(self.parser.get_option("--noisy") is None)
442 self.assertEqual(self.parser.get_option("-s").type, "string")
[all …]
/external/angle/third_party/jsoncpp/source/
Dmeson.build29 install_dir : join_paths(get_option('prefix'), get_option('includedir'), 'json')
49 if get_option('default_library') == 'shared' and meson.get_compiler('cpp').get_id() == 'msvc'
/external/libfuse/lib/
Dmeson.build35 fusermount_path = join_paths(get_option('prefix'), get_option('bindir'))
/external/parameter-framework/asio-1.10.6/include/asio/
Dbasic_socket_acceptor.hpp627 void get_option(GettableSocketOption& option) in get_option() function in asio::basic_socket_acceptor
630 this->get_service().get_option(this->get_implementation(), option, ec); in get_option()
662 asio::error_code get_option(GettableSocketOption& option, in get_option() function in asio::basic_socket_acceptor
665 return this->get_service().get_option( in get_option()
Dbasic_socket.hpp886 void get_option(GettableSocketOption& option) const in get_option() function in asio::basic_socket
889 this->get_service().get_option(this->get_implementation(), option, ec); in get_option()
934 asio::error_code get_option(GettableSocketOption& option, in get_option() function in asio::basic_socket
937 return this->get_service().get_option( in get_option()
Dsocket_acceptor_service.hpp174 asio::error_code get_option(const implementation_type& impl, in get_option() function in asio::socket_acceptor_service
177 return service_impl_.get_option(impl, option, ec); in get_option()
/external/mesa3d/src/util/
Dmeson.build135 install_data(files_drirc, install_dir : join_paths(get_option('datadir'), 'drirc.d'))
215 join_paths(get_option('prefix'), get_option('sysconfdir'))
218 join_paths(get_option('prefix'), get_option('datadir'))
/external/libdrm/amdgpu/
Dmeson.build22 datadir_amdgpu = join_paths(get_option('prefix'), get_option('datadir'), 'libdrm')
/external/mesa3d/src/vulkan/overlay-layer/
Dmeson.build51 install_dir : join_paths(get_option('datadir'), 'vulkan', 'explicit_layer.d'),
56 install_dir : get_option('bindir'),
/external/mesa3d/src/gallium/auxiliary/pipe-loader/
Dmeson.build70 join_paths(get_option('prefix'), get_option('libdir'), 'gallium-pipe')
/external/mesa3d/src/freedreno/
Dmeson.build25 rnn_install_path = get_option('datadir') + '/freedreno/registers'
26 rnn_path = rnn_src_path + ':' + get_option('prefix') + '/' + rnn_install_path
/external/igt-gpu-tools/overlay/
Dmeson.build1 build_overlay = get_option('overlay')
2 overlay_backends = get_option('overlay_backends')
/external/libdrm/man/
Dmeson.build42 install_dir : join_paths(get_option('mandir'), 'man@0@'.format(s)),
64 install_dir : join_paths(get_option('mandir'), 'man7'),
/external/mesa3d/src/intel/vulkan/
Dmeson.build62 '--lib-path', join_paths(get_option('prefix'), get_option('libdir')),
211 if get_option('buildtype') == 'debug' # Same rule as `-DDEBUG` in /meson.build

123