Home
last modified time | relevance | path

Searched refs:combine (Results 1 – 25 of 604) sorted by relevance

12345678910>>...25

/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.1/object_spread_and_rest/
Dobject_spread_and_rest_1.ts37 let combine = { ...humen, ...job, ...data }; variable
39 Assert.equal(combine.name, humen.name);
40 Assert.equal(combine.age, humen.age);
41 Assert.equal(combine.job, job.job);
42 Assert.equal(combine.location, data.location);
43 Assert.equal(combine.pets.name, data.pets.name);
44 Assert.equal(combine.pets.type, data.pets.type);
45 Assert.equal(combine.name == humen.name, true);
46 Assert.equal(combine.age == humen.age, true);
47 Assert.equal(combine.job == job.job, true);
[all …]
Dobject_spread_and_rest_3.ts32 let combine = { ...humen, name: "huahua", job: "teacher" }; variable
34 let { job, ...restProperties } = combine;
35 Assert.equal(job, combine.job);
36 Assert.equal(restProperties.age, combine.age);
37 Assert.equal(restProperties.name, combine.name);
Dobject_spread_and_rest_2.ts32 let combine = { ...humen, name: "huahua", job: "teacher" }; variable
34 Assert.equal(combine.age, humen.age);
35 Assert.equal(combine.age == humen.age, true);
36 Assert.equal(combine.name != humen.name, true);
38 Assert.equal(combine.job != undefined, true);
/third_party/json/include/nlohmann/detail/
Dhash.hpp16 inline std::size_t combine(std::size_t seed, std::size_t h) noexcept in combine() function
47 return combine(type, 0); in hash()
52 auto seed = combine(type, j.size()); in hash()
56 seed = combine(seed, h); in hash()
57 seed = combine(seed, hash(element.value())); in hash()
64 auto seed = combine(type, j.size()); in hash()
67 seed = combine(seed, hash(element)); in hash()
75 return combine(type, h); in hash()
81 return combine(type, h); in hash()
87 return combine(type, h); in hash()
[all …]
/third_party/flutter/engine/flutter/lib/ui/
Dhash_codes.dart14 static int combine(int hash, Object o) {
33 /// If you need to combine an arbitrary number of objects from a [List] or other
51 result = _Jenkins.combine(result, arg01);
52 result = _Jenkins.combine(result, arg02);
54 result = _Jenkins.combine(result, arg03);
56 result = _Jenkins.combine(result, arg04);
58 result = _Jenkins.combine(result, arg05);
60 result = _Jenkins.combine(result, arg06);
62 result = _Jenkins.combine(result, arg07);
64 result = _Jenkins.combine(result, arg08);
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/
Dhash.h165 static H combine(H state, const T& value, const Ts&... values);
166 static H combine(H state) { return state; } in combine() function
270 return H::combine(std::move(hash_state),
283 return H::combine(std::move(hash_state),
307 hash_state = H::combine(std::move(hash_state), std::signbit(value));
325 hash_state = H::combine(std::move(hash_state), mantissa, exp);
328 return H::combine(std::move(hash_state), category);
339 return H::combine(std::move(hash_state), v, v);
345 return H::combine(std::move(hash_state), static_cast<void*>(nullptr));
364 return H::combine(std::move(hash_state), p.first, p.second);
[all …]
/third_party/pulseaudio/src/modules/gsettings/
Dpulseaudio.convert1 [org.freedesktop.pulseaudio.module-group:/org/freedesktop/pulseaudio/module-groups/combine/]
2 args0 = /system/pulseaudio/modules/combine/args0
3 args1 = /system/pulseaudio/modules/combine/args1
4 args2 = /system/pulseaudio/modules/combine/args2
5 args3 = /system/pulseaudio/modules/combine/args3
6 args4 = /system/pulseaudio/modules/combine/args4
7 args5 = /system/pulseaudio/modules/combine/args5
8 args6 = /system/pulseaudio/modules/combine/args6
9 args7 = /system/pulseaudio/modules/combine/args7
10 args8 = /system/pulseaudio/modules/combine/args8
[all …]
/third_party/openssl/Configurations/
D90-team.norelease.conf15 cflags => combine(join(' ', @gcc_devteam_warn),
24 cflags => combine(join(' ', @gcc_devteam_warn),
41 cflags => combine("-DL_ENDIAN -g -mcpu=pentium -Wall",
53 cflags => combine("-DL_ENDIAN -g -mcpu=pentiumpro -Wall",
65 cflags => combine(join(' ', @gcc_devteam_warn),
79 cflags => combine("-arch x86_64 -DL_ENDIAN",
D10-main.conf508 CFLAGS => combine(picker(debug => "-O0 -g",
613 cflags => combine("-mlp64", threads("-pthread")),
691 cxxflags => combine("-std=c++11", threads("-pthread")),
983 cppflags => combine("-DOPENSSL_SMALL_FOOTPRINT",
1134 cflags => combine("-Kalloca", threads("-Kthread")),
1227 cflags => combine("-maix64", threads("-pthread")),
1246 cflags => combine("-q32 -qmaxmem=16384 -qro -qroconst",
1262 cflags => combine("-q64 -qmaxmem=16384 -qro -qroconst",
1444 combine('/GF /Gy',
1453 add(combine(sub { defined(env('WCECOMPAT'))
[all …]
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
Ddisasm.c621 ppir_codegen_field_combine *combine = code; in print_combine() local
623 if (combine->scalar.dest_vec && in print_combine()
624 combine->scalar.arg1_en) { in print_combine()
630 asm_op op = combine_ops[combine->scalar.op]; in print_combine()
635 fprintf(fp, "op%u", combine->scalar.op); in print_combine()
638 if (!combine->scalar.dest_vec) in print_combine()
639 print_outmod(combine->scalar.dest_modifier, fp); in print_combine()
642 if (combine->scalar.dest_vec) { in print_combine()
643 fprintf(fp, "$%u", combine->vector.dest); in print_combine()
644 print_mask(combine->vector.mask, fp); in print_combine()
[all …]
/third_party/gstreamer/gstplugins_base/gst/playback/
Dgstplaybin3.c1596 GstSourceCombine *combine; in gst_play_bin3_set_current_stream() local
1606 combine = playbin->combiner + stream_type; in gst_play_bin3_set_current_stream()
1612 if (combine->combiner == NULL || combine->is_concat) { in gst_play_bin3_set_current_stream()
1622 if (!combine->has_active_pad) in gst_play_bin3_set_current_stream()
2077 get_combiner_stream_id (GstPlayBin3 * playbin, GstSourceCombine * combine, in get_combiner_stream_id() argument
2083 for (i = 0; i < combine->streams->len; i++) { in get_combiner_stream_id()
2084 GstStream *stream = (GstStream *) g_ptr_array_index (combine->streams, i); in get_combiner_stream_id()
2610 get_current_stream_number (GstPlayBin3 * playbin, GstSourceCombine * combine, in get_current_stream_number() argument
2619 if (!combine->has_active_pad) { in get_current_stream_number()
2649 GstSourceCombine *combine = NULL; in combiner_active_pad_changed() local
[all …]
Dgstplaybin2.c2227 get_current_stream_number (GstPlayBin * playbin, GstSourceCombine * combine, in get_current_stream_number() argument
2236 if (!combine->has_active_pad) { in get_current_stream_number()
2476 source_combine_remove_pads (GstPlayBin * playbin, GstSourceCombine * combine) in source_combine_remove_pads() argument
2478 if (combine->sinkpad) { in source_combine_remove_pads()
2480 gst_pad_unlink (combine->srcpad, combine->sinkpad); in source_combine_remove_pads()
2484 gst_play_sink_release_pad (playbin->playsink, combine->sinkpad); in source_combine_remove_pads()
2485 gst_object_unref (combine->sinkpad); in source_combine_remove_pads()
2486 combine->sinkpad = NULL; in source_combine_remove_pads()
2488 gst_object_unref (combine->srcpad); in source_combine_remove_pads()
2489 combine->srcpad = NULL; in source_combine_remove_pads()
[all …]
/third_party/typescript/tests/baselines/reference/
DgenericsAndHigherOrderFunctions.types4 var combine: <T, S>(f: (_: T) => S) =>
5 >combine : <T, S>(f: (_: T) => S) => <U>(g: (_: U) => T) => (x: U) => S
54 …) => M) => (_: M) => M) => <R>(f: (_: N) => (_: R) => R) => h(combine(f)(g)) : <K, N>(g…
59 …) => M) => (_: M) => M) => <R>(f: (_: N) => (_: R) => R) => h(combine(f)(g)) : (h: <M>(…
66 <R>(f: (_: N) => (_: R) => R) => h(combine(f)(g))
67 ><R>(f: (_: N) => (_: R) => R) => h(combine(f)(g)) : <R>(f: (_: N) => (_: R) => R) => (_: R) => R
71 >h(combine(f)(g)) : (_: R) => R
73 >combine(f)(g) : (x: K) => (_: R) => R
74 >combine(f) : <U>(g: (_: U) => N) => (x: U) => (_: R) => R
75 >combine : <T, S>(f: (_: T) => S) => <U>(g: (_: U) => T) => (x: U) => S
DinferFromGenericFunctionReturnTypes2.js8 declare function combine<A, B, C>(f: (x: A) => B, g: (x: B) => C): (x: A) => C;
15 let f4: Mapper<string, boolean> = combine(wrap(s => s.length), wrap(n => n >= 10));
22 let a4 = ["a", "b"].map(combine(wrap(s => s.length), wrap(n => n > 10)));
23 let a5 = ["a", "b"].map(combine(identity, wrap(s => s.length)));
24 let a6 = ["a", "b"].map(combine(wrap(s => s.length), identity));
102 var f4 = combine(wrap(function (s) { return s.length; }), wrap(function (n) { return n >= 10; }));
107 var a4 = ["a", "b"].map(combine(wrap(function (s) { return s.length; }), wrap(function (n) { return…
108 var a5 = ["a", "b"].map(combine(identity, wrap(function (s) { return s.length; })));
109 var a6 = ["a", "b"].map(combine(wrap(function (s) { return s.length; }), identity));
DgenericsAndHigherOrderFunctions.js4 var combine: <T, S>(f: (_: T) => S) => variable
18 <R>(f: (_: N) => (_: R) => R) => h(combine(f)(g))
22 var combine = function (f) {
29 return function (f) { return h(combine(f)(g)); };
DtypeInferenceWithTupleType.js2 function combine<T, U>(x: T, y: U): [T, U] {
6 var combineResult = combine("string", 10);
37 function combine(x, y) { function
40 var combineResult = combine("string", 10);
/third_party/vk-gl-cts/android/cts/main/vk-master-2021-03-01/
Dgraphicsfuzz.txt29 dEQP-VK.graphicsfuzz.cov-combine-and-or-xor-gt-lt
49 dEQP-VK.graphicsfuzz.cov-constants-combine-add-sub
55 dEQP-VK.graphicsfuzz.cov-dag-combiner-combine-casts-legalize-vector-types-xyz-swizzle-for-loop
107 dEQP-VK.graphicsfuzz.cov-inst-combine-compares-while-modulo
114 dEQP-VK.graphicsfuzz.cov-instruction-simplify-inst-combine-calls-for-compare-function-call-result
119 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-determinant
120 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-increase-negative
121 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-neg-func-arg
122 dEQP-VK.graphicsfuzz.cov-inst-combine-and-or-xor-pack-unpack
123 dEQP-VK.graphicsfuzz.cov-inst-combine-and-or-xor-switch
[all …]
/third_party/flutter/engine/flutter/testing/dart/
Dpath_test.dart19 test('path combine rect', () {
27 final Path difference = Path.combine(PathOperation.difference, pathCircle1, pathCircle2);
30 …final Path reverseDifference = Path.combine(PathOperation.reverseDifference, pathCircle1, pathCirc…
33 final Path union = Path.combine(PathOperation.union, pathCircle1, pathCircle2);
36 final Path intersect = Path.combine(PathOperation.intersect, pathCircle1, pathCircle2);
40 final Path xor = Path.combine(PathOperation.xor, pathCircle1, pathCircle2);
44 test('path combine oval', () {
52 final Path difference = Path.combine(PathOperation.difference, pathCircle1, pathCircle2);
56 …final Path reverseDifference = Path.combine(PathOperation.reverseDifference, pathCircle1, pathCirc…
59 final Path union = Path.combine(PathOperation.union, pathCircle1, pathCircle2);
[all …]
/third_party/typescript/tests/cases/compiler/
DinferFromGenericFunctionReturnTypes2.ts7 declare function combine<A, B, C>(f: (x: A) => B, g: (x: B) => C): (x: A) => C;
14 let f4: Mapper<string, boolean> = combine(wrap(s => s.length), wrap(n => n >= 10));
21 let a4 = ["a", "b"].map(combine(wrap(s => s.length), wrap(n => n > 10)));
22 let a5 = ["a", "b"].map(combine(identity, wrap(s => s.length)));
23 let a6 = ["a", "b"].map(combine(wrap(s => s.length), identity));
/third_party/mesa3d/src/mesa/main/
Dtexstate.c528 struct gl_tex_env_combine_state *combine; in update_tex_combine() local
553 combine = fftexUnit->_CurrentCombine; in update_tex_combine()
556 switch (combine->ModeRGB) { in update_tex_combine()
558 combine->_NumArgsRGB = 1; in update_tex_combine()
563 combine->_NumArgsRGB = 4; in update_tex_combine()
565 combine->_NumArgsRGB = 2; in update_tex_combine()
573 combine->_NumArgsRGB = 2; in update_tex_combine()
579 combine->_NumArgsRGB = 3; in update_tex_combine()
582 combine->_NumArgsRGB = 0; in update_tex_combine()
588 switch (combine->ModeA) { in update_tex_combine()
[all …]
/third_party/vk-gl-cts/android/cts/master/vk-master-2021-03-01/
Dgraphicsfuzz.txt45 dEQP-VK.graphicsfuzz.cov-combine-and-or-xor-gt-lt
69 dEQP-VK.graphicsfuzz.cov-constants-combine-add-sub
79 dEQP-VK.graphicsfuzz.cov-dag-combiner-combine-casts-legalize-vector-types-xyz-swizzle-for-loop
186 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-ldexp
187 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-pre-increase
188 dEQP-VK.graphicsfuzz.cov-inst-combine-compares-while-modulo
189 dEQP-VK.graphicsfuzz.cov-inst-combine-shifts-left-shift-for
196 dEQP-VK.graphicsfuzz.cov-instruction-simplify-inst-combine-calls-for-compare-function-call-result
201 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-determinant
202 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-increase-negative
[all …]
/third_party/vk-gl-cts/android/cts/master/vk-master/
Dgraphicsfuzz.txt57 dEQP-VK.graphicsfuzz.cov-combine-and-or-xor-gt-lt
81 dEQP-VK.graphicsfuzz.cov-constants-combine-add-sub
91 dEQP-VK.graphicsfuzz.cov-dag-combiner-combine-casts-legalize-vector-types-xyz-swizzle-for-loop
198 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-ldexp
199 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-pre-increase
200 dEQP-VK.graphicsfuzz.cov-inst-combine-compares-while-modulo
201 dEQP-VK.graphicsfuzz.cov-inst-combine-shifts-left-shift-for
208 dEQP-VK.graphicsfuzz.cov-instruction-simplify-inst-combine-calls-for-compare-function-call-result
213 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-determinant
214 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-increase-negative
[all …]
/third_party/vk-gl-cts/external/vulkancts/mustpass/master/vk-default/
Dgraphicsfuzz.txt57 dEQP-VK.graphicsfuzz.cov-combine-and-or-xor-gt-lt
81 dEQP-VK.graphicsfuzz.cov-constants-combine-add-sub
91 dEQP-VK.graphicsfuzz.cov-dag-combiner-combine-casts-legalize-vector-types-xyz-swizzle-for-loop
198 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-ldexp
199 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-pre-increase
200 dEQP-VK.graphicsfuzz.cov-inst-combine-compares-while-modulo
201 dEQP-VK.graphicsfuzz.cov-inst-combine-shifts-left-shift-for
208 dEQP-VK.graphicsfuzz.cov-instruction-simplify-inst-combine-calls-for-compare-function-call-result
213 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-determinant
214 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-increase-negative
[all …]
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlists/vk-default/
Dgraphicsfuzz.txt57 dEQP-VK.graphicsfuzz.cov-combine-and-or-xor-gt-lt
81 dEQP-VK.graphicsfuzz.cov-constants-combine-add-sub
91 dEQP-VK.graphicsfuzz.cov-dag-combiner-combine-casts-legalize-vector-types-xyz-swizzle-for-loop
198 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-ldexp
199 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-pre-increase
200 dEQP-VK.graphicsfuzz.cov-inst-combine-compares-while-modulo
201 dEQP-VK.graphicsfuzz.cov-inst-combine-shifts-left-shift-for
208 dEQP-VK.graphicsfuzz.cov-instruction-simplify-inst-combine-calls-for-compare-function-call-result
213 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-determinant
214 dEQP-VK.graphicsfuzz.cov-inst-combine-add-sub-increase-negative
[all …]
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/graphicsfuzz/
Dindex.txt21 … "cov-access-array-dot", "Covers instruction combine casting, combine shifting …
36 …ses-clamp", "A fragment shader that covers a specific inst combine select path" …
43 … "cov-bitcount", "Covers specific inst combine add sub and inst combine simpl…
65 { "cov-combine-and-or-xor-gt-lt.amber", "cov-combine-and-or-xor-gt-lt", "…
92 { "cov-constants-combine-add-sub.amber", "cov-constants-combine-add-sub", …
103 { "cov-dag-combiner-combine-casts-legalize-vector-types-xyz-swizzle-for-loop.amber", "cov-dag-com…
165 …izing-modulo", "A fragment shader that covers a specific inst combine compares code pat…
170 …allthrough", "A fragment shader that covers a specific inst combine and or xor code p…
247 …allthrough", "A fragment shader that covers a specific inst combine and or xor code p…
270 …-inst-combine-add-sub-ldexp.amber", "cov-inst-combine-add-sub-ldexp", "A …
[all …]

12345678910>>...25