Searched defs:match (Results 1 - 25 of 116) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCRLSelector.java57 boolean match(CRL crl); method in interface:CRLSelector
H A DCertSelector.java58 boolean match(Certificate cert); method in interface:CertSelector
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DLookupswitchPair.java34 public int match() { method in class:LookupswitchPair
/openjdk7/jdk/test/com/sun/crypto/provider/TLS/
H A DTestKeyMaterial.java133 match(lineNumber, clientCipherBytes,
135 match(lineNumber, serverCipherBytes,
137 match(lineNumber, clientIv, result.getClientIv());
138 match(lineNumber, serverIv, result.getServerIv());
139 match(lineNumber, clientMacBytes, result.getClientMacKey());
140 match(lineNumber, serverMacBytes, result.getServerMacKey());
154 private static void match(int lineNumber, byte[] out, Object res) method in class:TestKeyMaterial
/openjdk7/jdk/test/sun/security/pkcs11/Cipher/
H A DTestRSACipher.java69 match(b, d);
72 match(b, d);
87 match(b, d);
90 match(b, d);
115 private static void match(byte[] b1, byte[] b2) throws Exception { method in class:TestRSACipher
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DContainmentFilter.java43 public ContainmentFilter(Attributes match) { argument
44 matchingAttrs = match;
69 // check whether attribute values match
/openjdk7/jdk/test/java/nio/file/Path/
H A DMacPathTest.java76 private static boolean match(Path target, Path src) { method in class:MacPathTest
143 found_dir |= match(dpath, path);
144 found_file_nfc |= match(fpath_nfc, path);
145 found_file_nfd |= match(fpath_nfd, path);
159 globmatched |= match(fpath_nfc, path);
/openjdk7/jdk/test/java/nio/file/PathMatcher/
H A DBasic.java35 static void match(String name, String pattern, boolean expectedToMatch) { method in class:Basic
43 System.out.print(" (no match)");
53 match(path, pattern, true);
57 match(path, pattern, false);
91 // match zero or more characters
100 // match one character
119 assertMatch("foo-bar", "foo[-a-z]bar"); // match dash
120 assertMatch("foo.html", "foo[!-]html"); // match !dash
/openjdk7/jdk/test/sun/security/provider/KeyStore/
H A DCaseSensitiveAliases.java110 match(p2, ks.getKey("alias", pw));
111 match(p2, ks.getKey("Alias", pw));
112 match(p2, ks.getKey("ALIAS", pw));
113 match(a2, ks.getCertificateChain("alias"));
114 match(a2, ks.getCertificateChain("Alias"));
115 match(a2, ks.getCertificateChain("ALIAS"));
120 match(null, ks.getKey("alias", pw));
121 match(p1, ks.getKey("Alias", pw));
122 match(p2, ks.getKey("ALIAS", pw));
123 match(nul
131 private static void match(Key p1, Key p2) throws Exception { method in class:CaseSensitiveAliases
138 private static void match(Certificate[] a1, Certificate[] a2) throws Exception { method in class:CaseSensitiveAliases
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DTicketFlags.java113 public boolean match(LoginOptions options) { method in class:TicketFlags
115 //We currently only consider if forwardable renewable and proxiable are match
125 public boolean match(TicketFlags flags) { method in class:TicketFlags
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DAdaptableX509CertSelector.java97 * the subject criterion before call match().
139 public boolean match(Certificate cert) { method in class:AdaptableX509CertSelector
174 // does not match the replacement root certificate fields.
185 return super.match(cert);
/openjdk7/jdk/test/java/security/cert/CertPathBuilder/selfIssued/
H A DDisableRevocation.java216 private static boolean match(String name, Certificate cert) method in class:DisableRevocation
256 if (!match(args[0], result.getCertPath().getCertificates().get(0))) {
H A DKeyUsageMatters.java259 private static boolean match(String name, Certificate cert) method in class:KeyUsageMatters
299 if (!match(args[0], result.getCertPath().getCertificates().get(0))) {
H A DStatusLoopDependency.java265 private static boolean match(String name, Certificate cert) method in class:StatusLoopDependency
305 if (!match(args[0], result.getCertPath().getCertificates().get(0))) {
/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/sun/security/pkcs11/tls/
H A DTestKeyMaterial.java141 match(lineNumber, clientCipherBytes,
143 match(lineNumber, serverCipherBytes,
145 match(lineNumber, clientIv, result.getClientIv(), "");
146 match(lineNumber, serverIv, result.getServerIv(), "");
147 match(lineNumber, clientMacBytes, result.getClientMacKey(), "");
148 match(lineNumber, serverMacBytes, result.getServerMacKey(), "");
168 private static void match(int lineNumber, byte[] out, Object res, method in class:TestKeyMaterial
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DLOOKUPSWITCH.java76 public LOOKUPSWITCH(int[] match, InstructionHandle[] targets, argument
78 super(com.sun.org.apache.bcel.internal.Constants.LOOKUPSWITCH, match, targets, target);
94 out.writeInt(match[i]); // match-offset pairs
110 match = new int[match_length];
115 match[i] = bytes.readInt();
H A DTABLESWITCH.java77 * @param match sorted array of match values, match[0] must be low value,
78 * match[match_length - 1] high value
82 public TABLESWITCH(int[] match, InstructionHandle[] targets, argument
84 super(com.sun.org.apache.bcel.internal.Constants.TABLESWITCH, match, targets, target);
98 int low = (match_length > 0)? match[0] : 0;
101 int high = (match_length > 0)? match[match_length - 1] : 0;
122 match = new int[match_length];
127 match[
[all...]
H A DSWITCH.java63 * TABLESWITCH instruction, depending on whether the match values (int[]) can be
69 private int[] match; field in class:SWITCH
75 * Template for switch() constructs. If the match array can be
84 * @param match array of match values (case 2: ... case 7: ..., etc.)
89 public SWITCH(int[] match, InstructionHandle[] targets, argument
91 this.match = (int[])match.clone();
94 if((match_length = match.length) < 2) // (almost) empty switch, or just default
95 instruction = new TABLESWITCH(match, target
109 SWITCH(int[] match, InstructionHandle[] targets, InstructionHandle target) argument
[all...]
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DArgsParser.java51 if (match(it.get(), arg)) {
57 boolean match(String rule_pattern, String arg) { method in class:ArgRule
/openjdk7/jdk/test/java/io/File/
H A DMacPathTest.java80 private static boolean match(File target, File src) { method in class:MacPathTest
156 found_dir |= match(dir, f);
157 found_file_nfc |= match(file_nfc, f);
158 found_file_nfd |= match(file_nfd, f);
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DAliasFileParser.java85 * method to match the current Token to a specified token type and
86 * value Throws a SyntaxException if token doesn't match.
88 private void match(int ttype, String token) method in class:AliasFileParser
103 * method to match the current Token to a specified token type.
104 * Throws a SyntaxException if token doesn't match.
106 private void match(int ttype) throws IOException, SyntaxException { method in class:AliasFileParser
115 private void match(String token) throws IOException, SyntaxException { method in class:AliasFileParser
116 match(StreamTokenizer.TT_WORD, token);
147 match(ALIAS);
149 match(StreamTokenize
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DMatchingIterator.java36 * match patterns with a single predicate like:
58 * The node to match.
62 public MatchingIterator(int match, DTMAxisIterator source) { argument
64 _match = match;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DBreakpointInfo.java70 public boolean match(Method m, int bci) { method in class:BreakpointInfo
71 return (bci == getBCI() && match(m));
74 public boolean match(Method m) { method in class:BreakpointInfo
/openjdk7/hotspot/src/share/vm/opto/
H A Dmultnode.cpp39 Node *MultiNode::match( const ProjNode *proj, const Matcher *m ) { return proj->clone(); } function in class:MultiNode

Completed in 87 milliseconds

12345