Searched refs:matches (Results 176 - 200 of 216) sorted by relevance

123456789

/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/langtools/src/share/classes/com/sun/tools/javah/
H A DJavahTask.java121 boolean matches(String opt) { method in class:JavahTask.Option
243 boolean matches(String opt) {
398 if (o.matches(name)) {
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dtrees.c447 s->last_lit = s->matches = 0;
1057 s->matches++;
1083 if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXFileDialogPeer.java913 return matches(fileName, filter);
918 * Tells whether or not the input string matches the given filter
920 private boolean matches(String input, String filter) { method in class:FileDialogFilter
922 return input.matches(regex);
H A DXWM.java353 if (match.matches()) {
1347 if (match.matches()) {
/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...]
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DApt.java364 if (p.matcher(s).matches()) {
375 " matches " +
/openjdk7/jdk/test/sun/nio/cs/
H A DFindDecoderBugs.java397 if (! csn.matches("(?:x-)?(?:UTF|JIS(?:_X)?0).*")) {
H A DFindEncoderBugs.java197 cs.name().matches(".*BOM.*") ||
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DXPathParser.java169 * Given an string, init an XPath object for pattern matches,
257 * Check whether m_token matches the target string.
262 * return true if the current token matches the string, else false.
274 * @return If m_token is null, returns false, or return true if c matches
290 * @return true if the next token matches the character argument.
324 * @return true if the token behind the current token matches the character
396 * @return true if the token behind the current token matches the string
1887 // "Node test that matches either NCName:* or QName was expected."
1914 // "Node test that matches either NCName:* or QName was expected."
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java1251 * exactly matches the specified subregion of the string argument;
1319 * matches the specified subregion of the string argument;
1820 /* Empty string always matches. */
2037 * Tells whether or not this string matches the given <a
2041 * <i>str</i><tt>.matches(</tt><i>regex</i><tt>)</tt> yields exactly the
2045 * java.util.regex.Pattern#matches(String,CharSequence)
2046 * matches}(</tt><i>regex</i><tt>,</tt> <i>str</i><tt>)</tt></blockquote>
2051 * @return <tt>true</tt> if, and only if, this string matches the
2062 public boolean matches(String regex) { method in class:String
2063 return Pattern.matches(rege
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DProvider.java534 boolean matches(String type, String algorithm) { method in class:Provider.ServiceKey
683 if (key.matches(type, algorithm) == false) {
/openjdk7/jdk/src/share/classes/java/util/
H A DScanner.java46 * delimiter pattern, which by default matches whitespace. The resulting
104 * {@link #hasNextInt}) first skip any input that matches the delimiter
122 * tokens since it matches multiple instances of the delimiter. The delimiting
932 * Returns a "complete token" that matches the specified pattern
1008 if (matcher.matches()) {
1027 if (matcher.matches()) {
1392 * A complete token is preceded and followed by input that matches
1432 * Returns true if the next token matches the pattern constructed from the
1449 * Returns the next token if it matches the pattern constructed from the
1467 * Returns true if the next complete token matches th
[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/jdk/src/share/classes/java/io/
H A DObjectStreamClass.java827 * A specified type of null matches all types, Object.class matches all
828 * non-primitive types, and any other non-null type matches assignable
2220 * which each ObjectStreamField whose signature matches that of a local
2245 ObjectStreamField[] matches = new ObjectStreamField[fields.length];
2271 matches[i] = m;
2273 return matches;
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFiles.java476 return matcher.matches(entry.getFileName());
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DPCMtoPCMCodec.java161 if( inputFormat.matches(outputFormat) ) {
/openjdk7/jdk/test/tools/launcher/
H A DArrrghs.java220 if (m.matches()) {
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DDependencies.java187 * package of the target's class matches any of a set of given package
405 * This class accepts those dependencies whose target's class name matches a
414 return pattern.matcher(dependency.getTarget().getClassName()).matches();
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DSynthFileChooserUI.java505 return pattern.matcher(f.getName()).matches();
/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/make/jpda/jdwp/
H A Djdwp.spec2268 "matches the given restricted regular expression. "
2279 "Matches are limited to exact matches of the "
2280 "given class pattern and matches of patterns that "
2299 "Matches are limited to exact matches of the "
2300 "given class pattern and matches of patterns that "
2373 "which matches the given restricted regular expression. "
2384 "Matches are limited to exact matches of the "
2385 "given pattern and matches of patterns that "
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DMetacity.java1603 boolean matches = true;
1611 matches = false;
1615 if (matches) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java403 if (m1.matches()) {
410 } else if (m2.matches()) {
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioSystem.java371 * Obtains a line that matches the description in the specified
958 if (sourceStream.getFormat().matches(targetFormat)) {
1427 * @return a Mixer that matches the requirements, or null if no default mixer found

Completed in 188 milliseconds

123456789