Home
last modified time | relevance | path

Searched refs:FlatCompiler (Results 1 – 3 of 3) sorted by relevance

/external/flatbuffers/src/
Dflatc_main.cpp21 static void Warn(const flatbuffers::FlatCompiler *flatc, in Warn()
28 static void Error(const flatbuffers::FlatCompiler *flatc, in Error()
39 const flatbuffers::FlatCompiler::Generator generators[] = { in main()
94 flatbuffers::FlatCompiler::InitParams params; in main()
100 flatbuffers::FlatCompiler flatc(params); in main()
Dflatc.cpp25 void FlatCompiler::ParseFile( in ParseFile()
39 void FlatCompiler::LoadBinarySchema(flatbuffers::Parser &parser, in LoadBinarySchema()
48 void FlatCompiler::Warn(const std::string &warn, bool show_exe_name) const { in Warn()
52 void FlatCompiler::Error(const std::string &err, bool usage, in Error()
57 std::string FlatCompiler::GetUsageString(const char *program_name) const { in GetUsageString()
154 int FlatCompiler::Compile(int argc, const char **argv) { in Compile()
/external/flatbuffers/include/flatbuffers/
Dflatc.h29 class FlatCompiler {
52 typedef void (*WarnFn)(const FlatCompiler *flatc, const std::string &warn,
55 typedef void (*ErrorFn)(const FlatCompiler *flatc, const std::string &err,
72 explicit FlatCompiler(const InitParams &params) : params_(params) {} in FlatCompiler() function