Lines Matching full:flatc
28 "--flatc",
51 # Get the location of the flatc executable, reading from the first command line
54 ("flatc" if not platform.system() == "Windows" else "flatc.exe")
55 if not args.flatc
56 else args.flatc
59 # Find and assert flatc compiler is present.
63 assert flatc_path.exists(), "Cannot find the flatc compiler " + str(flatc_path)
71 # Execute the flatc compiler with the specified parameters
72 def flatc(options, schema, prefix=None, include=None, data=None, cwd=tests_path): function
88 flatc(
113 # flatc options that are shared
164 flatc(
183 flatc(
189 flatc(
196 flatc(
204 flatc(
212 flatc(
219 flatc(
228 flatc(
237 flatc(
243 flatc(
250 flatc(
257 flatc(
264 flatc(
270 flatc(
277 flatc(
284 flatc(
303 flatc(
317 flatc(
323 flatc(
330 flatc(
336 flatc(
341 flatc(
346 flatc(
352 flatc(
360 flatc(["--java", "--kotlin", "--lobster", "--ts"], schema=optional_scalars_schema)
362 flatc(["--csharp", "--python", "--gen-object-api"], schema=optional_scalars_schema)
364 flatc(RUST_OPTS, prefix="optional_scalars", schema=optional_scalars_schema)
366 flatc(NO_INCL_OPTS + CPP_OPTS, schema=optional_scalars_schema)
371 flatc(["--csharp", "--gen-object-api"], schema=type_field_collsion_schema)
374 flatc(RUST_OPTS, prefix="more_defaults", schema="more_defaults.fbs")
377 flatc(
384 flatc(BASE_OPTS + CS_OPTS, schema="keyword_test.fbs")
385 flatc(RUST_OPTS, prefix="keyword_test", schema="keyword_test.fbs")
386 flatc(
391 flatc(BASE_OPTS + DART_OPTS, prefix="../dart/test/", schema="keyword_test.fbs")
395 flatc(["--java", "--kotlin"], schema=dictionary_lookup_schema)
399 flatc(
405 flatc(
410 flatc(SWIFT_OPTS, schema="optional_scalars.fbs", prefix=swift_prefix)
411 flatc(SWIFT_OPTS, schema="vector_has_test.fbs", prefix=swift_prefix)
412 flatc(
417 flatc(
423 flatc(
429 flatc(
436 flatc(
442 flatc(
448 flatc(
457 flatc(
463 flatc(
468 flatc(
477 flatc(RUST_OPTS + ["--no-leak-private-annotation", "--gen-object-api"], prefix="private_annotation_…
481 flatc(BASE_OPTS + CPP_OPTS + LOBSTER_OPTS, schema=samples_schema, cwd=samples_path)
482 flatc(RUST_OPTS, prefix="rust_generated", schema=samples_schema, cwd=samples_path)
483 flatc(
492 # building flatc which uses the reflection_generated.h itself.