/external/libchrome/mojo/public/tools/bindings/ |
D | mojom.gni | 299 defined(invoker.sources) || defined(invoker.deps) || 300 defined(invoker.public_deps), 303 if (defined(invoker.export_class_attribute) || 304 defined(invoker.export_define) || defined(invoker.export_header)) { 305 assert(defined(invoker.export_class_attribute)) 306 assert(defined(invoker.export_define)) 307 assert(defined(invoker.export_header)) 308 assert(!defined(invoker.component_macro_prefix)) 310 if (defined(invoker.export_class_attribute_blink) || 311 defined(invoker.export_define_blink) || [all …]
|
/external/perfetto/gn/standalone/ |
D | proto_library.gni | 16 assert(defined(invoker.sources)) 17 proto_sources = invoker.sources 21 if (defined(invoker.proto_in_dir)) { 22 proto_in_dir = invoker.proto_in_dir 24 assert(defined(invoker.proto_out_dir), 26 proto_out_dir = invoker.proto_out_dir 32 assert(defined(invoker.generate_python) && !invoker.generate_python) 37 if (defined(invoker.generate_cc)) { 38 generate_cc = invoker.generate_cc 42 if (defined(invoker.generate_descriptor)) { [all …]
|
D | wasm.gni | 37 assert(defined(invoker.name)) 40 assert(invoker.name + "_wasm" == target_name) 41 _lib_name = invoker.name 87 if (defined(invoker.js_library)) { 90 invoker.js_library, 107 forward_variables_from(invoker, _vars_to_forward) 141 not_needed(invoker, "*")
|
/external/webrtc/webrtc/base/ |
D | thread_unittest.cc | 360 AsyncInvoker invoker; in TEST() local 361 invoker.AsyncInvoke<void>( in TEST() 386 void AsyncInvokeIntCallback(AsyncInvoker* invoker, Thread* thread) { in AsyncInvokeIntCallback() argument 388 invoker->AsyncInvoke(thread, FunctorC(), in AsyncInvokeIntCallback() 410 AsyncInvoker invoker; in TEST_F() local 416 invoker.AsyncInvoke<void>(&thread, FunctorB(&called)); in TEST_F() 421 AsyncInvoker invoker; in TEST_F() local 427 invoker.AsyncInvoke(&thread, FunctorA(), in TEST_F() 439 AsyncInvoker invoker; in TEST_F() local 440 invoker.AsyncInvoke(&thread, FunctorC(), in TEST_F() [all …]
|
D | asyncinvoker-inl.h | 61 NotifyingAsyncClosureBase(AsyncInvoker* invoker, Thread* calling_thread); 82 NotifyingAsyncClosure(AsyncInvoker* invoker, in NotifyingAsyncClosure() argument 87 : NotifyingAsyncClosureBase(invoker, calling_thread), in NotifyingAsyncClosure() 110 NotifyingAsyncClosure(AsyncInvoker* invoker, in NotifyingAsyncClosure() argument 115 : NotifyingAsyncClosureBase(invoker, calling_thread), in NotifyingAsyncClosure()
|
D | asyncinvoker.cc | 103 NotifyingAsyncClosureBase::NotifyingAsyncClosureBase(AsyncInvoker* invoker, in NotifyingAsyncClosureBase() argument 105 : invoker_(invoker), calling_thread_(calling_thread) { in NotifyingAsyncClosureBase() 108 invoker->SignalInvokerDestroyed.connect( in NotifyingAsyncClosureBase()
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | example-function.cpp | 31 function() : invoker (0) { } in function() 32 function(const function& other) : invoker(0) { in function() 33 if (other.invoker) in function() 34 invoker = other.invoker->clone(); in function() 37 template<typename F> function(const F& f) : invoker(0) { in function() 38 invoker = new functor_invoker<F, R, Args...>(f); in function() 42 if (invoker) in ~function() 43 delete invoker; in ~function() 58 invoker_base<R, Args...>* tmp = invoker; in swap() 59 invoker = other.invoker; in swap() [all …]
|
/external/pdfium/testing/ |
D | test.gni | 19 _use_raw_android_executable = defined(invoker.use_raw_android_executable) && 20 invoker.use_raw_android_executable 24 _output_name = invoker.target_name 25 if (defined(invoker.output_name)) { 26 _output_name = invoker.output_name 41 "$target_out_dir/${invoker.target_name}/${invoker.target_name}" 47 forward_variables_from(invoker, 77 if (defined(invoker.extra_dist_files)) { 78 extra_files = invoker.extra_dist_files 97 configs = invoker.configs [all …]
|
/external/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) { 24 foreach(dir, invoker.public_include_dirs) { 32 not_needed(invoker, "*") 38 if (defined(invoker.sources)) { 46 forward_variables_from(invoker, "*", [ "public_include_dirs" ]) 77 forward_variables_from(invoker, "*", [])
|
/external/skqp/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 not_needed(invoker, "*") 31 if (defined(invoker.sources)) { 39 forward_variables_from(invoker, "*", [ "public_include_dirs" ]) 65 forward_variables_from(invoker, "*", [])
|
/external/swiftshader/src/ |
D | swiftshader.gni | 31 forward_variables_from(invoker, "*", [ "configs" ]) 32 if (defined(invoker.configs)) { 33 configs += invoker.configs 42 forward_variables_from(invoker, "*", [ "configs" ]) 43 if (defined(invoker.configs)) { 44 configs += invoker.configs 53 forward_variables_from(invoker, "*", [ "configs" ]) 54 if (defined(invoker.configs)) { 55 configs += invoker.configs
|
/external/grpc-grpc/src/csharp/Grpc.Core/Interceptors/ |
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()
|
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()
|
/external/perfetto/ui/ |
D | BUILD.gn | 55 forward_variables_from(invoker, 64 if (defined(invoker.deps)) { 65 deps += invoker.deps 68 _node_cmd = invoker.node_cmd 70 if (defined(invoker.suppress_stdout) && invoker.suppress_stdout) { 73 if (defined(invoker.suppress_stderr) && invoker.suppress_stderr) { 80 ] + invoker.args 89 assert(defined(invoker.input)) 90 assert(defined(invoker.output)) 91 forward_variables_from(invoker, [ "deps" ]) [all …]
|
/external/pdfium/third_party/yasm/ |
D | yasm_assemble.gni | 97 assert(defined(invoker.sources), "Need sources defined for $target_name") 111 sources = invoker.sources 113 if (defined(invoker.inputs)) { 114 inputs = invoker.inputs 129 if (defined(invoker.deps)) { 130 deps += invoker.deps 135 if (defined(invoker.yasm_flags)) { 136 args += invoker.yasm_flags 140 if (defined(invoker.include_dirs)) { 141 foreach(include, invoker.include_dirs) { [all …]
|
/external/v8/gni/ |
D | v8.gni | 133 if (defined(invoker.split_count) && invoker.split_count > 1 && 146 forward_variables_from(invoker, "*", [ "configs" ]) 147 configs += invoker.configs 155 forward_variables_from(invoker, "*", [ "configs" ]) 156 configs += invoker.configs 164 forward_variables_from(invoker, 170 if (defined(invoker.remove_configs)) { 171 configs -= invoker.remove_configs 173 configs += invoker.configs 197 forward_variables_from(invoker, "*", [ "configs" ]) [all …]
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowActivity.java | 535 final ActivityInvoker invoker = new ActivityInvoker(); in callOnActivityResult() local 536 invoker in callOnActivityResult() 597 final ActivityInvoker invoker = new ActivityInvoker(); in showDialog() local 598 dialog = (Dialog) invoker.call("onCreateDialog", Integer.TYPE).with(id); in showDialog() 603 invoker.call("onPrepareDialog", Integer.TYPE, Dialog.class).with(id, dialog); in showDialog() 605 …invoker.call("onPrepareDialog", Integer.TYPE, Dialog.class, Bundle.class).with(id, dialog, bundle); in showDialog() 649 final ActivityInvoker invoker = new ActivityInvoker(); in recreate() local 651 invoker.call("onSaveInstanceState", Bundle.class).with(outState); in recreate() 652 invoker.call("onPause").withNothing(); in recreate() 653 invoker.call("onStop").withNothing(); in recreate() [all …]
|
/external/webrtc/webrtc/test/fuzzers/ |
D | webrtc_fuzzer.gni | 12 assert(defined(invoker.sources), "Need sources in $target_name.") 15 forward_variables_from(invoker, [ "sources" ]) 19 if (defined(invoker.deps)) { 20 deps += invoker.deps
|
/external/perfetto/gn/ |
D | ipc_library.gni | 26 perfetto_root_path = invoker.perfetto_root_path 35 if (defined(invoker.deps)) { 36 deps += invoker.deps 38 forward_variables_from(invoker,
|
D | protozero_library.gni | 24 perfetto_root_path = invoker.perfetto_root_path 34 if (defined(invoker.deps)) { 35 deps = invoker.deps 42 forward_variables_from(invoker,
|
/external/perfetto/gn/standalone/toolchain/ |
D | BUILD.gn | 64 ar = invoker.ar 65 cc = invoker.cc 66 cxx = invoker.cxx 152 current_cpu = invoker.cpu 153 current_os = invoker.os
|
/external/jacoco/jacoco-maven-plugin.test/it/it-site/ |
D | invoker.properties | 1 invoker.goals = clean test site 4 invoker.maven.version = 2.2.0+
|
/external/jacoco/jacoco-maven-plugin.test/it/it-site-failsafe/ |
D | invoker.properties | 1 invoker.goals = clean verify site 4 invoker.maven.version = 2.2.1+
|
/external/catch2/include/internal/ |
D | catch_test_registry.cpp | 21 …AutoReg::AutoReg( ITestInvoker* invoker, SourceLineInfo const& lineInfo, StringRef const& classOrM… in AutoReg() argument 26 invoker, in AutoReg()
|
/external/swiftshader/third_party/SPIRV-Tools/test/fuzzers/ |
D | BUILD.gn | 48 sources = invoker.sources 54 if (defined(invoker.deps)) { 55 deps += invoker.deps
|