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

123

/openjdk7/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp313 // for each entry in the directory that matches the pattern hsperfdata_*,
633 // for each entry in the directory that matches the expected file
662 // matches the current process id or the process is not running,
945 // determine if the SID of this ACE matches any of the SIDs
947 int matches = 0; local
950 matches++;
955 // if there are no SID matches, then add this existing ACE to the new ACL
956 if (matches == 0) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DDTDParser.java2300 if (entry.matches(value, len))
2327 boolean matches(char value [], int len) { method in class:DTDParser.NameCacheEntry
/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/javax/swing/
H A DGroupLayout.java1239 ", matches=" + paddingSpring.getMatchDescription();
3213 private List<AutoPreferredGapMatch> matches; field in class:GroupLayout.AutoPreferredGapSpring
3266 matches = null;
3272 if (matches != null) {
3284 for (int i = matches.size() - 1; i >= 0; i--) {
3285 AutoPreferredGapMatch match = matches.get(i);
3348 if (matches == null) {
3349 matches = new ArrayList<AutoPreferredGapMatch>(1);
3351 matches.add(new AutoPreferredGapMatch(source, target));
3373 return (matches
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DStyleSheet.java263 * Fetches the rule that best matches the selector given
1444 * matches <code>selector</code>.
1664 if (style.matches(selectorName)) {
2853 * Returns true if the receiver matches <code>selector</code>, where
2857 protected boolean matches(String selector) { method in class:StyleSheet.ResolvedStyle
2872 if (!matches(selector, sCurrent, sLast, thisCurrent, thisLast)) {
2888 match = matches(selector, sCurrent, sLast, thisCurrent,
2900 * thisCurrent, thisLast matches the substring of selector in
2903 boolean matches(String selector, int sCurrent, int sLast, method in class:StyleSheet.ResolvedStyle
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java2055 boolean matches(Filter<Symbol> scopeFilter, boolean checkResult, int mark) { method in class:Types.ImplementationCache.Entry
2072 !e.matches(implFilter, checkResult, members.getMark())) {
2121 boolean matches(boolean skipInterfaces) { method in class:Types.MembersClosureCache.Entry
2136 if (e == null || !e.matches(skipInterface)) {
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java54 * boolean b = m.{@link Matcher#matches matches}();</pre></blockquote>
56 * <p> A {@link #matches matches} method is defined by this class as a
58 * compiles an expression and matches an input sequence against it in a single
62 * boolean b = Pattern.matches("a*b", "aaaaab");</pre></blockquote>
64 * is equivalent to the three statements above, though for repeated matches it
80 * <th bgcolor="#CCCCFF" align="left" id="matches">Matches</th>
87 * <td headers="matches">The character <i>x</i></td></tr>
89 * <td headers="matches">Th
1127 public static boolean matches(String regex, CharSequence input) { method in class:Pattern
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java183 * boolean matches(Filter)
258 * XMLKit.textFilter() // matches any CharSequence
259 * XMLKit.specialFilter() // matches any Special element
1320 public boolean matches(Filter f) { method in class:XMLKit.Element
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c564 * so we're forced to load it in case it matches us.
633 * the hash table in case one these entries matches our class.
3299 int matches = 0; local
3309 matches++;
3322 if ((matches < mask_count) || copy_needed) {
3325 mask_type *copy = NEW(mask_type, matches);
3326 for (i = 0; i < matches; i++) {
3330 this_reginfo->mask_count = matches;
3332 matches = 0;
3340 int *new = copy[matches]
[all...]

Completed in 117 milliseconds

123