Searched defs:matches (Results 1 - 25 of 59) sorted by relevance

123

/openjdk7/jdk/src/share/classes/java/nio/file/
H A DPathMatcher.java40 * Tells if given path matches this matcher's pattern.
45 * @return {@code true} if, and only if, the path matches this
48 boolean matches(Path path); method in interface:PathMatcher
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DReferenceTypeSpec.java43 boolean matches(ReferenceType refType); method in interface:ReferenceTypeSpec
H A DSourceNameReferenceTypeSpec.java52 public boolean matches(ReferenceType refType) { method in class:SourceNameReferenceTypeSpec
H A DPatternReferenceTypeSpec.java60 public boolean matches(ReferenceType refType) { method in class:PatternReferenceTypeSpec
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DReferenceTypeSpec.java44 boolean matches(ReferenceType refType); method in interface:ReferenceTypeSpec
H A DPatternReferenceTypeSpec.java68 public boolean matches(ReferenceType refType) { method in class:PatternReferenceTypeSpec
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DRenderCache.java46 public boolean matches(SurfaceType src, method in class:RenderCache.Entry
53 // on object matches instead.
80 if (e.matches(src, comp, dst)) {
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRegexp.java100 /** Returns true iff the String s matches this regular expression. */
101 final boolean matches(String s) { method in class:Regexp
102 return matches(s, 0, s.length());
106 matches this regular expression. */
107 boolean matches(String s, int offset, int len) { method in class:Regexp
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DTagName.java82 * Checks if the given name pair matches this name.
84 public final boolean matches( String nsUri, String local ) { method in class:TagName
89 * Checks if the given name pair matches this name.
91 public final boolean matches( Name name ) { method in class:TagName
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DStyleAssociation.java52 * Matcher used for testing if path matches that of pattern.
64 * a particular string matches the returned association.
74 * a particular string matches the returned association.
100 * Returns true if this <code>StyleAssociation</code> matches the
103 * @return true if this <code>StyleAssociation</code> matches the
106 public synchronized boolean matches(CharSequence path) { method in class:StyleAssociation
113 return _matcher.matches();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DBMPattern.java72 public int matches(CharacterIterator iterator, int start, int limit) { method in class:BMPattern
97 public int matches(String str, int start, int limit) { method in class:BMPattern
122 public int matches(char[] chars, int start, int limit) { method in class:BMPattern
H A DREUtil.java218 reg.matches(target, match);
289 * @see RegularExpression#matches(java.lang.String)
291 public static boolean matches(String regex, String target) throws ParseException { method in class:REUtil
292 return REUtil.createRegex(regex, null).matches(target);
297 * @see RegularExpression#matches(java.lang.String)
299 public static boolean matches(String regex, String options, String target) throws ParseException { method in class:REUtil
300 return REUtil.createRegex(regex, options).matches(target);
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DLine.java275 * Indicates whether the specified info object matches this one.
288 * @return <code>true</code> if the specified object matches this one,
291 public boolean matches(Info info) { method in class:Line.Info
294 // dataLine.matches(targetDataLine) == true: targetDataLine is always dataLine
295 // targetDataLine.matches(dataLine) == false
297 // targetDataLine.matches(prospective_match) == true
H A DPort.java159 * Indicates whether this info object specified matches this one.
164 public boolean matches(Line.Info info) { method in class:Port.Info
166 if (! (super.matches(info)) ) {
H A DAudioFormat.java77 * are ignored in the {@link #matches(AudioFormat)} method.
434 * Indicates whether this format matches the one specified.
445 * @return {@code true} if this format matches the one specified,
448 public boolean matches(AudioFormat format) { method in class:AudioFormat
570 * This allows matches to be made by checking that two format's encodings
H A DDataLine.java385 * the specified format matches any of the supported formats.
390 * @see AudioFormat#matches
395 if (format.matches(formats[i])) {
422 * Determines whether the specified info object matches this one.
428 * @return <code>true</code> if this object matches the one specified,
431 public boolean matches(Line.Info info) { method in class:DataLine.Info
433 if (! (super.matches(info)) ) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DDefaultSynthStyleFactory.java103 BakedArrayList matches = _tmpList;
105 matches.clear();
106 getMatchingStyles(matches, c, id);
108 if (matches.size() == 0) {
112 matches.cacheHashCode();
113 SynthStyle style = getCachedStyle(matches);
116 style = mergeStyles(matches);
119 cacheStyle(matches, style);
139 * <code>matches</code>.
141 private void getMatchingStyles(List matches, JComponen argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DIndexedCollectionCertStore.java239 Set<Certificate> matches = new HashSet<Certificate>();
240 matchX509Certs(new X509CertSelector(), matches);
241 matches.addAll(otherCertificates);
242 return matches;
246 Set<Certificate> matches = new HashSet<Certificate>();
247 matchX509Certs(selector, matches);
250 matches.add(cert);
253 return matches;
283 Set<X509Certificate> matches = new HashSet<X509Certificate>(16);
286 matches
302 matchX509Certs(CertSelector selector, Collection<Certificate> matches) argument
393 matchX509CRLs(CRLSelector selector, Collection<CRL> matches) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DStreamMonitor.java64 boolean matches(String str) { method in class:StreamMonitor.Trigger
209 if (trigger.matches(str)) {
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DLdapName.java306 matches(0, len2, n));
313 * getRdn(p) matches rdns.get(p). Returns false otherwise. If rdns is
349 matches(len1 - len2, len1, n));
356 * the component getRdn(p) matches rdns.get(p). Returns false otherwise.
389 private boolean matches(int beg, int end, Name n) { method in class:LdapName
/openjdk7/hotspot/src/share/vm/code/
H A DvtableStubs.hpp65 bool matches(bool is_vtable_stub, int index) const { function in class:VtableStub
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DIterators.java142 protected abstract boolean matches(T value); method in class:Iterators.Filter
147 if(!matches(next))
171 protected boolean matches(T value) { method in class:Iterators.Unique
/openjdk7/jdk/test/java/net/CookieHandler/
H A DTestHttpCookie.java210 static void dm(String domain, String host, boolean matches) { argument
212 if (HttpCookie.domainMatches(domain, host) != matches) {
213 raiseError("Host " + host + (matches?" should ":" should not ") +
/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DDeclarationFilter.java48 * the {@link #matches(Declaration)} method.
66 * public boolean matches(Declaration d) {
135 * @return a filter that matches declarations containing <tt>mods</tt>
140 public boolean matches(Declaration d) {
160 public boolean matches(Declaration d) {
178 public boolean matches(Declaration d) {
179 return f1.matches(d) && f2.matches(d);
196 public boolean matches(Declaration d) {
197 return f1.matches(
229 public boolean matches(Declaration decl) { method in class:DeclarationFilter
308 public boolean matches(Declaration d) { method in class:DeclarationFilter.AccessFilter
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DJavacOption.java53 * @return true if {@code arg} matches this option
55 boolean matches(String arg); method in interface:JavacOption
155 public boolean matches(String option) { method in class:JavacOption.Option

Completed in 144 milliseconds

123