Home | History | Annotate | Download | only in src

Lines Matching full:parser

43     /** The Java parser object. */
45 /** The wbxml parser. */
46 WbxmlParser * parser;
219 WbxmlParser * parser = NULL;
227 parser = new WbxmlParser(0);
228 if (!parser) {
237 parser->setContentHandler(handler);
238 context->parser = parser;
248 delete parser;
255 delete context->parser;
263 WbxmlParser * parser = context->parser;
266 parser->reset();
268 parser->setContentHandler(handler);
275 WbxmlParser * parser = context->parser;
291 if (parser->parse((char*)bytes, len, isEnd) != WBXML_STATUS_OK) {
292 LOGW("WbxmlParser parse error %d\n", parser->getError());