Home | History | Annotate | Download | only in search_engines

Lines Matching refs:atts

141                                const xmlChar** atts);
157 void ParseURL(const xmlChar** atts);
158 void ParseImage(const xmlChar** atts);
159 void ParseParam(const xmlChar** atts);
216 const xmlChar** atts) {
231 context->ParseURL(atts);
234 context->ParseImage(atts);
237 context->ParseParam(atts);
340 void TemplateURLParsingContext::ParseURL(const xmlChar** atts) {
341 if (!atts)
348 for (; *atts; atts += 2) {
349 std::string name(XMLCharToString(*atts));
350 const xmlChar* value = atts[1];
375 void TemplateURLParsingContext::ParseImage(const xmlChar** atts) {
376 if (!atts)
382 for (; *atts; atts += 2) {
383 std::string name(XMLCharToString(*atts));
384 const xmlChar* value = atts[1];
399 void TemplateURLParsingContext::ParseParam(const xmlChar** atts) {
400 if (!atts)
404 for (; *atts; atts += 2) {
405 std::string name(XMLCharToString(*atts));
406 const xmlChar* val = atts[1];