Home
last modified time | relevance | path

Searched refs:pendingComment (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tools/aapt2/
DXmlDom.cpp36 std::u16string pendingComment; member
120 el->comment = std::move(stack->pendingComment); in startElementHandler()
129 stack->nodeStack.top()->comment = std::move(stack->pendingComment); in endElementHandler()
163 if (!stack->pendingComment.empty()) { in commentDataHandler()
164 stack->pendingComment += '\n'; in commentDataHandler()
166 stack->pendingComment += util::utf8ToUtf16(comment); in commentDataHandler()
/frameworks/base/tools/aapt/
DXMLNode.cpp1225 if (st->pendingComment.size() > 0) { in startElement()
1226 node->appendComment(st->pendingComment); in startElement()
1227 st->pendingComment = String16(); in startElement()
1280 if (st->pendingComment.size() > 0) { in endElement()
1281 node->appendComment(st->pendingComment); in endElement()
1282 st->pendingComment = String16(); in endElement()
1314 if (st->pendingComment.size() > 0) { in commentData()
1315 st->pendingComment.append(String16("\n")); in commentData()
1317 st->pendingComment.append(String16(comment)); in commentData()
DXMLNode.h153 String16 pendingComment; member