Home
last modified time | relevance | path

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

/system/tools/hidl/lint/lints/
DmethodDocComment.cpp87 const DocComment* docComment = method->getDocComment(); in methodDocComments() local
88 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 …]
DunhandledComments.cpp27 for (const DocComment* docComment : ast.getUnhandledComments()) { in unhandledComments() local
29 Lint(WARNING, docComment->location()) in unhandledComments()
/system/tools/hidl/
DDocComment.h65 void setDocComment(const DocComment* docComment) { mDocComment = docComment; } in setDocComment()
DAST.cpp946 void AST::addUnhandledComment(const DocComment* docComment) { in addUnhandledComment() argument
947 if (docComment != nullptr) mUnhandledComments.push_back(docComment); in addUnhandledComment()
DAST.h227 void addUnhandledComment(const DocComment* docComment);
Dhidl-gen_y.yy282 %type<docComment> doc_comment doc_comments ignore_doc_comments
338 android::DocComment* docComment;
/system/tools/hidl/hidl2aidl/
Dmain.cpp153 for (const DocComment* docComment : ast->getUnhandledComments()) { in parse() local
154 docComment->emit(AidlHelper::notes()); in parse()