/third_party/skia/third_party/ |
D | third_party.gni | 14 enabled = !defined(invoker.enabled) || invoker.enabled 17 forward_variables_from(invoker, "*", [ "include_dirs" ]) 19 if (defined(invoker.cflags_cc)) { 20 cflags_cc = invoker.cflags_cc 23 include_dirs = invoker.include_dirs 25 foreach(dir, invoker.include_dirs) { 33 foreach(dir, invoker.include_dirs) { 48 not_needed(invoker, "*") 54 enabled = !defined(invoker.enabled) || invoker.enabled 57 if (defined(invoker.public_defines)) { [all …]
|
/third_party/skia/gn/ |
D | ios.gni | 19 forward_variables_from(invoker, 24 assert(defined(invoker.sources), 26 assert(defined(invoker.output_extension), 30 if (defined(invoker.ibtool_flags)) { 31 ibtool_flags = invoker.ibtool_flags 34 _output_extension = invoker.output_extension 37 sources = invoker.sources 61 assert(defined(invoker.source), 64 _source_extension = get_path_info(invoker.source, "extension") 78 sources = [ invoker.source ] [all …]
|
/third_party/boost/boost/thread/detail/ |
D | invoker.hpp | 45 class invoker class 54 BOOST_THREAD_COPYABLE_AND_MOVABLE( invoker) 60 explicit invoker(BOOST_THREAD_FWD_REF(F) f, BOOST_THREAD_FWD_REF(As)... args) in invoker() function in boost::detail::invoker 65 invoker(BOOST_THREAD_RV_REF(invoker) f) : f_(boost::move(BOOST_THREAD_RV(f).f_)) in invoker() function in boost::detail::invoker 69 invoker( const invoker& f) : f_(f.f_) in invoker() function in boost::detail::invoker 73 invoker& operator=(BOOST_THREAD_RV_REF(invoker) f) in operator =() 83 invoker& operator=( BOOST_THREAD_COPY_ASSIGN_REF(invoker) f) in operator =() 165 class invoker; 169 class invoker<Fp BOOST_PP_COMMA_IF(n) BOOST_PP_ENUM_PARAMS(n, Arg)> \ 174 BOOST_THREAD_COPYABLE_AND_MOVABLE(invoker) \ [all …]
|
/third_party/flutter/engine/flutter/lib/snapshot/ |
D | BUILD.gn | 67 assert(defined(invoker.deps), "Must define deps") 68 assert(defined(invoker.input), "Must define input binary file") 69 assert(defined(invoker.symbol), "Must define symbol name") 70 assert(defined(invoker.executable), "Must define boolean executable") 73 deps = invoker.deps 75 output = invoker.input + ".S" 78 rebase_path(invoker.input), 82 invoker.symbol, 86 if (defined(invoker.size_symbol)) { 89 invoker.size_symbol, [all …]
|
/third_party/skia/build/fuchsia/ |
D | sdk.gni | 26 assert(defined(invoker.meta), "The meta.json file path must be specified.") 30 meta_json = read_file(invoker.meta, "json") 67 assert(defined(invoker.meta), "The meta.json file path must be specified.") 71 meta_json = read_file(invoker.meta, "json") 95 inputs = [ invoker.meta ] 111 rebase_path(invoker.meta), 137 # Produce a cc source library from invoker's json file. 141 assert(defined(invoker.meta), "The meta.json file path must be specified.") 143 meta_json = read_file(invoker.meta, "json") 190 assert(defined(invoker.meta), "The meta.json file path must be specified.") [all …]
|
/third_party/gn/examples/ios/build/config/ios/templates/ |
D | merge_plist.gni | 32 assert(defined(invoker.output) && invoker.output != "", 34 assert(defined(invoker.plists) && invoker.plists != [], 37 if (defined(invoker.substitutions)) { 38 assert(!defined(invoker.substitutions_json), 42 write_file(_substitutions_json, invoker.substitutions, "json") 45 if (defined(invoker.substitutions_json)) { 46 _substitutions_json = invoker.substitutions_json 50 forward_variables_from(invoker, 65 sources = invoker.plists 66 outputs = [ invoker.output ] [all …]
|
D | ios_binary_bundle.gni | 48 defined(invoker.bundle_extension), 51 defined(invoker.bundle_identifier), 53 assert(defined(invoker.bundle_type), 55 assert(defined(invoker.product_type), 59 if (defined(invoker.output_name)) { 60 _output_name = invoker.output_name 64 if (defined(invoker.display_name)) { 65 _display_name = invoker.display_name 76 PRODUCT_BUNDLE_IDENTIFIER = invoker.bundle_identifier 77 PRODUCT_BUNDLE_PACKAGE_TYPE = invoker.bundle_type [all …]
|
/third_party/node/tools/inspector_protocol/ |
D | inspector_protocol.gni | 23 assert(defined(invoker.config_file)) 24 assert(defined(invoker.out_dir)) 25 assert(defined(invoker.outputs)) 26 assert(defined(invoker.inspector_protocol_dir)) 27 inspector_protocol_dir = invoker.inspector_protocol_dir 33 invoker.config_file, 60 if (defined(invoker.inputs)) { 61 inputs += invoker.inputs 68 rebase_path(invoker.out_dir, root_build_dir), 70 rebase_path(invoker.config_file, root_build_dir), [all …]
|
/third_party/boost/libs/thread/test/functional/invoker/ |
D | invoker_rvalue_pass.cpp | 51 boost::detail::invoker<void(*)(int), int>(f_void_1, 2)(); in test_void_1() 58 boost::detail::invoker<void(*)(int), int>(fp, 3)(); in test_void_1() 66 boost::detail::invoker<A_void_1, int>(a0, 4)(); in test_void_1() 78 boost::detail::invoker<void (A_void_1::*)(), A_void_1>(fp, A_void_1())(); in test_void_1() 88 boost::detail::invoker<void (A_void_1::*)(), A_void_1*>(fp, &a)(); in test_void_1() 100 boost::detail::invoker<void (A_void_1::*)() const, A_void_1>(fp, A_void_1())(); in test_void_1() 104 boost::detail::invoker<void (A_void_1::*)() const, A_void_1*>(fp, &a)(); in test_void_1() 135 BOOST_TEST((boost::detail::invoker<int (*)(int), int>(f_int_1, 2)() == 3)); in test_int_1() 140 BOOST_TEST((boost::detail::invoker<int (*)(int), int>(fp, 3)() == 4)); in test_int_1() 145 BOOST_TEST((boost::detail::invoker<A_int_1, int>(A_int_1(), 4)() == 3)); in test_int_1() [all …]
|
D | invoker_lvalue_pass.cpp | 53 boost::detail::invoker<void(*)(int), int>(f_void_1, i)(); in test_void_1() 69 boost::detail::invoker<void(*)(int), int>(fp, i)(); in test_void_1() 85 boost::detail::invoker<void(*)(int), int>(fp, i)(); in test_void_1() 102 boost::detail::invoker<A_void_1, int>(a0, i)(); in test_void_1() 120 boost::detail::invoker<void (A_void_1::*)(), A_void_1>(fp, a)(); in test_void_1() 124 boost::detail::invoker<void (A_void_1::*)(), A_void_1*>(fp, ap)(); in test_void_1() 145 boost::detail::invoker<void (A_void_1::*)() const, A_void_1>(fp, a)(); in test_void_1() 149 boost::detail::invoker<void (A_void_1::*)() const, A_void_1*>(fp, ap)(); in test_void_1() 194 BOOST_TEST((boost::detail::invoker<int(*)(int), int>(f_int_1, i)() == 3)); in test_int_1() 203 BOOST_TEST((boost::detail::invoker<int (*)(int), int>(fp, i)() == 4)); in test_int_1() [all …]
|
/third_party/boost/boost/hof/ |
D | implicit.hpp | 111 struct invoker struct 115 constexpr invoker(Pack pp) BOOST_HOF_NOEXCEPT_CONSTRUCTIBLE(Pack, Pack&&) in invoker() function 126 invoker (const invoker&) = delete; 127 invoker& operator= (const invoker&) = delete; 131 invoker (invoker&&) = default; 138 …constexpr invoker<Pack> operator()(Pack p) const BOOST_HOF_NOEXCEPT(noexcept(invoker<Pack>(boost::… in operator ()() 140 return invoker<Pack>(boost::hof::move(p)); in operator ()()
|
/third_party/flutter/skia/third_party/externals/angle2/gni/ |
D | angle.gni | 148 forward_variables_from(invoker, 157 forward_variables_from(invoker, [ "visibility" ]) 159 configs += invoker.configs 160 configs -= invoker.suppressed_configs 166 forward_variables_from(invoker, 175 forward_variables_from(invoker, [ "visibility" ]) 177 configs += invoker.configs 178 configs -= invoker.suppressed_configs 191 forward_variables_from(invoker, 200 forward_variables_from(invoker, [ "visibility" ]) [all …]
|
/third_party/wayland_standard/ |
D | wayland_protocol.gni | 10 forward_variables_from(invoker, 15 forward_variables_from(invoker, 23 _rebased_script = rebase_path(invoker.script, root_build_dir) 25 inputs = [ invoker.script ] 26 if (defined(invoker.inputs)) { 27 inputs += invoker.inputs 31 if (defined(invoker.args)) { 32 args += invoker.args 38 assert(defined(invoker.sources), "Need sources for wayland_protocol template") 43 foreach(protocol, invoker.sources) { [all …]
|
/third_party/boost/boost/asio/detail/impl/ |
D | strand_executor_service.hpp | 74 class strand_executor_service::invoker<Executor, class in boost::asio::detail::strand_executor_service 80 invoker(const implementation_type& impl, Executor& ex) in invoker() function in boost::asio::detail::strand_executor_service::invoker 86 invoker(const invoker& other) in invoker() function in boost::asio::detail::strand_executor_service::invoker 93 invoker(invoker&& other) in invoker() function in boost::asio::detail::strand_executor_service::invoker 102 invoker* this_; 114 BOOST_ASIO_MOVE_CAST(invoker)(*this_)); in ~on_invoker_exit() 143 class strand_executor_service::invoker<Executor, class in boost::asio::detail::strand_executor_service 149 invoker(const implementation_type& impl, Executor& ex) in invoker() function in boost::asio::detail::strand_executor_service::invoker 155 invoker(const invoker& other) in invoker() function in boost::asio::detail::strand_executor_service::invoker 162 invoker(invoker&& other) in invoker() function in boost::asio::detail::strand_executor_service::invoker [all …]
|
/third_party/boost/libs/asio/include/boost/asio/detail/impl/ |
D | strand_executor_service.hpp | 74 class strand_executor_service::invoker<Executor, class in boost::asio::detail::strand_executor_service 80 invoker(const implementation_type& impl, Executor& ex) in invoker() function in boost::asio::detail::strand_executor_service::invoker 86 invoker(const invoker& other) in invoker() function in boost::asio::detail::strand_executor_service::invoker 93 invoker(invoker&& other) in invoker() function in boost::asio::detail::strand_executor_service::invoker 102 invoker* this_; 114 BOOST_ASIO_MOVE_CAST(invoker)(*this_)); in ~on_invoker_exit() 143 class strand_executor_service::invoker<Executor, class in boost::asio::detail::strand_executor_service 149 invoker(const implementation_type& impl, Executor& ex) in invoker() function in boost::asio::detail::strand_executor_service::invoker 155 invoker(const invoker& other) in invoker() function in boost::asio::detail::strand_executor_service::invoker 162 invoker(invoker&& other) in invoker() function in boost::asio::detail::strand_executor_service::invoker [all …]
|
/third_party/boost/boost/log/attributes/ |
D | value_visitation.hpp | 250 value_visitor_invoker< T > invoker; in visit() local 251 return invoker(name, attrs, visitor); in visit() 267 value_visitor_invoker< T > invoker; in visit() local 268 return invoker(name, rec, visitor); in visit() 284 value_visitor_invoker< T > invoker; in visit() local 285 return invoker(name, rec, visitor); in visit() 300 value_visitor_invoker< T > invoker; in visit() local 301 return invoker(value, visitor); in visit() 317 value_visitor_invoker< typename DescriptorT::value_type > invoker; in visit() local 318 return invoker(keyword.get_name(), attrs, visitor); in visit() [all …]
|
/third_party/flutter/skia/third_party/ |
D | third_party.gni | 7 enabled = !defined(invoker.enabled) || invoker.enabled 11 if (defined(invoker.public_defines)) { 12 defines = invoker.public_defines 15 include_dirs = invoker.public_include_dirs 17 foreach(dir, invoker.public_include_dirs) { 25 foreach(dir, invoker.public_include_dirs) { 40 not_needed(invoker, "*") 46 if (defined(invoker.sources)) { 54 forward_variables_from(invoker, "*", [ "public_include_dirs" ]) 85 forward_variables_from(invoker, "*", [])
|
/third_party/flutter/engine/flutter/testing/ |
D | testing.gni | 20 assert(defined(invoker.assets_dir), "The assets directory.") 22 location_path = rebase_path(invoker.assets_dir) 44 assert(defined(invoker.dart_main), "The Dart Main file must be specified") 45 assert(defined(invoker.dart_kernel), 63 inputs = [ invoker.dart_main ] 65 outputs = [ invoker.dart_kernel ] 76 rebase_path(invoker.dart_kernel, root_out_dir), 94 args += [ rebase_path(invoker.dart_main) ] 106 assert(defined(invoker.dart_kernel), 114 inputs = [ invoker.dart_kernel ] [all …]
|
/third_party/flutter/engine/flutter/shell/common/ |
D | BUILD.gn | 9 # Required invoker inputs: 14 # Optional invoker inputs: 22 if (defined(invoker.deps)) { 23 deps += invoker.deps 26 if (defined(invoker.datadeps)) { 27 datadeps = invoker.datadeps 30 output = invoker.output 33 inputs = [ script ] + invoker.inputs 35 root_prefix = rebase_path(invoker.root_prefix) 45 invoker.table_name, [all …]
|
/third_party/grpc/src/csharp/Grpc.Core.Api/Interceptors/ |
D | InterceptingCallInvoker.cs | 30 readonly CallInvoker invoker; field in Grpc.Core.Interceptors.InterceptingCallInvoker 37 public InterceptingCallInvoker(CallInvoker invoker, Interceptor interceptor) in InterceptingCallInvoker() argument 39 this.invoker = GrpcPreconditions.CheckNotNull(invoker, nameof(invoker)); in InterceptingCallInvoker() 51 (req, ctx) => invoker.BlockingUnaryCall(ctx.Method, ctx.Host, ctx.Options, req)); in BlockingUnaryCall() 62 (req, ctx) => invoker.AsyncUnaryCall(ctx.Method, ctx.Host, ctx.Options, req)); in AsyncUnaryCall() 73 … (req, ctx) => invoker.AsyncServerStreamingCall(ctx.Method, ctx.Host, ctx.Options, req)); in AsyncServerStreamingCall() 83 ctx => invoker.AsyncClientStreamingCall(ctx.Method, ctx.Host, ctx.Options)); in AsyncClientStreamingCall() 93 ctx => invoker.AsyncDuplexStreamingCall(ctx.Method, ctx.Host, ctx.Options)); in AsyncDuplexStreamingCall()
|
D | CallInvokerExtensions.cs | 43 public static CallInvoker Intercept(this CallInvoker invoker, Interceptor interceptor) in Intercept() argument 45 return new InterceptingCallInvoker(invoker, interceptor); in Intercept() 64 … public static CallInvoker Intercept(this CallInvoker invoker, params Interceptor[] interceptors) in Intercept() argument 66 GrpcPreconditions.CheckNotNull(invoker, nameof(invoker)); in Intercept() 71 invoker = Intercept(invoker, interceptor); in Intercept() 74 return invoker; in Intercept() 92 …public static CallInvoker Intercept(this CallInvoker invoker, Func<Metadata, Metadata> interceptor) in Intercept() argument 94 return new InterceptingCallInvoker(invoker, new MetadataInterceptor(interceptor)); in Intercept()
|
/third_party/skia/third_party/externals/dawn/generator/ |
D | generator_lib.gni | 52 if (defined(invoker.args)) { 53 _generator_args += invoker.args 56 assert(defined(invoker.generator_lib_dir), 59 _template_dir = "${invoker.generator_lib_dir}/templates" 60 if (defined(invoker.template_dir)) { 61 _template_dir = invoker.template_dir 68 if (defined(invoker.root_dir)) { 75 if (defined(invoker.jinja2_path)) { 78 rebase_path(invoker.jinja2_path), 83 # invoker. This allows moving the definition of code generators in different [all …]
|
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/ |
D | flutter_app.gni | 60 if (!defined(invoker.components)) { 67 if (defined(invoker.fuchsia_package_name)) { 68 legacy_component_name = invoker.fuchsia_package_name 74 if (defined(invoker.sources)) { 75 pkg_sources = invoker.sources 79 main_dart = invoker.main_dart 83 deps = invoker.deps 89 forward_variables_from(invoker, "*") 138 if (defined(invoker.flutter_driver_extendable)) { 139 not_needed(invoker, [ "flutter_driver_extendable" ]) [all …]
|
/third_party/flutter/engine/flutter/shell/gpu/ |
D | gpu.gni | 8 assert(defined(invoker.enable_software), 10 assert(defined(invoker.enable_vulkan), 12 assert(defined(invoker.enable_gl), 14 assert(defined(invoker.enable_metal), 20 if (invoker.enable_software) { 24 if (invoker.enable_gl) { 28 if (invoker.enable_vulkan) { 32 if (invoker.enable_metal) {
|
/third_party/flutter/skia/third_party/externals/dawn/generator/ |
D | generator_lib.gni | 45 if (defined(invoker.args)) { 46 _generator_args += invoker.args 49 assert(defined(invoker.generator_lib_dir), 52 _template_dir = "${invoker.generator_lib_dir}/templates" 53 if (defined(invoker.template_dir)) { 54 _template_dir = invoker.template_dir 61 if (defined(invoker.root_dir)) { 68 if (defined(invoker.jinja2_path)) { 71 rebase_path(invoker.jinja2_path), 76 # invoker. This allows moving the definition of code generators in different [all …]
|