Lines Matching refs:regexp
43 warningRe = regexp.MustCompile(filelinePrefix + `?(warning:) .*$`)
44 errorRe = regexp.MustCompile(filelinePrefix + `(.*?:) .*$`)
45 markerRe = regexp.MustCompile(`()\s*(\^)\s*$`)
179 func applyColor(line, color string, re *regexp.Regexp) (string, bool) {
191 re *regexp.Regexp
199 var warningCount = regexp.MustCompile(`^([0-9]+) warning(s)?$`)
201 var warningFilters = []*regexp.Regexp{
202 regexp.MustCompile(`bootstrap class path not set in conjunction with -source`),
205 var filters = []*regexp.Regexp{
206 regexp.MustCompile(`Note: (Some input files|.*\.java) uses? or overrides? a deprecated API.`),
207 regexp.MustCompile(`Note: Recompile with -Xlint:deprecation for details.`),
208 regexp.MustCompile(`Note: (Some input files|.*\.java) uses? unchecked or unsafe operations.`),
209 regexp.MustCompile(`Note: Recompile with -Xlint:unchecked for details.`),
211 regexp.MustCompile(`javadoc: warning - The old Doclet and Taglet APIs in the packages`),
212 regexp.MustCompile(`com.sun.javadoc, com.sun.tools.doclets and their implementations`),
213 regexp.MustCompile(`are planned to be removed in a future JDK release. These`),
214 regexp.MustCompile(`components have been superseded by the new APIs in jdk.javadoc.doclet.`),
215 regexp.MustCompile(`Users are strongly recommended to migrate to the new APIs.`),
217 regexp.MustCompile(`javadoc: option --boot-class-path not allowed with target 1.9`),