Searched refs:matches (Results 126 - 150 of 216) sorted by relevance

123456789

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DRecognizedOptions.java388 if (xd.matches(diagsOption))
409 public boolean matches(String arg) {
554 public boolean matches(String s) {
585 * TODO: With apt, the matches method accepts anything if
595 public boolean matches(String s) {
/openjdk7/jdk/src/share/classes/sun/tools/jstack/
H A DJStack.java90 if (!args[optionCount].matches("[0-9]+")) {
/openjdk7/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DCustom.java87 if (t != null && t.getName().matches("pool-[0-9]+-thread-[0-9]+"))
/openjdk7/jdk/test/java/util/logging/
H A DSimpleFormatterFormat.java109 if (!m.matches()) {
/openjdk7/langtools/test/tools/javac/diags/
H A DExample.java101 if (keyMatch.matches()) {
107 if (optMatch.matches()) {
113 if (runMatch.matches()) {
117 if (javaPat.matcher(line).matches())
H A DRunExamples.java309 if (m.matches()) {
489 if (m1.matches()) {
497 if (m2.matches()) {
H A DMessageInfo.java284 if (!l.next.text.matches("^ \\S.*"))
363 if (line.matches("[A-Za-z0-9-_.]+"))
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DBadKdc.java181 if (!output.matches(expected)) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DMediaTracker.java791 && ((ImageMediaEntry) cur).matches(image, width, height))
898 boolean matches(Image img, int w, int h) { method in class:ImageMediaEntry
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTool.java223 if (recognizedOptions[j].matches(flag))
272 if (o.matches(option))
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DBaseFileManager.java137 if (o.matches(current)) {
161 if (o.matches(option))
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DCodeWriter.java173 int default_, int npairs, int[] matches, int[] offsets, Integer indent) {
178 print(String.format("%n%12d: %d", matches[i], (pc + offsets[i])));
/openjdk7/jdk/src/share/classes/sun/tools/jmap/
H A DJMap.java95 if (option.matches(SA_TOOL_OPTIONS)) {
113 if (!args[optionCount].matches("[0-9]+")) {
/openjdk7/jdk/src/share/demo/applets/Fractal/
H A DCLSFractal.java294 + " The matches() method, however, does not \n(yet) verify "
450 if (rule.matches(currentPath, pos)) {
464 * The matches() method, however, does not (yet) verify the lContext
483 public boolean matches(StringBuffer sb, int pos) { method in class:CLSRule
/openjdk7/jdk/test/javax/swing/text/html/parser/Parser/7165725/
H A Dbug7165725.java185 if (!content.matches(".*<script .*/js/js1\\.js.*<script .*/js/js2\\.js.*<script .*/js/js3\\.js.*"))
187 if (!content.matches(".*<style .*stylesheets/base\\.css.*<style .*stylesheets/adv\\.css.*"))
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java278 ! matches(m, "Permission denied"))
382 ! matches(m, "No such file"))
395 ! matches(m, "No such file"))
633 return (val == null) || val.matches("en.*");
640 private static boolean matches(String str, String regex) { method in class:Basic
1795 ! matches(m, "No such file or directory"))
1810 if (! matches(m, programName)
1812 && ! matches(m, "No such file or directory")))
1826 if (! matches(m, "in directory")
1828 ! matches(
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapName.java218 matches(0, len2, n));
225 matches(len1 - len2, len1, n));
252 private boolean matches(int beg, int end, Name n) { method in class:LdapName
/openjdk7/jdk/test/tools/launcher/
H A DTestHelper.java186 : p.matcher(m.getName()).matches();
581 boolean matches(String stringToMatch) { method in class:TestHelper.TestResult
583 if (x.matches(stringToMatch)) {
/openjdk7/jdk/src/share/classes/java/lang/
H A DClass.java936 boolean matches = true;
939 matches = false;
944 if (matches) { // finally, check return type
1070 boolean matches = true;
1073 matches = false;
1078 if (matches)
1173 // string that matches the regular expression "\$[0-9]*"
1620 * @return the {@code Method} object that matches the specified
1678 * matches the specified {@code parameterTypes}
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftMixingMixer.java183 if (info.matches(sourceLineInfo[i])) {
226 if (info.matches(sourceLineInfo[i])) {
H A DAbstractDataLine.java137 if (!format.matches(getFormat())) {
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java137 public boolean matches(Path path) {
138 return matcher.matches(unwrap(path));
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DCharacterScript.java45 if (m.matches()) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/
H A DConfigReader.java108 * for the user pattern , matches the input classes
164 * This will check if the qualified name matches the pattern
174 return matcher.matches();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DArrayBeanInfoImpl.java92 if(ea.matches("","item")) {

Completed in 117 milliseconds

123456789