Lines Matching refs:str16
230 const char16_t* str16 = parser->getAttributeNamespace(i, &len); in CopyAttributes() local
231 if (str16) { in CopyAttributes()
232 attr.namespace_uri = util::Utf16ToUtf8(StringPiece16(str16, len)); in CopyAttributes()
235 str16 = parser->getAttributeName(i, &len); in CopyAttributes()
236 if (str16) { in CopyAttributes()
237 attr.name = util::Utf16ToUtf8(StringPiece16(str16, len)); in CopyAttributes()
245 str16 = parser->getAttributeStringValue(i, &len); in CopyAttributes()
246 if (str16) { in CopyAttributes()
247 attr.value = util::Utf16ToUtf8(StringPiece16(str16, len)); in CopyAttributes()
295 const char16_t* str16 = tree.getNamespacePrefix(&len); in Inflate() local
296 if (str16) { in Inflate()
297 decl.prefix = util::Utf16ToUtf8(StringPiece16(str16, len)); in Inflate()
300 str16 = tree.getNamespaceUri(&len); in Inflate()
301 if (str16) { in Inflate()
302 decl.uri = util::Utf16ToUtf8(StringPiece16(str16, len)); in Inflate()
322 const char16_t* str16 = tree.getElementNamespace(&len); in Inflate() local
323 if (str16) { in Inflate()
324 el->namespace_uri = util::Utf16ToUtf8(StringPiece16(str16, len)); in Inflate()
327 str16 = tree.getElementName(&len); in Inflate()
328 if (str16) { in Inflate()
329 el->name = util::Utf16ToUtf8(StringPiece16(str16, len)); in Inflate()
348 const char16_t* str16 = tree.getText(&len); in Inflate() local
349 if (str16) { in Inflate()
350 text->text = util::Utf16ToUtf8(StringPiece16(str16, len)); in Inflate()