OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FooEnum
(Results
1 - 3
of
3
) sorted by null
/external/flatbuffers/tests/namespace_test/NamespaceA/
TableInFirstNS.cs
21
public NamespaceA.NamespaceB.EnumInNestedNS
FooEnum
{ get { int o = __p.__offset(6); return o != 0 ? (NamespaceA.NamespaceB.EnumInNestedNS)__p.bb.GetSbyte(o + __p.bb_pos) : NamespaceA.NamespaceB.EnumInNestedNS.A; } }
27
public static void AddFooEnum(FlatBufferBuilder builder, NamespaceA.NamespaceB.EnumInNestedNS
fooEnum
) { builder.AddSbyte(1, (sbyte)
fooEnum
, 0); }
TableInFirstNS.go
42
func (rcv *TableInFirstNS)
FooEnum
() int8 {
73
func TableInFirstNSAddFooEnum(builder *flatbuffers.Builder,
fooEnum
int8) {
74
builder.PrependInt8Slot(1,
fooEnum
, 0)
TableInFirstNS.py
33
def
FooEnum
(self):
52
def TableInFirstNSAddFooEnum(builder,
fooEnum
): builder.PrependInt8Slot(1,
fooEnum
, 0)
Completed in 63 milliseconds