Home
last modified time | relevance | path

Searched refs:invoker (Results 1 – 25 of 87) sorted by relevance

1234

/external/v8/gni/
Dproto_library.gni11 assert(defined(invoker.sources))
12 proto_sources = invoker.sources
22 if (defined(invoker.proto_in_dir)) {
23 proto_in_dir = invoker.proto_in_dir
25 assert(defined(invoker.proto_out_dir),
27 proto_out_dir = invoker.proto_out_dir
33 assert(defined(invoker.generate_python) && !invoker.generate_python)
38 if (defined(invoker.generate_cc)) {
39 generate_cc = invoker.generate_cc
43 if (defined(invoker.generate_descriptor)) {
[all …]
Dv8.gni177 if (defined(invoker.split_count) && invoker.split_count > 1 &&
186 forward_variables_from(invoker,
194 if (defined(invoker.remove_configs)) {
195 configs -= invoker.remove_configs
197 configs += invoker.configs
203 forward_variables_from(invoker, "*", [ "configs" ])
206 configs += invoker.configs
212 forward_variables_from(invoker,
220 if (defined(invoker.remove_configs)) {
221 configs -= invoker.remove_configs
[all …]
Dsplit_static_library.gni9 assert(defined(invoker.split_count),
16 if (invoker.split_count == 1 || use_lld) {
18 forward_variables_from(invoker, "*")
25 foreach(current_sources, split_list(invoker.sources, invoker.split_count)) {
36 forward_variables_from(invoker,
57 if (defined(invoker.output_name)) {
58 output_name = "${invoker.output_name}_$current_library_index"
67 forward_variables_from(invoker,
/external/pdfium/testing/
Dtest.gni19 _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,
74 if (defined(invoker.extra_dist_files)) {
75 extra_files = invoker.extra_dist_files
94 configs = invoker.configs
[all …]
/external/libchrome/mojo/public/tools/bindings/
Dmojom.gni299 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/
Dproto_library.gni18 assert(defined(invoker.sources))
19 proto_sources = invoker.sources
23 if (defined(invoker.proto_in_dir)) {
24 proto_in_dir = invoker.proto_in_dir
26 assert(defined(invoker.proto_out_dir),
28 proto_out_dir = invoker.proto_out_dir
34 assert(defined(invoker.generate_python) && !invoker.generate_python)
39 if (defined(invoker.generate_cc)) {
40 generate_cc = invoker.generate_cc
44 if (defined(invoker.generate_descriptor)) {
[all …]
/external/webrtc/webrtc/base/
Dthread_unittest.cc360 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 …]
Dasyncinvoker-inl.h61 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()
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dexample-function.cpp31 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/skia/gn/
Dios.gni19 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")
79 invoker.source,
[all …]
/external/skia/build/fuchsia/
Dsdk.gni26 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")
96 invoker.meta,
114 rebase_path(invoker.meta),
143 # Produce a cc source library from invoker's json file.
147 assert(defined(invoker.meta), "The meta.json file path must be specified.")
149 meta_json = read_file(invoker.meta, "json")
196 assert(defined(invoker.meta), "The meta.json file path must be specified.")
[all …]
/external/skia/third_party/
Dthird_party.gni7 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, "*", [])
/external/skqp/third_party/
Dthird_party.gni7 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/perfetto/infra/perfetto.dev/
DBUILD.gn43 forward_variables_from(invoker,
50 if (defined(invoker.deps)) {
51 deps += invoker.deps
54 _node_cmd = invoker.node_cmd
56 if (defined(invoker.suppress_stdout) && invoker.suppress_stdout) {
59 if (defined(invoker.suppress_stderr) && invoker.suppress_stderr) {
66 ] + invoker.args
140 outputs = [ invoker.out_html ]
151 if (defined(invoker.html_template)) {
154 invoker.html_template,
[all …]
/external/perfetto/gn/
Dproto_library.gni63 perfetto_root_path = invoker.perfetto_root_path
74 if (defined(invoker.deps)) {
75 deps = invoker.deps
82 forward_variables_from(invoker,
105 perfetto_root_path = invoker.perfetto_root_path
122 if (defined(invoker.deps)) {
123 deps += invoker.deps
126 forward_variables_from(invoker,
145 perfetto_root_path = invoker.perfetto_root_path
155 if (defined(invoker.deps)) {
[all …]
Dperfetto_host_executable.gni26 if (defined(invoker.configs)) {
27 configs += invoker.configs
29 forward_variables_from(invoker, "*", [ "configs" ])
32 not_needed(invoker, "*", [ "testonly" ])
34 _testonly = defined(invoker.testonly) && invoker.testonly
/external/grpc-grpc/src/csharp/Grpc.Core/Interceptors/
DInterceptingCallInvoker.cs30 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()
DCallInvokerExtensions.cs43 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()
/external/angle/gni/
Dangle.gni220 forward_variables_from(invoker,
229 forward_variables_from(invoker, [ "visibility" ])
231 configs += invoker.configs
232 configs -= invoker.suppressed_configs
238 forward_variables_from(invoker,
247 forward_variables_from(invoker, [ "visibility" ])
249 configs += invoker.configs
250 configs -= invoker.suppressed_configs
263 forward_variables_from(invoker,
272 forward_variables_from(invoker, [ "visibility" ])
[all …]
/external/swiftshader/src/
Dswiftshader.gni48 forward_variables_from(invoker, "*", [ "configs" ])
49 if (defined(invoker.configs)) {
50 configs += invoker.configs
59 forward_variables_from(invoker, "*", [ "configs" ])
60 if (defined(invoker.configs)) {
61 configs += invoker.configs
70 forward_variables_from(invoker, "*", [ "configs" ])
71 if (defined(invoker.configs)) {
72 configs += invoker.configs
/external/pdfium/third_party/yasm/
Dyasm_assemble.gni97 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/perfetto/ui/
DBUILD.gn83 forward_variables_from(invoker,
90 if (defined(invoker.deps)) {
91 deps += invoker.deps
94 _node_cmd = invoker.node_cmd
96 if (defined(invoker.suppress_stdout) && invoker.suppress_stdout) {
99 if (defined(invoker.suppress_stderr) && invoker.suppress_stderr) {
106 ] + invoker.args
115 assert(defined(invoker.input))
116 assert(defined(invoker.output))
117 forward_variables_from(invoker, [ "deps" ])
[all …]
/external/perfetto/gn/standalone/toolchain/
DBUILD.gn131 ar = invoker.ar
132 cc = invoker.cc
133 cxx = invoker.cxx
137 if (defined(invoker.linker) && invoker.linker != "") {
138 _invoker_linker = invoker.linker
141 if (defined(invoker.sysroot) && invoker.sysroot != "") {
142 _invoker_sysroot = invoker.sysroot
146 if (defined(invoker.gcc_toolchain) && invoker.gcc_toolchain != "") {
148 _invoker_gcc_toolchain = invoker.gcc_toolchain
228 current_cpu = invoker.cpu
[all …]
/external/webrtc/webrtc/test/fuzzers/
Dwebrtc_fuzzer.gni12 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/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowActivity.java545 final ActivityInvoker invoker = new ActivityInvoker(); in callOnActivityResult() local
546 invoker in callOnActivityResult()
607 final ActivityInvoker invoker = new ActivityInvoker(); in showDialog() local
608 dialog = (Dialog) invoker.call("onCreateDialog", Integer.TYPE).with(id); in showDialog()
613 invoker.call("onPrepareDialog", Integer.TYPE, Dialog.class).with(id, dialog); in showDialog()
615invoker.call("onPrepareDialog", Integer.TYPE, Dialog.class, Bundle.class).with(id, dialog, bundle); in showDialog()
659 final ActivityInvoker invoker = new ActivityInvoker(); in recreate() local
661 invoker.call("onSaveInstanceState", Bundle.class).with(outState); in recreate()
662 invoker.call("onPause").withNothing(); in recreate()
663 invoker.call("onStop").withNothing(); in recreate()
[all …]

1234