Home
last modified time | relevance | path

Searched refs:NestedStructWithTraitsImpl (Results 1 – 6 of 6) sorted by relevance

/external/libmojo/mojo/public/cpp/bindings/tests/
Dstruct_with_traits_impl.h20 struct NestedStructWithTraitsImpl { struct
22 NestedStructWithTraitsImpl();
23 explicit NestedStructWithTraitsImpl(int32_t in_value);
25 bool operator==(const NestedStructWithTraitsImpl& other) const {
64 const NestedStructWithTraitsImpl& get_struct() const { return struct_; } in get_struct()
65 NestedStructWithTraitsImpl& get_mutable_struct() { return struct_; } in get_mutable_struct()
67 const std::vector<NestedStructWithTraitsImpl>& get_struct_array() const { in get_struct_array()
70 std::vector<NestedStructWithTraitsImpl>& get_mutable_struct_array() { in get_mutable_struct_array()
74 const std::map<std::string, NestedStructWithTraitsImpl>& get_struct_map() in get_struct_map()
78 std::map<std::string, NestedStructWithTraitsImpl>& get_mutable_struct_map() { in get_mutable_struct_map()
[all …]
Dstruct_with_traits_impl_traits.h22 test::NestedStructWithTraitsImpl> {
23 static void* SetUpContext(const test::NestedStructWithTraitsImpl& input);
24 static void TearDownContext(const test::NestedStructWithTraitsImpl& input,
27 static int32_t value(const test::NestedStructWithTraitsImpl& input,
31 test::NestedStructWithTraitsImpl* output);
79 static const test::NestedStructWithTraitsImpl& f_struct(
84 static const std::vector<test::NestedStructWithTraitsImpl>& f_struct_array(
89 static const std::map<std::string, test::NestedStructWithTraitsImpl>&
Dstruct_with_traits_impl_traits.cc18 test::NestedStructWithTraitsImpl>::
19 SetUpContext(const test::NestedStructWithTraitsImpl& input) { in SetUpContext()
27 test::NestedStructWithTraitsImpl>::
28 TearDownContext(const test::NestedStructWithTraitsImpl& input, in TearDownContext()
37 test::NestedStructWithTraitsImpl>::
38 value(const test::NestedStructWithTraitsImpl& input, void* context) { in value()
46 test::NestedStructWithTraitsImpl>::
48 test::NestedStructWithTraitsImpl* output) { in Read()
Dstruct_with_traits_impl.cc10 NestedStructWithTraitsImpl::NestedStructWithTraitsImpl() {} in NestedStructWithTraitsImpl() function in mojo::test::NestedStructWithTraitsImpl
11 NestedStructWithTraitsImpl::NestedStructWithTraitsImpl(int32_t in_value) in NestedStructWithTraitsImpl() function in mojo::test::NestedStructWithTraitsImpl
Dstruct_traits_unittest.cc256 input.get_mutable_struct_map()["hello"] = NestedStructWithTraitsImpl(1024); in TEST_F()
257 input.get_mutable_struct_map()["world"] = NestedStructWithTraitsImpl(2048); in TEST_F()
350 input.get_mutable_struct_map()["hello"] = NestedStructWithTraitsImpl(1024); in TEST_F()
351 input.get_mutable_struct_map()["world"] = NestedStructWithTraitsImpl(2048); in TEST_F()
Dstruct_with_traits.typemap21 "mojo.test.NestedStructWithTraits=mojo::test::NestedStructWithTraitsImpl",