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()
324 const char16_t* str16 = tree.getElementNamespace(&len); in Inflate() local
325 if (str16) { in Inflate()
326 el->namespace_uri = util::Utf16ToUtf8(StringPiece16(str16, len)); in Inflate()
329 str16 = tree.getElementName(&len); in Inflate()
330 if (str16) { in Inflate()
331 el->name = util::Utf16ToUtf8(StringPiece16(str16, len)); in Inflate()
350 const char16_t* str16 = tree.getText(&len); in Inflate() local
351 if (str16) { in Inflate()
352 text->text = util::Utf16ToUtf8(StringPiece16(str16, len)); in Inflate()