HomeSort by relevance Sort by last modified time
    Searched refs:charTypes (Results 1 - 2 of 2) sorted by null

  /external/flatbuffers/tests/
JavaScriptUnionVectorTest.js 9 var charTypes = [
19 var charTypesOffset = Test.Movie.createCharactersTypeVector(fbb, charTypes);
38 assert.strictEqual(movie.charactersTypeLength(), charTypes.length);
41 for (var i = 0; i < charTypes.length; ++i) {
42 assert.strictEqual(movie.charactersType(i), charTypes[i]);
phpUnionVectorTest.php 53 $charTypes = [
63 $charTypesOffset = Movie::createCharactersTypeVector($fbb, $charTypes);
82 $assert->strictEqual($movie->getCharactersTypeLength(), count($charTypes));
85 for ($i = 0; $i < count($charTypes); ++$i) {
86 $assert->strictEqual($movie->getCharactersType($i), $charTypes[$i]);

Completed in 101 milliseconds