Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt/
DXMLNode.cpp1135 if (st->pendingComment.size() > 0) { in startElement()
1136 node->appendComment(st->pendingComment); in startElement()
1137 st->pendingComment = String16(); in startElement()
1186 if (st->pendingComment.size() > 0) { in endElement()
1187 node->appendComment(st->pendingComment); in endElement()
1188 st->pendingComment = String16(); in endElement()
1216 if (st->pendingComment.size() > 0) { in commentData()
1217 st->pendingComment.append(String16("\n")); in commentData()
1219 st->pendingComment.append(String16(comment)); in commentData()
DXMLNode.h149 String16 pendingComment; member