Lines Matching refs:ns
45 string ns; member
52 string ns; member
67 string GetAttr(const string& ns, const string& name) const;
68 void FindElements(const string& ns, const string& name, vector<Element*>* result, bool recurse);
85 Element::GetAttr(const string& ns, const string& name) const in GetAttr() argument
90 if (attr.ns == ns && attr.name == name) { in GetAttr()
98 Element::FindElements(const string& ns, const string& name, vector<Element*>* result, bool recurse) in FindElements() argument
103 if (child->ns == ns && child->name == name) { in FindElements()
107 child->FindElements(ns, name, result, recurse); in FindElements()
200 element->ns = scope->namespaces[string(str, 0, colon)]; in inspect_apk()
225 attr.ns.assign(str, 0, colon); in inspect_apk()