Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt/
DXMLNode.cpp1220 if (st->pendingComment.size() > 0) { in startElement()
1221 node->appendComment(st->pendingComment); in startElement()
1222 st->pendingComment = String16(); in startElement()
1271 if (st->pendingComment.size() > 0) { in endElement()
1272 node->appendComment(st->pendingComment); in endElement()
1273 st->pendingComment = String16(); in endElement()
1301 if (st->pendingComment.size() > 0) { in commentData()
1302 st->pendingComment.append(String16("\n")); in commentData()
1304 st->pendingComment.append(String16(comment)); in commentData()
DXMLNode.h153 String16 pendingComment; member