Searched refs:match (Results 151 - 175 of 222) sorted by relevance

123456789

/openjdk7/jdk/test/javax/management/monitor/
H A DAttributeArbitraryDataTypeTest.java770 Match match = Match.do_match_now;
771 String name = (String) elementFromComplex(match, "name");
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java203 int[] match, jump_table;
258 match = new int[npairs];
266 match[i] = bytes.readInt();
270 buf.append("(" + match[i] + ", " + jump_table[i] + ")");
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DIDLNames.java546 // We have matching getter or setter. Do the types match?
950 // Scan all methods looking for a match...
993 // Scan all methods looking for a match...
1154 * @param match The string to search for within the source string.
1158 public static String replace (String source, String match, String replace) { argument
1160 int index = source.indexOf(match,0);
1164 // We have at least one match, so gotta do the
1168 int matchLength = match.length();
1175 index = source.indexOf(match,startIndex);
/openjdk7/hotspot/src/share/vm/opto/
H A Dmatcher.hpp172 // properly match spill code.
190 void match( );
191 // Helper for match
238 // Does matcher have a match rule for this ideal node?
242 // Does matcher have a match rule for this ideal node and is the
446 // This routine is run whenever a graph fails to match.
/openjdk7/jdk/src/share/classes/java/awt/
H A DDefaultKeyboardFocusManager.java1261 boolean match = (toTest == comp);
1262 while (!match && toTest != null && !(toTest instanceof Window)) {
1264 match = (toTest == comp);
1266 if (match) {
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.hpp141 void peep_match_parse(Peephole &peep); // Parse the peephole match rule
145 // Parse the peep match rule tree
146 InstructForm *peep_match_child_parse(PeepMatch &match, int parent, int &position, int input);
150 // Parse match rule, and internal nodes
H A Dformsopt.cpp92 assert( _current_ac != NULL, "Name must match an allocation class");
102 assert( reg_def != NULL, "Name must match a register definition");
556 void Peephole::add_match(PeepMatch *match) { argument
558 _match = match;
597 // Insert info into the match-rule
608 // Access info about instructions in the peep-match rule
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DBuilder.java144 * means exact match, 1 means test is an immediate
188 * namespace hierarchy, where 0 means exact match. Result
302 /* match! */
323 /* no exact match; see if certificate can get us to target */
436 if (selector.match(targetCert) && !X509CertImpl.isSelfSigned
H A DPKIXCertPathValidator.java250 worthy = issuerSelector.match(trustedCert);
H A DCrlRevocationChecker.java710 public boolean match(Certificate cert) { method in class:CrlRevocationChecker.RejectKeySelector
711 if (!super.match(cert))
716 debug.println("RejectCertSelector.match: bad key");
721 debug.println("RejectCertSelector.match: returning true");
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRegexpPool.java124 // delete only if there is an exact match
140 /** Search for a match to a string & return the object associated
141 with it with the match. When multiple regular expressions
142 would match the string, the best match is returned first.
143 The next best match is returned the next time matchNext is
145 @param s The string to match against the regular expressions
153 public Object match(String s) { method in class:RegexpPool
157 /** Identical to match except that it will only find matches to
160 to match() o
[all...]
/openjdk7/jdk/src/share/classes/sun/net/spi/
H A DDefaultProxySelector.java274 nprop.hostsPool.match(urlhost) != null) {
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyFile.java167 * will match, and any codeBase will match.
169 * may be set to the wildcard value, *, which allows it to match
171 * may also be set to the wildcard value, *, allowing it to match
376 * will match, and any codeBase will match.
1372 // has principals. see if policy entry principals match
1851 // with paths that are intended to match all entries in the directory
2054 * long as they match the signer field. The signer could be null,
2310 boolean match;
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp266 bool match = (name_ref_i < *merge_cp_length_p) && local
269 if (!match) {
270 // forward reference in *merge_cp_p or not a direct match
283 // no match found so we have to append this entry to *merge_cp_p
295 match = (signature_ref_i < *merge_cp_length_p) &&
298 if (!match) {
299 // forward reference in *merge_cp_p or not a direct match
312 // no match found so we have to append this entry to *merge_cp_p
357 bool match = (klass_ref_i < *merge_cp_length_p) && local
360 if (!match) {
1148 bool match = scratch_cp->compare_entry_to(scratch_i, *merge_cp_p, local
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectStreamClass.java829 * types only. Returns matching field, or null if no match found.
1178 Class<?> match = null;
1181 match = c;
1186 // add "no data" slot for each unmatched class below match
1187 if (match != null) {
1188 for (Class<?> c = start; c != match; c = c.getSuperclass()) {
1192 start = match.getSuperclass();
1196 slots.add(new ClassDataSlot(d.getVariantFor(match), true));
1387 * null if no match found. Access checks are disabled on the returned
2105 * subset of fields that match (no
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DURI.java2495 private static boolean match(char c, long lowMask, long highMask) { method in class:URI
2662 if (!match(c, lowMask, highMask)) {
2867 // whether the chars at the start position match s exactly
2955 && match(charAt(p + 1), L_HEX, H_HEX)
2956 && match(charAt(p + 2), L_HEX, H_HEX)) {
2969 // Scan chars that match the given mask pair
2977 if (match(c, lowMask, highMask)) {
3375 if (l > start && !match(charAt(l), L_ALPHA, H_ALPHA)) {
H A DSocketPermission.java563 // make sure we didn't just match the tail of a word
599 if (!match(cname, hostname)) {
605 debug.println("socket access restriction: proxied host " + "(" + addresses[0] + ")" + " does not match " + cname + " from reverse lookup");
654 private boolean match(String cname, String hname) { method in class:SocketPermission
841 * attempt to match based on the wildcard.
843 * to find a match based on the IP addresses in both objects.
844 * <li> Attempt to match on the canonical hostnames of both objects.
863 // allow a "*" wildcard to always match anything
/openjdk7/jdk/src/solaris/native/java/net/
H A DNetworkInterface.c305 jboolean match = JNI_FALSE; local
327 match = JNI_TRUE;
348 match = JNI_TRUE;
356 if (match) {
362 if (match) {
369 if (match) {;
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME236 grayscale dithering to improve the output match when the gray
238 a simple best match lookup for an 8-bit gray value to the best
250 includes the necessary header files from the above list which match
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DSignatureFileVerifier.java382 * section in the manifest, see if the hashes match.
623 boolean match;
643 boolean match;
672 // search through the cache for a match, go in reverse order
673 // as we are more likely to find a match with the last one
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/https/
H A DHttpsClient.java609 if (!HostnameChecker.match(host, getPeerPrincipal())) {
625 checker.match(host, peerCert);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMethod.java176 if (bp.match(this, bci)) {
/openjdk7/jdk/src/share/classes/java/beans/
H A DIntrospector.java1180 boolean match = false;
1182 match = true;
1185 match = false;
1190 if (match) {
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CRLSelector.java41 * match all specified criteria. This class is particularly useful when
47 * value (<code>null</code>). Therefore, the {@link #match match} method
90 * so any <code>X509CRL</code> will match.
96 * <code>X509CRL</code> must match at least one of the specified
141 * <code>X509CRL</code> must match at least one of the specified
211 * name in the <code>X509CRL</code> must match at least one of the specified
230 * relied on as it can fail to match some CRLs because of a loss of
235 * name in the <code>X509CRL</code> must match at least one of the specified
252 * name in the <code>X509CRL</code> must match a
596 public boolean match(CRL crl) { method in class:X509CRLSelector
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp385 // Check if size match
519 // perfect match
572 "post_event_flag mis-match");
1444 if (bp->match(this, bci)) {
1456 if (bp->match(this, bci)) {
1479 if (bci >= 0 ? bp->match(m, bci) : bp->match(m)) {

Completed in 137 milliseconds

123456789