Home
last modified time | relevance | path

Searched refs:NestedStruct (Results 1 – 25 of 30) sorted by relevance

12

/aosp_15_r20/external/flatbuffers/tests/arrays_test/my_game/example/
H A Dnested_struct_generated.rs15 pub struct NestedStruct(pub [u8; 32]); struct
16 impl Default for NestedStruct { implementation
21 impl core::fmt::Debug for NestedStruct { implementation
32 impl flatbuffers::SimpleToVerifyInSlice for NestedStruct {} implementation
33 impl flatbuffers::SafeSliceAccess for NestedStruct {} implementation
34 impl<'a> flatbuffers::Follow<'a> for NestedStruct { implementation
35 type Inner = &'a NestedStruct;
38 <&'a NestedStruct>::follow(buf, loc) in follow()
41 impl<'a> flatbuffers::Follow<'a> for &'a NestedStruct { implementation
42 type Inner = &'a NestedStruct;
[all …]
H A Darray_struct_generated.rs88 d: &[NestedStruct; 2],
160 pub fn d(&'a self) -> flatbuffers::Array<'a, NestedStruct, 2> { in d() argument
164 pub fn set_d(&mut self, x: &[NestedStruct; 2]) { in set_d()
/aosp_15_r20/external/angle/third_party/flatbuffers/generated/tests/
H A Darrays_test_generated.h19 struct NestedStruct;
27 bool operator==(const NestedStruct &lhs, const NestedStruct &rhs);
28 bool operator!=(const NestedStruct &lhs, const NestedStruct &rhs);
71 FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(8) NestedStruct FLATBUFFERS_FINAL_CLASS
87 NestedStruct() : a_(), b_(0), c_(), padding0__(0), padding1__(0), d_() in NestedStruct() function
92 NestedStruct(MyGame::Example::TestEnum _b) in NestedStruct() function
103 NestedStruct(::flatbuffers::span<const int32_t, 2> _a, MyGame::Example::TestEnum _b, in NestedStruct() function
147 FLATBUFFERS_STRUCT_END(NestedStruct, 32);
149 inline bool operator==(const NestedStruct &lhs, const NestedStruct &rhs)
155 inline bool operator!=(const NestedStruct &lhs, const NestedStruct &rhs)
[all …]
/aosp_15_r20/external/flatbuffers/tests/
H A Darrays_test_generated.h19 struct NestedStruct;
27 bool operator==(const NestedStruct &lhs, const NestedStruct &rhs);
28 bool operator!=(const NestedStruct &lhs, const NestedStruct &rhs);
73 FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(8) NestedStruct FLATBUFFERS_FINAL_CLASS {
85 NestedStruct() in NestedStruct() function
95 NestedStruct(MyGame::Example::TestEnum _b) in NestedStruct() function
105NestedStruct(flatbuffers::span<const int32_t, 2> _a, MyGame::Example::TestEnum _b, flatbuffers::sp… in NestedStruct() function
140 FLATBUFFERS_STRUCT_END(NestedStruct, 32);
142 inline bool operator==(const NestedStruct &lhs, const NestedStruct &rhs) {
150 inline bool operator!=(const NestedStruct &lhs, const NestedStruct &rhs) {
[all …]
H A Darrays_test.fbs5 struct NestedStruct{
16 d:[NestedStruct:2];
H A Dpy_test.py48 import MyGame.Example.NestedStruct # refers to generated code
2640 nested = MyGame.Example.NestedStruct.NestedStruct()
/aosp_15_r20/external/flatbuffers/tests/MyGame/Example/
H A DNestedStruct.java11 public final class NestedStruct extends Struct { class
13 public NestedStruct __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } in __assign()
43 public NestedStruct get(int j) { return get(new NestedStruct(), j); } in get()
44 public NestedStruct get(NestedStruct obj, int j) { return obj.__assign(__element(j), bb); } in get()
H A DNestedStruct.cs12 public struct NestedStruct : IFlatbufferObject struct
17 public NestedStruct __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } in __assign()
28 …public static Offset<MyGame.Example.NestedStruct> CreateNestedStruct(FlatBufferBuilder builder, in… in CreateNestedStruct() argument
41 return new Offset<MyGame.Example.NestedStruct>(builder.Offset); in CreateNestedStruct()
57 …public static Offset<MyGame.Example.NestedStruct> Pack(FlatBufferBuilder builder, NestedStructT _o… in Pack() argument
58 if (_o == null) return default(Offset<MyGame.Example.NestedStruct>); in Pack()
H A DArrayStruct.java21 public MyGame.Example.NestedStruct d(int j) { return d(new MyGame.Example.NestedStruct(), j); } in d()
22 …public MyGame.Example.NestedStruct d(MyGame.Example.NestedStruct obj, int j) { return obj.__assign… in d()
H A DNestedStruct.py9 class NestedStruct(object): class
93 nestedStruct = NestedStruct()
H A DArrayStruct.cs25 …public MyGame.Example.NestedStruct D(int j) { return (new MyGame.Example.NestedStruct()).__assign(… in D()
H A DArrayStruct.py95 import MyGame.Example.NestedStruct
/aosp_15_r20/external/flatbuffers/tests/rust_usage_test/tests/
H A Darrays_test.rs22 let nested_struct1 = NestedStruct::new( in create_serialized_example_with_generated_code()
28 let nested_struct2 = NestedStruct::new( in create_serialized_example_with_generated_code()
121 assert_eq!(32, ::core::mem::size_of::<NestedStruct>()); in struct_netsted_struct_is_32_bytes()
302 const NESTED_STRUCT_SIZE: usize = size_of::<NestedStruct>();
305 struct NestedStructWrapper(NestedStruct);
309 let mut x = NestedStruct::default(); in arbitrary()
317 …let native_struct_array: [&NestedStruct; ARRAY_SIZE] = array_init::from_iter(xs.0.iter().map(|x| &… in prop_struct()
322 … let arr: flatbuffers::Array<NestedStruct, ARRAY_SIZE> = flatbuffers::Array::follow(&test_buf, 0); in prop_struct()
323 let got: [&NestedStruct; ARRAY_SIZE] = arr.into(); in prop_struct()
/aosp_15_r20/art/libartbase/base/
H A Dbit_struct_test.cc289 BITSTRUCT_DEFINE_START(NestedStruct, /* size= */ 2 * MixedSizeBitStruct::BitStructSizeOf())
298 BITSTRUCT_DEFINE_END(NestedStruct);
305 NestedStruct xyz{}; in TEST()
307 NestedStruct other{}; in TEST()
317 NestedStruct xyz{}; in TEST()
319 NestedStruct other{}; in TEST()
/aosp_15_r20/external/libchrome/mojo/public/interfaces/bindings/tests/
H A Dtest_data_view.mojom17 struct NestedStruct {
31 NestedStruct? f_struct;
38 array<NestedStruct> f_struct_array;
/aosp_15_r20/external/libchrome/mojo/public/cpp/bindings/tests/
H A Ddata_view_unittest.cc76 TEST_F(DataViewTest, NestedStruct) { in TEST_F() argument
78 obj->f_struct = NestedStruct::New(); in TEST_F()
216 NestedStructPtr nested_struct(NestedStruct::New()); in TEST_F()
H A Dhash_unittest.cc16 TEST_F(HashTest, NestedStruct) { in TEST_F() argument
H A Dwtf_hash_unittest.cc18 TEST_F(WTFHashTest, NestedStruct) { in TEST_F() argument
/aosp_15_r20/external/grpc-grpc/test/core/json/
H A Djson_object_loader_test.cc900 struct NestedStruct { in TEST() struct
904 static const auto* loader = JsonObjectLoader<NestedStruct>() in TEST()
905 .Field("inner", &NestedStruct::inner) in TEST()
911 NestedStruct outer; in TEST()
912 NestedStruct optional_outer; in TEST()
913 absl::optional<NestedStruct> absl_optional_outer; in TEST()
914 std::unique_ptr<NestedStruct> unique_ptr_outer; in TEST()
/aosp_15_r20/hardware/interfaces/tests/baz/1.0/
H A DIBaz.hal67 struct NestedStruct {
124 getNestedStructs() generates(vec<NestedStruct> data);
/aosp_15_r20/external/clang/docs/tools/
H A Ddump_format_style.py53 class NestedStruct: class
136 nested_struct = NestedStruct(name, comment)
/aosp_15_r20/external/flatbuffers/tests/FlatBuffers.Test/
H A DFlatBuffers.Core.Test.csproj103 <Compile Include="..\MyGame\Example\NestedStruct.cs">
104 <Link>MyGame\Example\NestedStruct.cs</Link>
/aosp_15_r20/external/sandboxed-api/sandboxed_api/tools/clang_generator/
H A Demitter_test.cc149 TEST_F(EmitterTest, NestedStruct) { in TEST_F() argument
/aosp_15_r20/hardware/interfaces/tests/baz/1.0/default/
H A DBaz.cpp398 hidl_vec<IBaz::NestedStruct> result; in getNestedStructs()
/aosp_15_r20/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
DHidlTestJava.java26 import android.hardware.tests.baz.V1_0.IBaz.NestedStruct;
1026 ArrayList<NestedStruct> structs = proxy.getNestedStructs(); in client()
1498 public ArrayList<NestedStruct> getNestedStructs() throws RemoteException { in getNestedStructs()

12