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

/libcore/ojluni/src/main/java/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
H A DX509CRLSelector.java41 * match all specified criteria. This class is particularly useful when
47 * value ({@code null}). Therefore, the {@link #match match} method
90 * so any {@code X509CRL} will match.
96 * {@code X509CRL} must match at least one of the specified
141 * {@code X509CRL} must match at least one of the specified
211 * name in the {@code X509CRL} 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} must match at least one of the specified
252 * name in the {@code X509CRL} must match a
596 public boolean match(CRL crl) { method in class:X509CRLSelector
[all...]
H A DX509CertSelector.java43 * match all specified criteria. This class is particularly useful when
50 * getBasicConstraints} method). Therefore, the {@link #match match}
61 * for example) such that the {@code match} method
153 * so any {@code X509Certificate} will match.
162 * {@code X509Certificate} passed to the {@code match} method.
166 * match a single certificate. Although other criteria can be specified
170 * @param cert the {@code X509Certificate} to match (or
180 * must match the certificate serial number in the
184 * @param serial the certificate serial number to match
1999 public boolean match(Certificate cert) { method in class:X509CertSelector
[all...]
/libcore/ojluni/src/main/java/sun/security/util/
H A DCertConstraintParameters.java42 public CertConstraintParameters(X509Certificate c, boolean match) { argument
44 trustedMatch = match;
51 // Returns if the trust anchor has a match if anchor checking is enabled.
/libcore/luni/src/test/java/tests/security/cert/
H A DCertStoreSpiTest.java81 public boolean match (CRL crl) { method in class:CertStoreSpiTest.tmpCRLSelector
89 public boolean match (Certificate crl) { method in class:CertStoreSpiTest.tmpCertSelector
H A DCertStore2Test.java295 public boolean match(CRL crl) { method in class:CertStore2Test.MyCRLSelector
305 public boolean match(CRL crl) { method in class:CertStore2Test.MyOtherCRLSelector
317 public boolean match(Certificate cert) { method in class:CertStore2Test.MyCertSelector
328 public boolean match(Certificate crl) { method in class:CertStore2Test.MyOtherCertSelector
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DAdaptableX509CertSelector.java120 * the subject criterion before calling match().
155 public boolean match(Certificate cert) { method in class:AdaptableX509CertSelector
158 // match subject key identifier
165 // does not match the replacement root certificate fields.
198 if (!super.match(cert)) {
218 debug.println("AdaptableX509CertSelector.match: "
229 debug.println("AdaptableX509CertSelector.match: "
230 + "subject key IDs don't match. "
238 debug.println("AdaptableX509CertSelector.match: "
H A DRevocationChecker.java273 if (sel.match(cert)) {
1137 public boolean match(Certificate cert) { method in class:RevocationChecker.RejectKeySelector
1138 if (!super.match(cert))
1143 debug.println("RejectKeySelector.match: bad key");
1148 debug.println("RejectKeySelector.match: returning true");
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DExchanger.java195 * changed, but cannot yet proceed until match is set. In the
198 * the linearization point to be a CAS of the match field (as done
248 * slot CASes, it would also be legal for the write to Node.match
285 * The bound for spins while waiting for a match. The actual
316 volatile Object match; // Item provided by releasing thread field in class:Exchanger.Node
366 q.match = item;
378 Object v = p.match;
394 spins = SPINS; // releaser hasn't set match yet
461 q.match = item;
487 while ((v = p.match)
[all...]
H A DSynchronousQueue.java219 * to match a waiting node.
236 volatile SNode match; // the node matched to this field in class:SynchronousQueue.TransferStack.SNode
254 * Tries to match node s to this node, if so, waking up thread.
258 * @param s the node to match
262 if (match == null &&
271 return match == s;
282 return match == this;
293 (SNode.class.getDeclaredField("match"));
333 * mode, try to push node on stack and wait for a match,
337 * try to push a fulfilling node on to stack, match
[all...]
/libcore/ojluni/src/main/java/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...]
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DAbstractBasicFileAttributeView.java118 boolean match(String name) { method in class:AbstractBasicFileAttributeView.AttributesBuilder
142 if (builder.match(SIZE_NAME))
144 if (builder.match(CREATION_TIME_NAME))
146 if (builder.match(LAST_ACCESS_TIME_NAME))
148 if (builder.match(LAST_MODIFIED_TIME_NAME))
150 if (builder.match(FILE_KEY_NAME))
152 if (builder.match(IS_DIRECTORY_NAME))
154 if (builder.match(IS_REGULAR_FILE_NAME))
156 if (builder.match(IS_SYMBOLIC_LINK_NAME))
158 if (builder.match(IS_OTHER_NAM
[all...]
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
/libcore/ojluni/src/main/java/java/util/jar/
H A DJarFile.java488 // entries to find a match.
519 private boolean match(char[] src, byte[] b, int[] lastOcc, int[] optoSft) { method in class:JarFile
550 if (match(CLASSPATH_CHARS, b, CLASSPATH_LASTOCC, CLASSPATH_OPTOSFT))
/libcore/ojluni/src/main/java/sun/net/www/
H A DParseUtil.java451 if (!match(c, lowMask, highMask) && !isEscaped(s, i)) {
486 && match(s.charAt(pos + 1), L_HEX, H_HEX)
487 && match(s.charAt(pos + 2), L_HEX, H_HEX);
519 private static boolean match(char c, long lowMask, long highMask) { method in class:ParseUtil
/libcore/ojluni/src/main/java/java/util/
H A DScanner.java93 * MatchResult result = s.match();
117 * attempt to match the specified pattern with no regard to delimiters in the
349 // Boolean indicating if a match result is available
404 * Fields and an accessor method to match booleans
417 * Fields and methods to match bytes, shorts, ints, and longs
454 * Fields and an accessor method to match line separators
477 * Fields and methods to match floats and doubles
941 // Must look for next delims. Simply attempting to match the
942 // pattern at this point may find a match but it might not be
943 // the first longest match becaus
1308 public MatchResult match() { method in class:Scanner
[all...]
/libcore/ojluni/src/main/java/java/net/
H A DURI.java2552 private static boolean match(char c, long lowMask, long highMask) { method in class:URI
2725 if (!match(c, lowMask, highMask)) {
2930 // whether the chars at the start position match s exactly
3018 && match(charAt(p + 1), L_HEX, H_HEX)
3019 && match(charAt(p + 2), L_HEX, H_HEX)) {
3032 // Scan chars that match the given mask pair
3040 if (match(c, lowMask, highMask)) {
3450 if (l > start && !match(charAt(l), L_ALPHA, H_ALPHA)) {
/libcore/ojluni/src/main/java/java/time/format/
H A DDateTimeFormatterBuilder.java435 * If adjacent parsing is active, then parsing must match exactly the specified
522 * The rightmost characters are output to match the width, left padding with zero.
581 * The rightmost characters are output to match the width, left padding with zero.
749 * year as "JNY", "FBY", "MCH" etc. These do not match the standard set of text
766 * During parsing, the parser will match against the map of text and numeric values.
838 * When parsing in strict mode, the number of parsed digits must match the
976 * During parsing, the text must match a known zone or offset.
980 * expects an offset-based zone and will not match region-based zones.
986 * match a following offset ID, then {@link ZoneOffset#UTC} is selected.
988 * find the longest available match
4095 public String match(CharSequence text, int off, int end) { method in class:DateTimeFormatterBuilder.PrefixTree
4124 public String match(CharSequence text, ParsePosition pos) { method in class:DateTimeFormatterBuilder.PrefixTree
4262 public String match(CharSequence text, ParsePosition pos) { method in class:DateTimeFormatterBuilder.PrefixTree.LENIENT
[all...]

Completed in 366 milliseconds