Lines Matching refs:appl
129 xmlChar *appl = xmlGetProp(n1, (xmlChar*)"select"); in switchFind() local
130 hs.push_back(std::string((const char*)appl)); in switchFind()
131 xmlFree(appl); in switchFind()
149 xmlNodePtr HelpCompiler::clone(xmlNodePtr node, const std::string& appl) in clone() argument
170 if (appl == "DEFAULT") in clone()
179 xmlAddChild(parent, clone(cnl, appl)); in clone()
197 if (!strcmp((const char*)select, appl.c_str())) in clone()
206 xmlAddChild(parent, clone(cnl, appl)); in clone()
219 xmlAddChild(parent, clone(n, appl)); in clone()
434 std::string appl = *aI; in compile() local
435 std::string modulename = appl; in compile()
445 xmlNodePtr docResolved = clone(xmlDocGetRootElement(docResolvedOrg), appl); in compile()