Lines Matching refs:Comment

98 void Sema::checkFunctionDeclVerbatimLine(const BlockCommandComment *Comment) {  in checkFunctionDeclVerbatimLine()  argument
99 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); in checkFunctionDeclVerbatimLine()
104 switch (Comment->getCommandID()) { in checkFunctionDeclVerbatimLine()
125 Diag(Comment->getLocation(), diag::warn_doc_function_method_decl_mismatch) in checkFunctionDeclVerbatimLine()
126 << Comment->getCommandMarker() in checkFunctionDeclVerbatimLine()
128 << Comment->getSourceRange(); in checkFunctionDeclVerbatimLine()
131 void Sema::checkContainerDeclVerbatimLine(const BlockCommandComment *Comment) { in checkContainerDeclVerbatimLine() argument
132 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); in checkContainerDeclVerbatimLine()
136 switch (Comment->getCommandID()) { in checkContainerDeclVerbatimLine()
142 if (DiagSelect && Comment->getCommandMarker() && isObjCInterfaceDecl()) in checkContainerDeclVerbatimLine()
162 Diag(Comment->getLocation(), diag::warn_doc_api_container_decl_mismatch) in checkContainerDeclVerbatimLine()
163 << Comment->getCommandMarker() in checkContainerDeclVerbatimLine()
165 << Comment->getSourceRange(); in checkContainerDeclVerbatimLine()
168 void Sema::checkContainerDecl(const BlockCommandComment *Comment) { in checkContainerDecl() argument
169 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); in checkContainerDecl()
173 switch (Comment->getCommandID()) { in checkContainerDecl()
212 Diag(Comment->getLocation(), diag::warn_doc_container_decl_mismatch) in checkContainerDecl()
213 << Comment->getCommandMarker() in checkContainerDecl()
215 << Comment->getSourceRange(); in checkContainerDecl()
728 for (Comment::child_iterator I = FC->child_begin(), E = FC->child_end(); in resolveParamCommandIndexes()