Home
last modified time | relevance | path

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

/external/flatbuffers/src/
Dflatc.cpp173 std::string conform_to_schema; in Compile() local
192 conform_to_schema = flatbuffers::PosixPath(argv[argi]); in Compile()
334 } else if (!any_generator && conform_to_schema.empty()) { in Compile()
339 if (!conform_to_schema.empty()) { in Compile()
341 if (!flatbuffers::LoadFile(conform_to_schema.c_str(), true, &contents)) in Compile()
342 Error("unable to load schema: " + conform_to_schema); in Compile()
344 if (flatbuffers::GetExtension(conform_to_schema) == in Compile()
346 LoadBinarySchema(conform_parser, conform_to_schema, contents); in Compile()
348 ParseFile(conform_parser, conform_to_schema, contents, in Compile()
414 if ((is_schema || is_binary_schema) && !conform_to_schema.empty()) { in Compile()