コード例 #1
0
ファイル: MarkupAccumulator.cpp プロジェクト: sohocoke/webkit
void MarkupAccumulator::appendText(StringBuilder& out, Text* text)
{
    appendNodeValue(out, text, m_range, entityMaskForText(text));
}
コード例 #2
0
void MarkupAccumulator::appendText(StringBuilder& result, const Text& text)
{
    appendNodeValue(result, text, m_range, entityMaskForText(text));
}