Home | History | Annotate | Download | only in javac_wrapper

Lines Matching refs:Regexp

33 	"regexp"
42 warningRe = regexp.MustCompile(filelinePrefix + `?(warning:) .*$`)
43 errorRe = regexp.MustCompile(filelinePrefix + `(.*?:) .*$`)
44 markerRe = regexp.MustCompile(`()\s*(\^)\s*$`)
153 func applyColor(line, color string, re *regexp.Regexp) (string, bool) {
165 re *regexp.Regexp
173 var filters = []*regexp.Regexp{
174 regexp.MustCompile(`Note: (Some input files|.*\.java) uses? or overrides? a deprecated API.`),
175 regexp.MustCompile(`Note: Recompile with -Xlint:deprecation for details.`),
176 regexp.MustCompile(`Note: (Some input files|.*\.java) uses? unchecked or unsafe operations.`),
177 regexp.MustCompile(`Note: Recompile with -Xlint:unchecked for details.`),
178 regexp.MustCompile(`bootstrap class path not set in conjunction with -source`),
180 regexp.MustCompile(`javadoc: warning - The old Doclet and Taglet APIs in the packages`),
181 regexp.MustCompile(`com.sun.javadoc, com.sun.tools.doclets and their implementations`),
182 regexp.MustCompile(`are planned to be removed in a future JDK release. These`),
183 regexp.MustCompile(`components have been superseded by the new APIs in jdk.javadoc.doclet.`),
184 regexp.MustCompile(`Users are strongly recommended to migrate to the new APIs.`),
186 regexp.MustCompile(`javadoc: option --boot-class-path not allowed with target 1.9`),