HomeSort by relevance Sort by last modified time
    Searched refs:sax_handler (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/browser/profile_resetter/
brandcode_config_fetcher.cc 85 xmlSAXHandler sax_handler = {}; local
86 sax_handler.startElement = &XmlConfigParser::StartElementImpl;
87 sax_handler.endElement = &XmlConfigParser::EndElementImpl;
88 sax_handler.characters = &XmlConfigParser::CharactersImpl;
90 int error = xmlSAXUserParseMemory(&sax_handler,
  /external/chromium_org/chrome/browser/search_engines/
template_url_parser.cc 486 xmlSAXHandler sax_handler; local
487 memset(&sax_handler, 0, sizeof(sax_handler));
488 sax_handler.startElement = &TemplateURLParsingContext::StartElementImpl;
489 sax_handler.endElement = &TemplateURLParsingContext::EndElementImpl;
490 sax_handler.characters = &TemplateURLParsingContext::CharactersImpl;
491 int error = xmlSAXUserParseMemory(&sax_handler, &context, data,
  /external/chromium/chrome/browser/search_engines/
template_url_parser.cc 562 xmlSAXHandler sax_handler; local
563 memset(&sax_handler, 0, sizeof(sax_handler));
564 sax_handler.startElement = &StartElementImpl;
565 sax_handler.endElement = &EndElementImpl;
566 sax_handler.characters = &CharactersImpl;
567 xmlSAXUserParseMemory(&sax_handler, &context,

Completed in 30 milliseconds