Home
last modified time | relevance | path

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

/external/google-java-format/core/src/main/java/com/google/googlejavaformat/java/javadoc/
DJavadocLexer.java515 private static final Pattern PRE_CLOSE_PATTERN = closeTagPattern("pre");
517 private static final Pattern CODE_CLOSE_PATTERN = closeTagPattern("code");
519 private static final Pattern TABLE_CLOSE_PATTERN = closeTagPattern("table");
521 private static final Pattern LIST_CLOSE_PATTERN = closeTagPattern("ul|ol|dl");
523 private static final Pattern LIST_ITEM_CLOSE_PATTERN = closeTagPattern("li|dt|dd");
525 private static final Pattern HEADER_CLOSE_PATTERN = closeTagPattern("h[1-6]");
527 private static final Pattern PARAGRAPH_CLOSE_PATTERN = closeTagPattern("p");
529 private static final Pattern BLOCKQUOTE_CLOSE_PATTERN = closeTagPattern("blockquote");
552 private static Pattern closeTagPattern(String namePattern) { in closeTagPattern() method in JavadocLexer