Home
last modified time | relevance | path

Searched defs:ScalarStuffT (Results 1 – 7 of 7) sorted by relevance

/external/flatbuffers/tests/optional_scalars/
DScalarStuff.go9 type ScalarStuffT struct { struct
10 JustI8 int8 `json:"just_i8"`
11 MaybeI8 *int8 `json:"maybe_i8"`
12 DefaultI8 int8 `json:"default_i8"`
13 JustU8 byte `json:"just_u8"`
14 MaybeU8 *byte `json:"maybe_u8"`
15 DefaultU8 byte `json:"default_u8"`
16 JustI16 int16 `json:"just_i16"`
17 MaybeI16 *int16 `json:"maybe_i16"`
18 DefaultI16 int16 `json:"default_i16"`
[all …]
DScalarStuff.cs266 public class ScalarStuffT class
305 public ScalarStuffT() { in ScalarStuffT() method in optional_scalars.ScalarStuffT
DScalarStuff.py398 class ScalarStuffT(object): class
/external/flatbuffers/tests/cpp17/generated_cpp17/
Doptional_scalars_generated.h57 struct ScalarStuffT : public flatbuffers::NativeTable { struct
58 typedef ScalarStuff TableType;
59 int8_t just_i8 = 0;
60 flatbuffers::Optional<int8_t> maybe_i8 = flatbuffers::nullopt;
61 int8_t default_i8 = 42;
62 uint8_t just_u8 = 0;
63 flatbuffers::Optional<uint8_t> maybe_u8 = flatbuffers::nullopt;
64 uint8_t default_u8 = 42;
65 int16_t just_i16 = 0;
66 flatbuffers::Optional<int16_t> maybe_i16 = flatbuffers::nullopt;
[all …]
Doptional_scalars2_generated.h50 struct ScalarStuffT : public flatbuffers::NativeTable { struct
51 typedef ScalarStuff TableType;
52 int8_t just_i8 = 0;
53 flatbuffers::Optional<int8_t> maybe_i8 = flatbuffers::nullopt;
54 int8_t default_i8 = 42;
55 uint8_t just_u8 = 0;
56 flatbuffers::Optional<uint8_t> maybe_u8 = flatbuffers::nullopt;
57 uint8_t default_u8 = 42;
58 int16_t just_i16 = 0;
59 flatbuffers::Optional<int16_t> maybe_i16 = flatbuffers::nullopt;
[all …]
/external/flatbuffers/tests/
Doptional_scalars_generated.h60 struct ScalarStuffT : public flatbuffers::NativeTable { struct
61 typedef ScalarStuff TableType;
62 int8_t just_i8 = 0;
63 flatbuffers::Optional<int8_t> maybe_i8 = flatbuffers::nullopt;
64 int8_t default_i8 = 42;
65 uint8_t just_u8 = 0;
66 flatbuffers::Optional<uint8_t> maybe_u8 = flatbuffers::nullopt;
67 uint8_t default_u8 = 42;
68 int16_t just_i16 = 0;
69 flatbuffers::Optional<int16_t> maybe_i16 = flatbuffers::nullopt;
[all …]
/external/flatbuffers/tests/optional_scalars/optional_scalars/
Dscalar_stuff_generated.rs118 pub fn unpack(&self) -> ScalarStuffT { in unpack()
678 pub struct ScalarStuffT { struct
679 pub just_i8: i8,
680 pub maybe_i8: Option<i8>,
681 pub default_i8: i8,
682 pub just_u8: u8,
683 pub maybe_u8: Option<u8>,
684 pub default_u8: u8,
685 pub just_i16: i16,
686 pub maybe_i16: Option<i16>,
[all …]