Home
last modified time | relevance | path

Searched refs:anyAmbiguousType (Results 1 – 10 of 10) sorted by relevance

/external/flatbuffers/tests/
Dmonster_test_my_game.example_generated.dart746 …AnyAmbiguousAliasesTypeId get anyAmbiguousType => new AnyAmbiguousAliasesTypeId.fromValue(const fb…
748 switch (anyAmbiguousType?.value) {
759 …ces, anyUniqueType: $anyUniqueType, anyUnique: $anyUnique, anyAmbiguousType: $anyAmbiguousType, an…
958 int addAnyAmbiguousType(AnyAmbiguousAliasesTypeId anyAmbiguousType) {
959 fbBuilder.addUint8(45, anyAmbiguousType?.value);
1070 AnyAmbiguousAliasesTypeId anyAmbiguousType,
1118 _anyAmbiguousType = anyAmbiguousType,
Dmonster_test_generated.js1767 MyGame.Example.Monster.prototype.anyAmbiguousType = function() { method in MyGame.Example.Monster
2502 MyGame.Example.Monster.addAnyAmbiguousType = function(builder, anyAmbiguousType) { argument
2503 builder.addFieldInt8(45, anyAmbiguousType, MyGame.Example.AnyAmbiguousAliases.NONE);
2612 … vectorOfNonOwningReferencesOffset, anyUniqueType, anyUniqueOffset, anyAmbiguousType, anyAmbiguous… argument
2658 MyGame.Example.Monster.addAnyAmbiguousType(builder, anyAmbiguousType);
Dmonster_test_generated.ts1678 anyAmbiguousType():MyGame.Example.AnyAmbiguousAliases { method in MyGame.Example.Monster
2413 static addAnyAmbiguousType(builder:flatbuffers.Builder, anyAmbiguousType:MyGame.Example.AnyAmbiguou…
2414 builder.addFieldInt8(45, anyAmbiguousType, MyGame.Example.AnyAmbiguousAliases.NONE);
2472 …yGame.Example.AnyUniqueAliases, anyUniqueOffset:flatbuffers.Offset, anyAmbiguousType:MyGame.Exampl…
2518 Monster.addAnyAmbiguousType(builder, anyAmbiguousType);
/external/flatbuffers/dart/test/
Dmonster_test_my_game.example_generated.dart748 …AnyAmbiguousAliasesTypeId get anyAmbiguousType => new AnyAmbiguousAliasesTypeId.fromValue(const fb…
750 switch (anyAmbiguousType?.value) {
761 …ces, anyUniqueType: $anyUniqueType, anyUnique: $anyUnique, anyAmbiguousType: $anyAmbiguousType, an…
960 int addAnyAmbiguousType(AnyAmbiguousAliasesTypeId anyAmbiguousType) {
961 fbBuilder.addUint8(45, anyAmbiguousType?.value);
1072 AnyAmbiguousAliasesTypeId anyAmbiguousType,
1120 _anyAmbiguousType = anyAmbiguousType,
/external/flatbuffers/tests/MyGame/Example/
DMonster.java153 public byte anyAmbiguousType() { int o = __offset(94); return o != 0 ? bb.get(o + bb_pos) : 0; } in anyAmbiguousType() method in Monster
238 …nyAmbiguousType(FlatBufferBuilder builder, byte anyAmbiguousType) { builder.addByte(45, anyAmbiguo… in addAnyAmbiguousType() argument
DMonster.lua587 …unction Monster.AddAnyAmbiguousType(builder, anyAmbiguousType) builder:PrependUint8Slot(45, anyAmb…
DMonster.go906 func MonsterAddAnyAmbiguousType(builder *flatbuffers.Builder, anyAmbiguousType byte) {
907 builder.PrependByteSlot(45, anyAmbiguousType, 0)
DMonster.py681 def MonsterAddAnyAmbiguousType(builder, anyAmbiguousType): builder.PrependUint8Slot(45, anyAmbiguou… argument
DMonster.php1580 public static function addAnyAmbiguousType(FlatBufferBuilder $builder, $anyAmbiguousType) argument
1582 $builder->addByteX(45, $anyAmbiguousType, 0);
DMonster.cs281 …atBufferBuilder builder, AnyAmbiguousAliases anyAmbiguousType) { builder.AddByte(45, (byte)anyAmbi… in AddAnyAmbiguousType()