Lines Matching refs:str16
208 const char16_t* str16 = parser->getAttributeNamespace(i, &len); in copyAttributes() local
209 if (str16) { in copyAttributes()
210 attr.namespaceUri.assign(str16, len); in copyAttributes()
213 str16 = parser->getAttributeName(i, &len); in copyAttributes()
214 if (str16) { in copyAttributes()
215 attr.name.assign(str16, len); in copyAttributes()
218 str16 = parser->getAttributeStringValue(i, &len); in copyAttributes()
219 if (str16) { in copyAttributes()
220 attr.value.assign(str16, len); in copyAttributes()
244 const char16_t* str16 = tree.getNamespacePrefix(&len); in inflate() local
245 if (str16) { in inflate()
246 node->namespacePrefix.assign(str16, len); in inflate()
249 str16 = tree.getNamespaceUri(&len); in inflate()
250 if (str16) { in inflate()
251 node->namespaceUri.assign(str16, len); in inflate()
260 const char16_t* str16 = tree.getElementNamespace(&len); in inflate() local
261 if (str16) { in inflate()
262 node->namespaceUri.assign(str16, len); in inflate()
265 str16 = tree.getElementName(&len); in inflate()
266 if (str16) { in inflate()
267 node->name.assign(str16, len); in inflate()
279 const char16_t* str16 = tree.getText(&len); in inflate() local
280 if (str16) { in inflate()
281 node->text.assign(str16, len); in inflate()