/third_party/flatbuffers/tests/ |
D | generate_code.sh | 34 ../flatc --binary --cpp --java --kotlin --csharp --dart --go --lobster --lua --ts --php --grpc \ 36 ../flatc --rust $TEST_RUST_FLAGS -I include_test monster_test.fbs monsterdata_test.json 38 ../flatc --python $TEST_BASE_FLAGS -I include_test monster_test.fbs monsterdata_test.json 40 ../flatc --cpp --java --kotlin --csharp --dart --go --binary --lobster --lua --ts --php --python \ 45 ../flatc --rust --gen-all $TEST_RUST_FLAGS -o namespace_test namespace_test/namespace_test1.fbs nam… 47 ../flatc --cpp --java --kotlin --csharp --ts --php $TEST_BASE_FLAGS $TEST_CPP_FLAGS $TEST_CS_FLAGS … 48 ../flatc --ts --gen-name-strings --gen-mutable $TEST_BASE_FLAGS $TEST_TS_FLAGS -I include_test mons… 49 ../flatc $TEST_BASE_FLAGS $TEST_TS_FLAGS -b -I include_test monster_test.fbs unicode_test.json 50 ../flatc --ts --gen-name-strings $TEST_BASE_FLAGS $TEST_TS_FLAGS -o union_vector union_vector/union… 51 ../flatc --rust -I include_test -o include_test include_test/include_test1.fbs [all …]
|
D | generate_code.bat | 26 @rem --cpp-std is defined by flatc default settings. 37 ..\%buildtype%\flatc.exe --binary --cpp --java --kotlin --csharp --dart --go --lobster --lua --ts -… 39 ..\%buildtype%\flatc.exe --rust %TEST_RUST_FLAGS% -I include_test monster_test.fbs monsterdata_test… 41 ..\%buildtype%\flatc.exe --python %TEST_BASE_FLAGS% -I include_test monster_test.fbs monsterdata_te… 43 ..\%buildtype%\flatc.exe --binary --cpp --java --csharp --dart --go --lobster --lua --ts --php --py… 48 ..\%buildtype%\flatc.exe --rust --gen-all %TEST_RUST_FLAGS% -o namespace_test namespace_test/namesp… 50 ..\%buildtype%\flatc.exe --cpp --java --csharp --ts --php %TEST_BASE_FLAGS% %TEST_CPP_FLAGS% %TEST_… 51 ..\%buildtype%\flatc.exe --ts --gen-name-strings --gen-mutable %TEST_BASE_FLAGS% %TEST_TS_FLAGS% -I… 52 ..\%buildtype%\flatc.exe %TEST_BASE_FLAGS% %TEST_TS_FLAGS% -b -I include_test monster_test.fbs unic… 53 ..\%buildtype%\flatc.exe --ts --gen-name-strings %TEST_BASE_FLAGS% %TEST_TS_FLAGS% -o union_vector … [all …]
|
D | TypeScriptTest.sh | 23 if [ -x ../flatc ]; then 24 ../flatc --ts --gen-name-strings --gen-mutable --gen-object-api -I include_test monster_test.fbs 25 ../flatc --gen-object-api -b -I include_test monster_test.fbs unicode_test.json 26 …../flatc --ts --gen-name-strings --gen-mutable --gen-object-api -o union_vector union_vector/union…
|
D | TypeScriptTest.bat | 2 ../flatc.exe --ts --gen-name-strings --gen-mutable --gen-object-api -I include_test monster_test.fbs 3 ../flatc.exe --gen-object-api -b -I include_test monster_test.fbs unicode_test.json 4 ../flatc.exe --ts --gen-name-strings --gen-mutable --gen-object-api -o union_vector union_vector/un…
|
D | PythonTest.sh | 23 ${test_dir}/../flatc -p -o ${gen_code_path} -I include_test monster_test.fbs --gen-object-api 24 ${test_dir}/../flatc -p -o ${gen_code_path} -I include_test monster_extra.fbs --gen-object-api
|
/third_party/flatbuffers/src/ |
D | flatc_main.cpp | 22 static void Warn(const flatbuffers::FlatCompiler *flatc, in Warn() argument 24 (void)flatc; in Warn() 29 static void Error(const flatbuffers::FlatCompiler *flatc, in Error() argument 33 if (usage && flatc) { in Error() 34 printf("%s", flatc->GetUsageString(g_program_name).c_str()); in Error() 116 flatbuffers::FlatCompiler flatc(params); in main() local 117 return flatc.Compile(argc - 1, argv + 1); in main()
|
D | BUILD.bazel | 8 # Public flatc library to compile flatbuffer files at runtime. 24 # Public flatc compiler library. 28 "flatc.cpp", 40 # Public flatc compiler. 42 name = "flatc",
|
/third_party/flatbuffers/ |
D | BUILD.bazel | 13 # Public flatc library to compile flatbuffer files at runtime. 42 # Public flatc compiler library. 51 # Public flatc compiler. 53 name = "flatc", 55 "//src:flatc", 62 "include/flatbuffers/flatc.h",
|
D | CMakeLists.txt | 26 "Add '-fsanitize' flags to 'flattests' and 'flatc' targets." 42 "Enable precompile headers support for 'flatbuffers' and 'flatc'. \" 111 src/flatc.cpp 354 add_executable(flatc ${FlatBuffers_Compiler_SRCS}) target 356 add_pch_to_target(flatc include/flatbuffers/pch/flatc_pch.h) 358 target_compile_options(flatc PRIVATE "${FLATBUFFERS_PRIVATE_CXX_FLAGS}") 360 add_fsanitize_to_target(flatc ${FLATBUFFERS_CODE_SANITIZE}) 363 set(FLATBUFFERS_FLATC_EXECUTABLE $<TARGET_FILE:flatc>) 366 # Make flatc.exe not depend on runtime dlls for easy distribution. 367 target_compile_options(flatc PUBLIC $<$<CONFIG:Release>:/MT>) [all …]
|
/third_party/flatbuffers/samples/ |
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 | 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 | 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
|
D | kotlin_sample.sh | 32 if [ -e ../flatc ]; then 34 ../flatc --kotlin --gen-mutable monster.fbs 35 elif [ -e ../Debug/flatc ]; then 36 ../Debug/flatc --kotlin --gen-mutable monster.fbs
|
/third_party/mindspore/mindspore/lite/java/java/fl_client/ |
D | build.gradle | 76 FileTree msLibTree = fileTree(dir: msLib, include: ["flatbuffers_*/bin/flatc"]) 87 if (file('../../../build/_deps/flatbuffers-src/_build/flatc').exists()) { 88 String version = getFlatVersion('../../../build/_deps/flatbuffers-src/_build/flatc') 91 flatcPath = '../../../build/_deps/flatbuffers-src/_build/flatc' 93 println('the version of build flatc is not valid, will find the other flatc') 98 println("the needed flatc of version 2.0.0 is not exist, please check") 100 println("the used flatc path: " + flatcPath)
|
/third_party/mindspore/cmake/external_libs/ |
D | flatbuffers.cmake | 26 EXE flatc 34 EXE flatc 43 add_executable(mindspore::flatc ALIAS flatbuffers::flatc) 51 set(FLATC mindspore::flatc) 89 set(FLATC mindspore::flatc)
|
/third_party/flatbuffers/android/app/ |
D | build.gradle | 51 def commandLineArgs = ['flatc', '-o', outputCppDir, '--cpp'] 64 throw new GradleException("flatc command line failed") 77 def commandLineArgs = ['flatc', '-o', outputKotlinDir, '--kotlin'] 90 throw new GradleException("flatc command line failed")
|
/third_party/flatbuffers/tests/docker/ |
D | Dockerfile.testing.build_flatc_debian_stretch | 8 RUN make flatc 9 RUN ls flatc
|
/third_party/flatbuffers/dart/ |
D | publish.sh | 30 ../../flatc --dart ./monster.fbs 34 ../../flatc --dart ./monster_test.fbs
|
/third_party/flatbuffers/CMake/ |
D | BuildFlatBuffers.cmake | 21 # passed to flatc via the -I parameter. 63 set(FLATC_TARGET flatc) 64 set(FLATC flatc) 157 # other flagc flags using the FLAGS option to change the behavior of the flatc 171 # to flatc. 208 set(FLATC_TARGET flatc) 209 set(FLATC flatc) 298 # flatc compiler. 313 # to flatc. 350 set(FLATC_TARGET flatc) [all …]
|
/third_party/flatbuffers/grpc/examples/ |
D | generate.sh | 28 if [ -e ${main_dir}/flatc ]; then 30 elif [ -e ${main_dir}/Debug/flatc ]; then
|
/third_party/flatbuffers/tests/rust_usage_test/outdir/ |
D | build.rs | 21 let flatc = { in main() localVariable 29 Command::new(&flatc) in main()
|