/aosp_15_r20/external/flatbuffers/tests/arrays_test/my_game/example/ |
H A D | nested_struct_generated.rs | 15 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 D | array_struct_generated.rs | 88 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 D | arrays_test_generated.h | 19 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 D | arrays_test_generated.h | 19 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 105 …NestedStruct(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 D | arrays_test.fbs | 5 struct NestedStruct{ 16 d:[NestedStruct:2];
|
H A D | py_test.py | 48 import MyGame.Example.NestedStruct # refers to generated code 2640 nested = MyGame.Example.NestedStruct.NestedStruct()
|
/aosp_15_r20/external/flatbuffers/tests/MyGame/Example/ |
H A D | NestedStruct.java | 11 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 D | NestedStruct.cs | 12 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 D | ArrayStruct.java | 21 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 D | NestedStruct.py | 9 class NestedStruct(object): class 93 nestedStruct = NestedStruct()
|
H A D | ArrayStruct.cs | 25 …public MyGame.Example.NestedStruct D(int j) { return (new MyGame.Example.NestedStruct()).__assign(… in D()
|
H A D | ArrayStruct.py | 95 import MyGame.Example.NestedStruct
|
/aosp_15_r20/external/flatbuffers/tests/rust_usage_test/tests/ |
H A D | arrays_test.rs | 22 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 D | bit_struct_test.cc | 289 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 D | test_data_view.mojom | 17 struct NestedStruct { 31 NestedStruct? f_struct; 38 array<NestedStruct> f_struct_array;
|
/aosp_15_r20/external/libchrome/mojo/public/cpp/bindings/tests/ |
H A D | data_view_unittest.cc | 76 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 D | hash_unittest.cc | 16 TEST_F(HashTest, NestedStruct) { in TEST_F() argument
|
H A D | wtf_hash_unittest.cc | 18 TEST_F(WTFHashTest, NestedStruct) { in TEST_F() argument
|
/aosp_15_r20/external/grpc-grpc/test/core/json/ |
H A D | json_object_loader_test.cc | 900 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 D | IBaz.hal | 67 struct NestedStruct { 124 getNestedStructs() generates(vec<NestedStruct> data);
|
/aosp_15_r20/external/clang/docs/tools/ |
H A D | dump_format_style.py | 53 class NestedStruct: class 136 nested_struct = NestedStruct(name, comment)
|
/aosp_15_r20/external/flatbuffers/tests/FlatBuffers.Test/ |
H A D | FlatBuffers.Core.Test.csproj | 103 <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 D | emitter_test.cc | 149 TEST_F(EmitterTest, NestedStruct) { in TEST_F() argument
|
/aosp_15_r20/hardware/interfaces/tests/baz/1.0/default/ |
H A D | Baz.cpp | 398 hidl_vec<IBaz::NestedStruct> result; in getNestedStructs()
|
/aosp_15_r20/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/ |
D | HidlTestJava.java | 26 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()
|