OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TestSimpleTableWithEnum
(Results
1 - 9
of
9
) sorted by null
/external/flatbuffers/tests/MyGame/Example/
Any.py
8
TestSimpleTableWithEnum
= 2
Any.cs
12
TestSimpleTableWithEnum
= 2,
TestSimpleTableWithEnum.java
11
public final class
TestSimpleTableWithEnum
extends Table {
12
public static
TestSimpleTableWithEnum
getRootAsTestSimpleTableWithEnum(ByteBuffer _bb) { return getRootAsTestSimpleTableWithEnum(_bb, new
TestSimpleTableWithEnum
()); }
13
public static
TestSimpleTableWithEnum
getRootAsTestSimpleTableWithEnum(ByteBuffer _bb,
TestSimpleTableWithEnum
obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
15
public
TestSimpleTableWithEnum
__assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
23
TestSimpleTableWithEnum
.addColor(builder, color);
24
return
TestSimpleTableWithEnum
.endTestSimpleTableWithEnum(builder);
Any.java
9
public static final byte
TestSimpleTableWithEnum
= 2;
12
public static final String[] names = { "NONE", "Monster", "
TestSimpleTableWithEnum
", "MyGame_Example2_Monster", };
TestSimpleTableWithEnum.go
9
type
TestSimpleTableWithEnum
struct {
13
func GetRootAsTestSimpleTableWithEnum(buf []byte, offset flatbuffers.UOffsetT) *
TestSimpleTableWithEnum
{
15
x := &
TestSimpleTableWithEnum
{}
20
func (rcv *
TestSimpleTableWithEnum
) Init(buf []byte, i flatbuffers.UOffsetT) {
25
func (rcv *
TestSimpleTableWithEnum
) Table() flatbuffers.Table {
29
func (rcv *
TestSimpleTableWithEnum
) Color() int8 {
37
func (rcv *
TestSimpleTableWithEnum
) MutateColor(n int8) bool {
TestSimpleTableWithEnum.py
7
class
TestSimpleTableWithEnum
(object):
13
x =
TestSimpleTableWithEnum
()
17
#
TestSimpleTableWithEnum
21
#
TestSimpleTableWithEnum
TestSimpleTableWithEnum.cs
11
public partial struct
TestSimpleTableWithEnum
: IFlatbufferObject
15
public static
TestSimpleTableWithEnum
GetRootAsTestSimpleTableWithEnum(ByteBuffer _bb) { return GetRootAsTestSimpleTableWithEnum(_bb, new
TestSimpleTableWithEnum
()); }
16
public static
TestSimpleTableWithEnum
GetRootAsTestSimpleTableWithEnum(ByteBuffer _bb,
TestSimpleTableWithEnum
obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
18
public
TestSimpleTableWithEnum
__assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
23
public static Offset<
TestSimpleTableWithEnum
> CreateTestSimpleTableWithEnum(FlatBufferBuilder builder,
26
TestSimpleTableWithEnum
.AddColor(builder, color);
27
return
TestSimpleTableWithEnum
.EndTestSimpleTableWithEnum(builder);
32
public static Offset<
TestSimpleTableWithEnum
> EndTestSimpleTableWithEnum(FlatBufferBuilder builder)
[
all
...]
TestSimpleTableWithEnum.php
11
class
TestSimpleTableWithEnum
extends Table
15
* @return
TestSimpleTableWithEnum
19
$obj = new
TestSimpleTableWithEnum
();
41
* @return
TestSimpleTableWithEnum
70
* @return
TestSimpleTableWithEnum
/external/flatbuffers/tests/
monster_test_generated.js
42
TestSimpleTableWithEnum
: 2,
235
MyGame.Example.
TestSimpleTableWithEnum
= function() {
250
* @returns {MyGame.Example.
TestSimpleTableWithEnum
}
252
MyGame.Example.
TestSimpleTableWithEnum
.prototype.__init = function(i, bb) {
260
* @param {MyGame.Example.
TestSimpleTableWithEnum
=} obj
261
* @returns {MyGame.Example.
TestSimpleTableWithEnum
}
263
MyGame.Example.
TestSimpleTableWithEnum
.getRootAsTestSimpleTableWithEnum = function(bb, obj) {
264
return (obj || new MyGame.Example.
TestSimpleTableWithEnum
).__init(bb.readInt32(bb.position()) + bb.position(), bb);
270
MyGame.Example.
TestSimpleTableWithEnum
.prototype.color = function() {
279
MyGame.Example.
TestSimpleTableWithEnum
.prototype.mutate_color = function(value)
[
all
...]
Completed in 1924 milliseconds