HomeSort by relevance Sort by last modified time
    Searched refs:sax_handler (Results 1 - 2 of 2) 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/components/search_engines/
template_url_parser.cc 499 xmlSAXHandler sax_handler; local
500 memset(&sax_handler, 0, sizeof(sax_handler));
501 sax_handler.startElement = &TemplateURLParsingContext::StartElementImpl;
502 sax_handler.endElement = &TemplateURLParsingContext::EndElementImpl;
503 sax_handler.characters = &TemplateURLParsingContext::CharactersImpl;
504 int error = xmlSAXUserParseMemory(&sax_handler, &context, data,

Completed in 53 milliseconds