Searched refs:match (Results 101 - 125 of 222) sorted by relevance

123456789

/openjdk7/jdk/test/java/security/cert/CertPathBuilder/targetConstraints/
H A DBuildOddSel.java87 public boolean match(Certificate cert) { method in class:BuildOddSel.OddSel
/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java68 match = Query.match((AttributeValueExp) attr, field in class:QueryExpStringTest
119 match, "attr like 'simpleString'",
206 return Query.match((AttributeValueExp) exp, spat);
H A DQueryMatchTest.java27 * @summary Query.match code for character sequences like [a-z] is wrong.
479 Query.match(Query.attr("StringNumber"), Query.value(pattern));
501 System.out.println("\n--- Test javax.management.Query.match ---");
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DStaticStringsHash.java326 boolean match = false;
329 match = true;
333 if (match) {
/openjdk7/jdk/test/com/sun/jdi/redefineMethod/
H A DRedefineTest.java144 String match = matchList[i];
149 String errInfo = "\nframe " + i + ": " + loc + "\n match: " + match;
154 StringTokenizer st = new StringTokenizer(match);
/openjdk7/jdk/test/java/lang/invoke/
H A DThrowExceptionsTest.java121 private void testAll(String match) throws Throwable { argument
127 (match == null || match.contains(name.substring("test".length()))) &&
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DDataFlavor.java948 if (!mimeType.match(that.mimeType)) {
1023 // MimeType.match which reports a match if one or both of the
1056 public boolean match(DataFlavor that) { method in class:DataFlavor
1080 return this.mimeType.match(new MimeType(mimeType));
1111 return mimeType.match(mtype);
1226 mimeType.match(javaFileListFlavor.mimeType);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ktab/
H A DKeyTab.java284 if (entry.service.match(service)) {
353 if (entry.service.match(service)) {
392 if (e.service.match(service)) {
467 * @param etype the etype to match, remove all if -1
479 if (service.match(e.getService())) {
504 if (service.match(e.getService())) {
/openjdk7/hotspot/src/share/vm/compiler/
H A Ddisassembler.cpp163 static bool match(const char* event, const char* tag) { function in class:decode_env
269 if (match(event, "insn")) {
271 } else if (match(event, "/insn")) {
273 } else if (match(event, "addr")) {
278 } else if (match(event, "mach")) {
286 } else if (match(event, "format bytes-per-line")) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacElements.java253 JCTree match = matchAnnoToTree(findme, anno, tree);
254 if (match != null)
255 return match;
282 JCTree match = matchAnnoToTree(findme, pair.snd, expr);
283 if (match != null) {
284 result = match;
490 // Names must match. Nothing hides itself (just try it).
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEParser.java196 int start = match(buf, 0, len); // matches boundary
294 int start = match(buf, 0, len); // matches boundary
344 * are used to see if chars match; This keeps the tables small
346 * results in an aliased match for the bad character shift.
368 // No match. The array has already been
392 * @return -1 if there is no match or index where the match starts
394 private int match(byte[] mybuf, int off, int len) { method in class:MIMEParser
397 // Loop over all possible match positions in text
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DSignerInfo.java245 boolean match = false;
263 match = true;
269 if (!match)
322 return null; // contentType does not match, bad SignerInfo
/openjdk7/jdk/test/java/util/concurrent/locks/Lock/
H A DTimedAcquireLeak.java115 static String match(String s, String regex, int group) { method in class:TimedAcquireLeak
129 match(commandOutputOf(jmap, "-histo:live", childPid),
160 match(commandOutputOf(jps, "-m"),
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DMediaSize.java183 * If there is no exact match, the closest match is used.
202 MediaSize match = MediaSize.ISO.A4;
218 match = mediaSize;
226 match = mediaSize;
231 return match.getMediaSizeName();
/openjdk7/hotspot/src/share/vm/interpreter/
H A DoopMapCache.hpp128 bool match(methodHandle method, int bci) { return _method == method() && _bci == bci; } function in class:InterpreterOopMap
H A Dbytecode.cpp242 assert(pair_at(i).match() < pair_at(i+1).match(), "unsorted table entries");
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.cpp69 //------------------------------match------------------------------------------
71 Node *StartNode::match( const ProjNode *proj, const Matcher *match ) { function in class:StartNode
76 return new (match->C) MachProjNode(this,proj->_con,RegMask::Empty,MachProjNode::unmatched_proj);
78 return new (match->C) MachProjNode(this,proj->_con,Matcher::c_frame_ptr_mask, Op_RegP);
80 return new (match->C) MachProjNode(this,proj->_con,match->_return_addr_mask,Op_RegP);
86 return new (match->C) ConNode(Type::TOP);
88 RegMask &rm = match->_calling_convention_mask[parm_num];
89 return new (match
621 Node *CallNode::match( const ProjNode *proj, const Matcher *match ) { function in class:CallNode
[all...]
H A Ddivnode.hpp168 virtual Node *match( const ProjNode *proj, const Matcher *m );
181 virtual Node *match( const ProjNode *proj, const Matcher *m );
/openjdk7/jdk/test/sun/security/util/HostnameMatcher/
H A DTestHostnameChecker.java226 checker.match(name, cert);
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DClassLoaderRepositorySupport.java103 * values must match. If the ObjectName is not null, then
105 * regardless of whether ClassLoader values match. (In fact,
112 boolean match =
116 if (match) {
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpMibTree.java252 if (node.match(theValue))
258 final private boolean match(long value) { method in class:SnmpMibTree.TreeNode
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/ext/
H A DStartTlsResponseImpl.java155 * will perform a simple case ignore match. If called after
192 * The default check performs a case insensitive match of the server's
253 "' does not match the hostname in the " +
418 if (!checker.match(hostname, principal)) {
421 " does not match the hostname:" + hostname);
434 checker.match(hostname, peerCert);
458 "' does not match the hostname in the " +
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DHostnameChecker.java85 * @exception CertificateException if the name does not match any of
88 public void match(String expectedName, X509Certificate cert) method in class:HostnameChecker
100 public static boolean match(String expectedName, Principal principal) { method in class:HostnameChecker
136 * in the certificate and must exactly match the IP in the URI.
146 // For IP address, it needs to be exact match
171 * the certificate (e.g., more than one dNSName name, a match in any one
190 // but none match, reject
262 * considered to match any single domain name component
294 * E.g. *.bar.com would match a.bar.com, b.bar.com, etc. but not
314 // match res
[all...]
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DX509KeySelector.java54 * The public key from the first match is returned. If no match,
101 * X509Data X509IssuerSerial: if the serial number and issuer DN match an
109 * rawX509Certificate type, it must match an <code>X509Certificate</code>
195 // return null since no match could be found
204 * is a match; otherwise null
212 if (cert != null && cs.match(cert)) {
225 * is a match; otherwise null
291 * is a match; otherwise null
363 if (subjectcs.match(cer
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixUriUtils.java106 if (match(c, L_PATH, H_PATH)) {
181 private static boolean match(char c, long lowMask, long highMask) { method in class:UnixUriUtils

Completed in 96 milliseconds

123456789