Home
last modified time | relevance | path

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

/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
DReplaceTextCommentScanner.java35 protected String processComment(Reporter reporter, Comment commentNode, String commentText) { in processComment() argument
36 String newCommentText = commentText.replace(oldText, newText); in processComment()
37 if (newCommentText.equals(commentText)) { in processComment()
DBaseModifyCommentScanner.java44 String commentText = document.get(comment.getStartPosition(), comment.getLength()); in process() local
45 String newCommentText = processComment(reporter, comment, commentText); in process()
61 String commentText); in processComment() argument
DReplaceSelectedJavadoc.java52 String commentText) { in processComment() argument
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/checker/
DCheckForBrokenJciteTag.java45 protected String processComment(Reporter reporter, Comment commentNode, String commentText) { in processComment() argument
47 && commentText.contains(TranslateJcite.ESCAPED_JCITE_TAG)) { in processComment()
54 commentNode, "Escaped JCITE tag found in public API docs:" + commentText); in processComment()
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
DFixupBidiClassDoc.java55 String commentText = document.get(javadoc.getStartPosition(), javadoc.getLength()); in process() local
56 String newCommentText = commentText.replace(BAD_TEXT, ""); in process()
DTranslateJcite.java66 protected String processComment(Reporter reporter, Comment commentNode, String commentText) { in processComment() argument
70 Matcher matcher = JCITE_TAG_PATTERN.matcher(commentText); in processComment()
/external/doclava/src/com/google/doclava/
DDocFile.java164 String commentText = filedata.substring(start); in writePage() local
166 Comment comment = new Comment(commentText, null, new SourcePositionInfo(docfile, lineno, 1)); in writePage()
171 hdf.setValue("commentText", commentText); in writePage()
DInfoBuilder.java556 String commentText, SourcePositionInfo position, ClassType classType) { in buildClassName() argument
597 cls.initialize(commentText, position, in buildClassName()