Lines Matching refs:Parser
32 int yyparse(Parser*);
119 Parser::Parser(const IoDelegate& io_delegate)
212 Parser::~Parser() {
220 bool Parser::ParseFile(const string& filename) {
245 if (yy::parser(this).parse() != 0 || error_ != 0) {
251 LOG(ERROR) << "Parser succeeded but yielded no document!";
255 void Parser::ReportError(const string& err, unsigned line) {
260 std::vector<std::string> Parser::Package() const {
267 void Parser::AddImport(AidlQualifiedName* name, unsigned line) {