Searched refs:docComment (Results 1 – 7 of 7) sorted by relevance
87 const DocComment* docComment = method->getDocComment(); in methodDocComments() local88 if (docComment == nullptr) continue; in methodDocComments()96 for (const std::string& line : docComment->lines()) { in methodDocComments()102 errors->push_back(Lint(WARNING, docComment->location()) in methodDocComments()109 errors->push_back(Lint(WARNING, docComment->location()) in methodDocComments()117 Lint(WARNING, docComment->location()) in methodDocComments()131 errors->push_back(Lint(WARNING, docComment->location()) in methodDocComments()137 errors->push_back(Lint(WARNING, docComment->location()) in methodDocComments()144 errors->push_back(Lint(WARNING, docComment->location()) in methodDocComments()151 Lint(WARNING, docComment->location()) in methodDocComments()[all …]
27 for (const DocComment* docComment : ast.getUnhandledComments()) { in unhandledComments() local29 Lint(WARNING, docComment->location()) in unhandledComments()
65 void setDocComment(const DocComment* docComment) { mDocComment = docComment; } in setDocComment()
946 void AST::addUnhandledComment(const DocComment* docComment) { in addUnhandledComment() argument947 if (docComment != nullptr) mUnhandledComments.push_back(docComment); in addUnhandledComment()
227 void addUnhandledComment(const DocComment* docComment);
282 %type<docComment> doc_comment doc_comments ignore_doc_comments338 android::DocComment* docComment;
153 for (const DocComment* docComment : ast->getUnhandledComments()) { in parse() local154 docComment->emit(AidlHelper::notes()); in parse()