Lines Matching refs:_parser
207 $this->_parser = new bibtexparser_plugin_bibtex4dw();
208 $this->_parser->loadString($bibtex);
209 $stat = $this->_parser->parseBibliography();
213 //$this->_bibtex_references = $this->_parser->data;
214 $this->_bibtex_references = $this->_parser->entries;
235 $this->_parser = new bibtexparser_plugin_bibtex4dw();
236 $this->_parser->loadString($bibtex);
237 $this->_parser->sqlite = $this->sqlite;
238 $stat = $this->_parser->parseBibliography($sqlite=true);
244 if ( ($this->_parser->warnings['warning']) && (count($this->_parser->warnings['warning']))) {
245 foreach($this->_parser->warnings as $parserWarning) {
246 msg($this->_parser->warnings[$parserWarning]['warning'],'2');
264 $this->_parser = new bibtexparser_plugin_bibtex4dw();
265 $this->_parser->sqlite = $this->sqlite;
267 $this->_parser->loadString($rawBibtexEntry[0]['entry']);
268 $stat = $this->_parser->parse();
272 $ref = $this->_parser->data[0];
276 $this->_parser->loadString($rawBibtexEntry);
277 $stat = $this->_parser->parse();
281 $ref = $this->_parser->data[0];
356 $this->_parser = new bibtexparser_plugin_bibtex4dw();
357 $this->_parser->sqlite = $this->sqlite;
359 $this->_parser->loadString($rawBibtexEntry[0]['entry']);
360 $stat = $this->_parser->parse();
364 $citedKeys[$key] = $this->_parser->data[0]['authoryear'];
388 $this->_parser = new bibtexparser_plugin_bibtex4dw();
389 $this->_parser->sqlite = $this->sqlite;
391 $this->_parser->loadString($rawBibtexEntry[0]['entry']);
392 $stat = $this->_parser->parse();
396 $notcitedKeys[$key] = $this->_parser->data[0]['authoryear'];
478 $this->_parser = new bibtexparser_plugin_bibtex4dw();
483 $this->_parser->loadString($rawBibtexEntry[0]['entry']);
484 $stat = $this->_parser->parse();
488 $ref = $this->_parser->data[0];