reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
27 if ((Comment.size() < MinCommentLength) || Comment[0] != '/') 27 if ((Comment.size() < MinCommentLength) || Comment[0] != '/') 31 if (Comment[1] == '/') { 32 if (Comment.size() < 3) 35 if (Comment[2] == '/') 37 else if (Comment[2] == '!') 42 assert(Comment.size() >= 4); 46 if (Comment[1] != '*' || 47 Comment[Comment.size() - 2] != '*' || 47 Comment[Comment.size() - 2] != '*' || 48 Comment[Comment.size() - 1] != '/') 48 Comment[Comment.size() - 1] != '/') 51 if (Comment[2] == '*') 53 else if (Comment[2] == '!') 58 const bool TrailingComment = (Comment.size() > 3) && (Comment[3] == '<'); 58 const bool TrailingComment = (Comment.size() > 3) && (Comment[3] == '<');