/external/flatbuffers/tests/ |
D | generate_code.sh | 18 ../flatc --cpp --java --csharp --dart --go --binary --lobster --lua --python --js --ts --php --rust… 19 ../flatc --cpp --java --csharp --dart --go --binary --lobster --lua --python --js --ts --php --rust… 20 ../flatc --cpp --java --js --ts --php --gen-mutable --reflect-names --gen-object-api --gen-compare … 21 ../flatc -b --schema --bfbs-comments --bfbs-builtins -I include_test monster_test.fbs 22 ../flatc --jsonschema --schema -I include_test monster_test.fbs 23 ../flatc --cpp --java --csharp --python --gen-mutable --reflect-names --gen-object-api --gen-compar… 25 ../flatc --cpp --lobster --gen-mutable --reflect-names --gen-object-api --gen-compare --cpp-ptr-typ… 26 ../flatc -b --schema --bfbs-comments --bfbs-builtins monster.fbs
|
D | generate_code.bat | 18 ..\%buildtype%\flatc.exe --cpp --java --csharp --go --binary --python --lobster --lua --js --rust -… 19 ..\%buildtype%\flatc.exe --cpp --java --csharp --go --binary --python --lobster --lua --js --rust -… 20 ..\%buildtype%\flatc.exe --cpp --java --js --ts --php --gen-mutable --reflect-names --gen-object-ap… 21 ..\%buildtype%\flatc.exe -b --schema --bfbs-comments --bfbs-builtins -I include_test monster_test.f… 22 ..\%buildtype%\flatc.exe --jsonschema --schema -I include_test monster_test.fbs || goto FAIL 26 …..\%buildtype%\flatc.exe --cpp --java --csharp --python --gen-mutable --reflect-names --gen-object… 32 ..\%buildtype%\flatc.exe --cpp --lobster --gen-mutable --reflect-names --gen-object-api --gen-compa… 33 ..\%buildtype%\flatc.exe -b --schema --bfbs-comments --bfbs-builtins monster.fbs || goto FAIL
|
D | TypeScriptTest.sh | 21 ../flatc --ts --no-fb-import --gen-mutable -o ts -I include_test monster_test.fbs 22 ../flatc -b -I include_test monster_test.fbs unicode_test.json 26 ../flatc --ts --js --no-fb-import -o ts union_vector/union_vector.fbs
|
/external/flatbuffers/android/jni/ |
D | include.mk | 63 $(wildcard $(FLATBUFFERS_FLATC_PATH)/*/flatc.exe) \ 64 $(wildcard $(FLATBUFFERS_FLATC_PATH)/flatc.exe)) 68 FLATBUFFERS_FLATC := $(FLATBUFFERS_FLATC_PATH)/flatc 73 $(wildcard $(FLATBUFFERS_FLATC_PATH)/*/flatc) \ 74 $(wildcard $(FLATBUFFERS_FLATC_PATH)/flatc)) 117 $(MAKE) flatc 123 xcodebuild -target flatc 128 $(error flatc binary not found!)
|
D | run_flatc.py | 31 flatc = '' 37 flatc = current 39 if not flatc: 42 command = [flatc] + sys.argv[2:]
|
/external/flatbuffers/src/ |
D | flatc_main.cpp | 21 static void Warn(const flatbuffers::FlatCompiler *flatc, in Warn() argument 23 (void)flatc; in Warn() 28 static void Error(const flatbuffers::FlatCompiler *flatc, in Error() argument 32 if (usage) { printf("%s", flatc->GetUsageString(g_program_name).c_str()); } in Error() 100 flatbuffers::FlatCompiler flatc(params); in main() local 101 return flatc.Compile(argc - 1, argv + 1); in main()
|
/external/flatbuffers/samples/ |
D | javascript_sample.sh | 32 if [ -e ../flatc ]; then 33 ../flatc --js monster.fbs 34 elif [ -e ../Debug/flatc ]; then 35 ../Debug/flatc --js monster.fbs
|
D | php_sample.sh | 32 if [ -e ../flatc ]; then 33 ../flatc --php monster.fbs 34 elif [ -e ../Debug/flatc ]; then 35 ../Debug/flatc --php monster.fbs
|
D | python_sample.sh | 32 if [ -e ../flatc ]; then 33 ../flatc --python monster.fbs 34 elif [ -e ../Debug/flatc ]; then 35 ../Debug/flatc --python monster.fbs
|
D | dart_sample.sh | 34 if [ -e ../../flatc ]; then 35 ../../flatc --dart ../../samples/monster.fbs 36 elif [ -e ../../Debug/flatc ]; then 37 ../../Debug/flatc --dart ../../samples/monster.fbs
|
D | csharp_sample.sh | 32 if [ -e ../flatc ]; then 33 ../flatc --csharp --gen-mutable monster.fbs 34 elif [ -e ../Debug/flatc ]; then 35 ../Debug/flatc --csharp --gen-mutable monster.fbs
|
D | java_sample.sh | 32 if [ -e ../flatc ]; then 33 ../flatc --java --gen-mutable monster.fbs 34 elif [ -e ../Debug/flatc ]; then 35 ../Debug/flatc --java --gen-mutable monster.fbs
|
D | go_sample.sh | 32 if [ -e ../flatc ]; then 33 ../flatc --go monster.fbs 34 elif [ -e ../Debug/flatc ]; then 35 ../Debug/flatc --go monster.fbs
|
/external/flatbuffers/ |
D | BUILD | 17 # Public flatc library to compile flatbuffer files at runtime. 52 # Public flatc compiler library. 57 "src/flatc.cpp", 64 "include/flatbuffers/flatc.h", 73 # Public flatc compiler. 75 name = "flatc",
|
D | build_defs.bzl | 4 flatc_path = "@com_github_google_flatbuffers//:flatc" 38 outs: Output files from flatc. 44 flatc_args: Optional, list of additional arguments to pass to flatc. 140 flatc_args: Optional list of additional arguments to pass to flatc 157 ** Because the genrule used to call flatc does not have any trivial way of 159 --gen-includes (the default) being defined for flatc, the --gen-includes 161 to the flatbuffer_cc_library defined alongside the flatc included Fileset.
|
D | CMakeLists.txt | 24 "Add '-fsanitize' flags to 'flattests' and 'flatc' targets." 90 src/flatc.cpp 266 add_executable(flatc ${FlatBuffers_Compiler_SRCS}) target 267 target_compile_options(flatc PRIVATE "${FLATBUFFERS_PRIVATE_CXX_FLAGS}") 269 add_fsanitize_to_target(flatc ${FLATBUFFERS_CODE_SANITIZE}) 272 set(FLATBUFFERS_FLATC_EXECUTABLE $<TARGET_FILE:flatc>) 275 # Make flatc.exe not depend on runtime dlls for easy distribution. 276 target_compile_options(flatc PUBLIC $<$<CONFIG:Release>:/MT>) 309 DEPENDS flatc) 319 DEPENDS flatc) [all …]
|
/external/flatbuffers/tests/docker/languages/ |
D | Dockerfile.testing.node.11_2_0 | 4 RUN cp flatc_debian_stretch flatc 7 RUN ../flatc -b -I include_test monster_test.fbs unicode_test.json
|
D | Dockerfile.testing.node.10_13_0 | 4 RUN cp flatc_debian_stretch flatc 7 RUN ../flatc -b -I include_test monster_test.fbs unicode_test.json
|
/external/flatbuffers/tests/docker/ |
D | Dockerfile.testing.build_flatc_debian_stretch | 8 RUN make flatc 9 RUN ls flatc
|
D | TODO.Dockerfile.testing.php.hhvm_2019_01_16 | 13 RUN cp flatc_debian_stretch flatc 17 RUN ../flatc --php -o php union_vector/union_vector.fbs
|
/external/flatbuffers/dart/ |
D | README.md | 5 Most consumers will want to use the [`flatc`](https://github.com/google/flatbuffers) 7 `monster_my_game.sample_generated.dart` was generated with `flatc` from
|
/external/tensorflow/tensorflow/lite/ |
D | build_def.bzl | 187 flatc = "@flatbuffers//:flatc" 197 (src, flatc, schema, out), 198 tools = [flatc], 210 flatc = "@flatbuffers//:flatc" 220 (src, flatc, schema, out), 221 tools = [flatc],
|
/external/flatbuffers/include/flatbuffers/ |
D | flatc.h | 52 typedef void (*WarnFn)(const FlatCompiler *flatc, const std::string &warn, 55 typedef void (*ErrorFn)(const FlatCompiler *flatc, const std::string &err,
|
/external/flatbuffers/docs/source/ |
D | RustUsage.md | 21 compiler (e.g. `flatc --rust mygame.fbs` or via helpers listed in "Useful 38 This test file requires `flatc` to be present. To review how to build the project, 56 schema with the `--rust` option to `flatc`. Then you can import both FlatBuffers 169 * [flatc-rust](https://github.com/frol/flatc-rust) - FlatBuffers compiler 170 (flatc) as API for transparent `.fbs` to `.rs` code-generation via Cargo
|
/external/libtextclassifier/ |
D | Android.bp | 133 tools: ["flatc"], 134 // "depfile" is used here in conjunction with flatc's -M to gather the deps 135 …cmd: "$(location flatc) --cpp --no-union-value-namespacing --gen-object-api --keep-prefix -I exter… 136 …"$(location flatc) --cpp --no-union-value-namespacing --gen-object-api --keep-prefix -I external/l…
|