Home
last modified time | relevance | path

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

/external/flatbuffers/src/
Dflatc_main.cpp22 static void Warn(const flatbuffers::FlatCompiler *flatc, in Warn()
29 static void Error(const flatbuffers::FlatCompiler *flatc, in Error()
41 Warn(static_cast<const flatbuffers::FlatCompiler *>(nullptr), warn, true); in LogCompilerWarn()
44 Error(static_cast<const flatbuffers::FlatCompiler *>(nullptr), err, false, in LogCompilerError()
55 const flatbuffers::FlatCompiler::Generator generators[] = { in main()
115 flatbuffers::FlatCompiler::InitParams params; in main()
121 flatbuffers::FlatCompiler flatc(params); in main()
Dflatc.cpp25 void FlatCompiler::ParseFile( in ParseFile()
41 void FlatCompiler::LoadBinarySchema(flatbuffers::Parser &parser, in LoadBinarySchema()
50 void FlatCompiler::Warn(const std::string &warn, bool show_exe_name) const { in Warn()
54 void FlatCompiler::Error(const std::string &err, bool usage, in Error()
59 std::string FlatCompiler::GetUsageString(const char *program_name) const { in GetUsageString()
182 int FlatCompiler::Compile(int argc, const char **argv) { in Compile()
/external/flatbuffers/include/flatbuffers/
Dflatc.h33 class FlatCompiler {
56 typedef void (*WarnFn)(const FlatCompiler *flatc, const std::string &warn,
59 typedef void (*ErrorFn)(const FlatCompiler *flatc, const std::string &err,
76 explicit FlatCompiler(const InitParams &params) : params_(params) {} in FlatCompiler() function