Home | History | Annotate | Download | only in clipboard

Lines Matching refs:markup

487 void Clipboard::ReadHTML(Clipboard::Buffer buffer, string16* markup,
491 markup->clear();
513 markup->assign(reinterpret_cast<const uint16_t*>(raw_data) + 1,
516 UTF8ToUTF16(reinterpret_cast<const char*>(raw_data), data_length, markup);
520 if (!markup->empty() && markup->at(markup->length() - 1) == '\0')
521 markup->resize(markup->length() - 1);
524 DCHECK(markup->length() <= kuint32max);
525 *fragment_end = static_cast<uint32>(markup->length());