Searched refs:matched (Results 26 - 43 of 43) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDebug.java231 String matched = matcher.group();
232 target.append(matched.replaceFirst(keyReg, keyStr));
235 // delete the matched sequence
255 String matched = matcher.group();
256 target.append(matched.replaceFirst(keyReg, keyStr));
259 // delete the matched sequence
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DZoneInfo.java600 List<String> matched = new ArrayList<String>();
610 matched.add(IDs.get(i++));
612 matched.add(IDs.get(i++));
630 matched.add(id);
635 result = new String[matched.size()];
636 matched.toArray(result);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DField.java176 protected void matched(Object actualValue, short valueType, ShortList itemValueType, boolean isNil) { method in class:Field.Matcher
177 super.matched(actualValue, valueType, itemValueType, isNil);
188 } // matched(String)
244 matched(fMatchedString, valueType, itemValueType, nillable);
H A DXPathMatcher.java77 // matched any way
79 // matched on the attribute axis
81 // matched on the descendant-or-self axixs
83 // matched some previous (ancestor) node on the descendant-or-self-axis, but not this node
93 /** True if XPath has been matched. */
142 // xpath has been matched if any one of the members of the union have matched.
167 protected void matched(Object actualValue, short valueType, ShortList itemValueType, boolean isNil) { method in class:XPathMatcher
169 System.out.println(toString()+"#matched(\""+actualValue+"\")");
171 } // matched(Strin
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DAssertionSet.java244 final List<PolicyAssertion> matched = new LinkedList<PolicyAssertion>();
250 matched.add(assertion);
255 return matched;
/openjdk7/jdk/src/solaris/classes/sun/net/sdp/
H A DSdpProvider.java297 boolean matched = false;
301 matched = true;
308 if (matched) {
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DPrincipalName.java567 boolean matched = true;
570 // matched = false;
574 matched = false;
578 matched = false;
582 matched = false;
586 return matched;
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DDistributionPointFetcher.java686 boolean matched = false;
715 matched = issuerSelector.match(cert);
718 if (matched && (crlAKID == null ||
722 matched = true;
724 matched = false;
728 return matched;
/openjdk7/jdk/test/javax/management/descriptor/
H A DMBeanInfoInteropTest.java98 boolean matched = true;
103 matched = false;
106 if (!matched)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/amx/
H A DMBeanListener.java262 final Set<ObjectName> matched = mMBeanServer.queryNames(pattern, null);
263 for (final ObjectName objectName : matched)
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DFileCredentialsCache.java211 boolean matched = false;
219 matched = true;
223 + "Ticket matched, overwrite "
231 if (matched == false) {
234 + "not exactly matched, "
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DHprofReader.java362 boolean[] matched = new boolean[VERSIONS.length];
364 matched[i] = true;
372 if (matched[i]) {
373 if (c != VERSIONS[i].charAt(pos)) { // Not matched
374 matched[i] = false;
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyStore.java177 private boolean matched = false; field in class:P11KeyStore.AliasInfo
213 sb.append("\tmatched=[" + matched + "]\n");
2243 // yes, there was only one CKA_LABEL that matched
2477 // list of matched certs that we will return
2498 aliasInfo.matched = true;
2502 aliasInfo.matched = true;
2530 * for each cert not matched with a private key but is CKA_TRUSTED:
2564 if (aliasInfo.matched == true) {
2571 // cert in this aliasInfo is not matched yet
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Difference/src/com/sun/hotspot/igv/difference/
H A DDifference.java223 Set<InputNode> matched = new HashSet<InputNode>();
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c944 Boolean matched; local
969 matched = (strcmp((char *)net_wm_name, name) == 0);
970 if (matched) {
976 return matched;
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec2270 "is matched. For class unload events, the "
2271 "unloaded class name is matched. For monitor wait "
2273 "monitor object is matched. For other events, "
2274 "the class name of the event's location is matched. "
2290 "is matched. For class unload events, the "
2291 "unloaded class name is matched. For monitor wait and "
2293 "object is matched. For other events, "
2294 "the class name of the event's location is matched. "
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp618 enum { matched, added, deleted, undetermined } method_was = undetermined; enumerator in enum:__anon392
645 method_was = matched;
662 method_was = matched;
675 case matched:
695 RC_TRACE(0x00008000, ("Method matched: new: %s [%d] == old: %s [%d]",
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapCtx.java985 Name matched = parser.parse(answer.matchedDN);
986 if ((orig.size() - matched.size()) == 1)

Completed in 109 milliseconds

12