Home
last modified time | relevance | path

Searched refs:mainCharacterType (Results 1 – 5 of 5) sorted by relevance

/external/flatbuffers/tests/union_vector/
Dunion_vector_generated.js273 Movie.prototype.mainCharacterType = function() { method in Movie
356 Movie.addMainCharacterType = function(builder, mainCharacterType) { argument
357 builder.addFieldInt8(0, mainCharacterType, Character.NONE);
451 Movie.createMovie = function(builder, mainCharacterType, mainCharacterOffset, charactersTypeOffset,… argument
453 Movie.addMainCharacterType(builder, mainCharacterType);
Dunion_vector_generated.ts238 mainCharacterType():Character { method in Movie
321 static addMainCharacterType(builder:flatbuffers.Builder, mainCharacterType:Character) {
322 builder.addFieldInt8(0, mainCharacterType, Character.NONE);
408 static createMovie(builder:flatbuffers.Builder, mainCharacterType:Character, mainCharacterOffset:fl…
410 Movie.addMainCharacterType(builder, mainCharacterType);
DMovie.java16 public byte mainCharacterType() { int o = __offset(4); return o != 0 ? bb.get(o + bb_pos) : 0; } in mainCharacterType() method in Movie
41 …inCharacterType(FlatBufferBuilder builder, byte mainCharacterType) { builder.addByte(0, mainCharac… in addMainCharacterType() argument
DMovie.php128 public static function addMainCharacterType(FlatBufferBuilder $builder, $mainCharacterType) argument
130 $builder->addByteX(0, $mainCharacterType, 0);
DMovie.cs45 …terType(FlatBufferBuilder builder, Character mainCharacterType) { builder.AddByte(0, (byte)mainCha… in AddMainCharacterType()