Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt/
DXMLNode.cpp1240 if (st->pendingComment.size() > 0) { in startElement()
1241 node->appendComment(st->pendingComment); in startElement()
1242 st->pendingComment = String16(); in startElement()
1295 if (st->pendingComment.size() > 0) { in endElement()
1296 node->appendComment(st->pendingComment); in endElement()
1297 st->pendingComment = String16(); in endElement()
1329 if (st->pendingComment.size() > 0) { in commentData()
1330 st->pendingComment.append(String16("\n")); in commentData()
1332 st->pendingComment.append(String16(comment)); in commentData()
DXMLNode.h157 String16 pendingComment; member