Home
last modified time | relevance | path

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

/external/skqp/tools/bookmaker/
DincludeParser.h322 void writeEndTag(const char* tagType, const char* tagID, int spaces = 1) {
324 this->writeString(string("#") + tagType + " " + tagID);
330 void writeEndTag(const char* tagType, string tagID, int spaces = 1) {
331 this->writeEndTag(tagType, tagID.c_str(), spaces);
334 void writeIncompleteTag(const char* tagType, string tagID, int spaces = 1) {
335 this->writeString(string("#") + tagType + " " + tagID);
395 void writeTagNoLF(const char* tagType, const char* tagID) { in writeTagNoLF() argument
399 this->writeString(tagID); in writeTagNoLF()
402 void writeTagNoLF(const char* tagType, string tagID) { in writeTagNoLF() argument
403 this->writeTagNoLF(tagType, tagID.c_str()); in writeTagNoLF()
[all …]