Lines Matching full:flatc
11 - Use the `flatc` FlatBuffer compiler.
261 [these instructions](@ref flatbuffers_guide_building) to build `flatc`, the
264 Once `flatc` is built successfully, compile the schema for your language:
271 Please be aware of the difference between `flatc` and `flatcc` tools.
278 ./../flatc --cpp monster.fbs
284 ./../flatc --java monster.fbs
290 ./../flatc --csharp monster.fbs
296 ./../flatc --go monster.fbs
302 ./../flatc --python monster.fbs
308 ./../flatc --js monster.fbs
314 ./../flatc --ts monster.fbs
320 ./../flatc --php monster.fbs
335 ./../flatc --dart monster.fbs
341 ./../flatc --lua monster.fbs
347 ./../flatc --lobster monster.fbs
353 ./../flatc --rust monster.fbs
357 For a more complete guide to using the `flatc` compiler, please read the
373 #include "monster_generated.h" // This was generated by `flatc`.
380 import MyGame.Sample.*; //The `flatc` generated files. (Monster, Vec3, etc.)
388 using MyGame.Sample; // The `flatc` generated files. (Monster, Vec3, etc.)
403 # Generated by `flatc`.
416 var MyGame = require('./monster_generated').MyGame; // Generated by `flatc`.
423 <script src="monster_generated.js"></script> // Generated by `flatc`.
440 // Contains the `*.php` files for the FlatBuffers library and the `flatc` generated files.
469 // Generated by `flatc`.
478 -- require the generated files from `flatc`.
1924 #include "monster_generate.h" // This was generated by `flatc`.
1931 import MyGame.Sample.*; //The `flatc` generated files. (Monster, Vec3, etc.)
1939 using MyGame.Sample; // The `flatc` generated files. (Monster, Vec3, etc.)
1954 # Generated by `flatc`.
1966 var MyGame = require('./monster_generated').MyGame; // Generated by `flatc`.
1973 <script src="monster_generated.js"></script> // Generated by `flatc`.
1992 // Contains the `*.php` files for the FlatBuffers library and the `flatc` generated files.
2025 -- require the generated files from `flatc`.
2794 To get non-const accessors, invoke `flatc` with `--gen-mutable`.
2900 #### Using `flatc` as a Conversion Tool
2925 You can run this file through the `flatc` compile with the `-b` flag and
2929 ./../flatc -b monster.fbs monsterdata.json
2941 *Note: If you're working in C, the `flatcc --json` (not `flatc`)
2943 printers that you can compile and use at runtime. The `flatc` compiler (not