Home
last modified time | relevance | path

Searched refs:set_a (Results 1 - 21 of 21) sorted by relevance

/third_party/protobuf/src/google/protobuf/util/
H A Dmessage_differencer_unittest.cc200 msg1.set_a(401); in TEST()
201 msg2.set_a(401); in TEST()
379 msg1.set_a(401); in TEST()
380 msg2.set_a(401); in TEST()
1091 msg1.add_rm()->set_a(1); in TEST()
1092 msg1.add_rm()->set_a(2); in TEST()
1093 msg1.add_rm()->set_a(3); in TEST()
1094 msg1.add_rm()->set_a(4); in TEST()
1095 msg1.add_rm()->set_a(5); in TEST()
1096 msg2.add_rm()->set_a( in TEST()
[all...]
H A Dfield_mask_util_test.cc689 required_msg_1.set_a(1234); in TEST()
708 required_msg_2.mutable_optional_message()->set_a(1234); in TEST()
711 required_msg_2.mutable_required_message()->set_a(1234); in TEST()
716 repeated_msg->set_a(1234); in TEST()
/third_party/skia/third_party/externals/harfbuzz/test/fuzzing/
H A Dhb-set-fuzzer.cc62 hb_set_t *set_a = create_set (values, instructions.first_set_size); in LLVMFuzzerTestOneInput()
71 hb_set_intersect (set_a, set_b); in LLVMFuzzerTestOneInput()
74 hb_set_union (set_a, set_b); in LLVMFuzzerTestOneInput()
77 hb_set_subtract (set_a, set_b); in LLVMFuzzerTestOneInput()
80 hb_set_symmetric_difference (set_a, set_b); in LLVMFuzzerTestOneInput()
86 hb_set_destroy (set_a); in LLVMFuzzerTestOneInput()
/third_party/ltp/lib/newlib_tests/
H A Dtst_bool_expr.c56 static void do_eval_test(const char *expr_str, int set_a, int set_b, int set_c, int exp_res) in do_eval_test() argument
61 a = set_a; in do_eval_test()
/third_party/mesa3d/src/amd/compiler/
H A Daco_lower_to_cssa.cpp280 /* tries to merge set_b into set_a of given temporary and
287 merge_set& set_a = ctx.merge_sets[index]; in try_merge_merge_set() local
293 while (i_a < set_a.size() || i_b < set_b.size()) { in try_merge_merge_set()
295 if (i_a == set_a.size()) in try_merge_merge_set()
298 current = set_a[i_a++]; in try_merge_merge_set()
300 else if (defined_after(ctx, set_a[i_a], set_b[i_b])) in try_merge_merge_set()
303 current = set_a[i_a++]; in try_merge_merge_set()
/third_party/protobuf/src/google/protobuf/
H A Dreflection_ops_unittest.cc345 message.set_a(1); in TEST()
374 message.mutable_optional_message()->set_a(1); in TEST()
388 sub_message->set_a(1); in TEST()
412 message.MutableExtension(unittest::TestRequired::single)->set_a(1); in TEST()
426 message.MutableExtension(unittest::TestRequired::multi, 0)->set_a(1); in TEST()
H A Dtest_util_lite.cc62 message->mutable_optionalgroup()->set_a(117); in SetAllFields()
92 message->add_repeatedgroup()->set_a(217); in SetAllFields()
120 message->add_repeatedgroup()->set_a(317); in SetAllFields()
179 message->mutable_repeatedgroup(1)->set_a(517); in ModifyRepeatedFields()
826 message->MutableExtension(unittest::optionalgroup_extension_lite)->set_a(117); in SetAllExtensions()
866 message->AddExtension(unittest::repeatedgroup_extension_lite)->set_a(217); in SetAllExtensions()
901 message->AddExtension(unittest::repeatedgroup_extension_lite)->set_a(317); in SetAllExtensions()
974 ->set_a(517); in ModifyRepeatedExtensions()
H A Dextension_set_unittest.cc601 source.mutable_optionalgroup()->set_a(117); in TEST()
704 message.MutableExtension(unittest::TestRequired::single)->set_a(1); in TEST()
714 message.MutableExtension(unittest::TestRequired::multi, 0)->set_a(1); in TEST()
H A Dno_field_presence_test.cc488 message.mutable_proto2()->set_a(1); in TEST()
H A Dmap_test.cc2353 with_dummy4.set_a(0); in TEST()
2360 with_dummy5.set_a(0); in TEST()
2504 (*map_message.mutable_map_field())[0].set_a(0); in TEST()
2514 with_dummy4.set_a(97); in TEST()
3027 (*map_message.mutable_map_field())[0].set_a(0); in TEST()
H A Dlite_unittest.cc826 (*map_message.mutable_map_field())[0].set_a(0); in TEST()
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dprivate_fields.rs165 fn set_a(&mut self, val: ::std::os::raw::c_uint) { in set_a() functions
231 pub fn set_a(&mut self, val: ::std::os::raw::c_uint) { in set_a() functions
297 fn set_a(&mut self, val: ::std::os::raw::c_uint) { in set_a() functions
H A Donly_bitfields.rs121 pub fn set_a(&mut self, val: bool) { in set_a() functions
H A Dderive-partialeq-bitfield.rs153 pub fn set_a(&mut self, val: bool) { in set_a() functions
H A Dstruct_with_bitfields.rs137 pub fn set_a(&mut self, val: ::std::os::raw::c_ushort) { in set_a() functions
H A Dbitfield_pragma_packed.rs121 pub fn set_a(&mut self, val: ::std::os::raw::c_uchar) { in set_a() functions
H A Dtimex.rs186 pub fn set_a(&mut self, val: ::std::os::raw::c_int) { in set_a() functions
/third_party/protobuf/conformance/
H A Dtext_format_conformance_suite.cc284 message.mutable_optionalgroup()->set_a(321); in RunSuiteImpl()
H A Dbinary_json_conformance_suite.cc1255 message.mutable_oneof_nested_message()->set_a(0); in TestOneofMessage()
1260 message.mutable_oneof_nested_message()->set_a(1); in TestOneofMessage()
/third_party/googletest/googletest/test/
H A Dgtest_unittest.cc2394 std::set<int> set_a = {2, 1, 3, 4, 5}; in TEST() local
2398 EXPECT_PRED2(compare_sets, set_a, set_b), in TEST()
2399 "compare_sets(set_a, set_b) evaluates to false, where\nset_a evaluates " in TEST()
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs34347 let mut set_a = BTreeSet::new(); check() variables
[all...]

Completed in 82 milliseconds