Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt2/java/
DJavaClassGenerator.cpp287 std::stringstream styleable_comment; in ProcessStyleable() local
289 styleable_comment << styleable.GetComment() << "\n"; in ProcessStyleable()
292 styleable_comment << "Attributes that can be used with a " << array_field_name << ".\n"; in ProcessStyleable()
295 styleable_comment << "<p>Includes the following attributes:</p>\n" in ProcessStyleable()
316 styleable_comment << "<tr><td><code>{@link #" << entry.field_name << " " in ProcessStyleable()
325 styleable_comment << "<td>" << AnnotationProcessor::ExtractFirstSentence(attr_comment_line) in ProcessStyleable()
328 styleable_comment << "</table>\n"; in ProcessStyleable()
332 styleable_comment << "@see #" << entry.field_name << "\n"; in ProcessStyleable()
335 array_def->GetCommentBuilder()->AppendComment(styleable_comment.str()); in ProcessStyleable()