Home | History | Annotate | Download | only in webkitmerge

Lines Matching full:commentstart

326     char* commentStart;
334 commentStart = m_text; // before anything else, turn embedded comments into their own lines
335 if (m_inComment == false && skipText(&commentStart, "//")) {
336 if (commentStart < lineStart + textLen)
337 commentStart[0] = '/';
339 commentStart[-1] = ' ';
340 commentStart -= 2;
341 commentStart[0] = '\0';
342 textLen = commentStart - lineStart;
345 if (m_inComment || skipText(&commentStart, "/*")) {
346 char* commentEnd = commentStart;
359 memcpy(commentStart - 2, "\0/*", 3);
360 textLen = commentStart - lineStart - 2;