Home
last modified time | relevance | path

Searched refs:attrText (Results 1 – 1 of 1) sorted by relevance

/system/libvintf/
Dparse_xml.cpp136 static bool parse(const std::string &attrText, bool *attr) { in parse() argument
137 if (attrText == "true" || attrText == "1") { in parse()
141 if (attrText == "false" || attrText == "0") { in parse()
148 static bool parse(const std::string& attrText, std::optional<std::string>* attr) { in parse() argument
149 *attr = attrText; in parse()
296 std::string attrText; in parseOptionalAttr() local
297 bool success = getAttr(root, attrName, &attrText) && in parseOptionalAttr()
298 ::android::vintf::parse(attrText, attr); in parseOptionalAttr()
308 std::string attrText; in parseAttr() local
309 bool ret = getAttr(root, attrName, &attrText) && ::android::vintf::parse(attrText, attr); in parseAttr()
[all …]