Lines Matching refs:str16
210 const char16_t* str16 = parser->getAttributeNamespace(i, &len); in copyAttributes() local
211 if (str16) { in copyAttributes()
212 attr.namespaceUri.assign(str16, len); in copyAttributes()
215 str16 = parser->getAttributeName(i, &len); in copyAttributes()
216 if (str16) { in copyAttributes()
217 attr.name.assign(str16, len); in copyAttributes()
220 str16 = parser->getAttributeStringValue(i, &len); in copyAttributes()
221 if (str16) { in copyAttributes()
222 attr.value.assign(str16, len); in copyAttributes()
251 const char16_t* str16 = tree.getNamespacePrefix(&len); in inflate() local
252 if (str16) { in inflate()
253 node->namespacePrefix.assign(str16, len); in inflate()
256 str16 = tree.getNamespaceUri(&len); in inflate()
257 if (str16) { in inflate()
258 node->namespaceUri.assign(str16, len); in inflate()
267 const char16_t* str16 = tree.getElementNamespace(&len); in inflate() local
268 if (str16) { in inflate()
269 node->namespaceUri.assign(str16, len); in inflate()
272 str16 = tree.getElementName(&len); in inflate()
273 if (str16) { in inflate()
274 node->name.assign(str16, len); in inflate()
286 const char16_t* str16 = tree.getText(&len); in inflate() local
287 if (str16) { in inflate()
288 node->text.assign(str16, len); in inflate()