Searched defs:selector (Results 1 - 25 of 98) sorted by relevance

1234

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/
H A DMSOutlookKeyIdCalculator.java1 package org.bouncycastle.cert.selector;
H A DX509CertificateHolderSelector.java1 package org.bouncycastle.cert.selector;
25 * Construct a selector with the value of a public key's subjectKeyId.
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStore.java7 Collection getMatches(Selector selector) argument
H A DCollectionStore.java28 * Return the matches in the collection for the passed in selector.
30 * @param selector the selector to match against.
33 public Collection getMatches(Selector selector) argument
35 if (selector == null)
48 if (selector.match(obj))
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DCertStoreCollectionSpi.java35 CertSelector selector)
41 if (selector == null)
59 if ((obj instanceof Certificate) && selector.match((Certificate)obj))
71 CRLSelector selector)
77 if (selector == null)
95 if ((obj instanceof CRL) && selector.match((CRL)obj))
34 engineGetCertificates( CertSelector selector) argument
70 engineGetCRLs( CRLSelector selector) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509CertStoreSelector.java40 X509CertStoreSelector selector = (X509CertStoreSelector)super.clone();
42 return selector;
48 * @param selector A <code>X509CertSelector</code> instance.
50 * @exception IllegalArgumentException if selector is null or creation fails.
52 public static X509CertStoreSelector getInstance(X509CertSelector selector) argument
54 if (selector == null)
56 throw new IllegalArgumentException("cannot create from null selector");
59 cs.setAuthorityKeyIdentifier(selector.getAuthorityKeyIdentifier());
60 cs.setBasicConstraints(selector.getBasicConstraints());
61 cs.setCertificate(selector
[all...]
H A DX509StoreSpi.java11 public abstract Collection engineGetMatches(Selector selector); argument
H A DX509Store.java75 public Collection getMatches(Selector selector) argument
77 return _spi.engineGetMatches(selector);
H A DX509CRLStoreSelector.java169 * Returns if this selector must match CRLs with the delta CRL indicator
198 * @param selector A <code>X509CRLSelector</code> instance.
200 * @exception IllegalArgumentException if selector is null or creation
203 public static X509CRLStoreSelector getInstance(X509CRLSelector selector) argument
205 if (selector == null)
208 "cannot create from null selector");
211 cs.setCertificateChecking(selector.getCertificateChecking());
212 cs.setDateAndTime(selector.getDateAndTime());
215 cs.setIssuerNames(selector.getIssuerNames());
222 cs.setIssuers(selector
[all...]
/external/webkit/Source/WebCore/css/
H A DCSSSegmentedFontFace.h45 static PassRefPtr<CSSSegmentedFontFace> create(CSSFontSelector* selector) { return adoptRef(new CSSSegmentedFontFace(selector)); } argument
H A DCSSPageRule.cpp42 CSSSelector* selector = selectorList().first(); local
43 if (selector) {
44 String pageSpecification = selector->selectorText();
H A DCSSParserValues.cpp100 CSSParserSelector* selector = m_tagHistory.leakPtr(); local
102 toDelete.append(selector);
103 CSSParserSelector* next = selector->m_tagHistory.leakPtr();
106 selector = next;
H A DCSSSelectorList.cpp54 for (CSSParserSelector* selector = selectorVector[i].get(); selector; selector = selector->tagHistory())
70 OwnPtr<CSSSelector> selector = current->releaseSelector(); local
72 move(selector.release(), &m_selectorArray[arrayIndex]);
118 static bool forEachTagSelector(Functor& functor, CSSSelector* selector) argument
120 ASSERT(selector);
123 if (functor(selector))
125 if (CSSSelectorList* selectorList = selector
149 operator ()(CSSSelector* selector) argument
167 operator ()(CSSSelector* selector) argument
[all...]
H A DCSSStyleApplyProperty.h52 void applyInheritValue(CSSPropertyID property, CSSStyleSelector* selector) const
55 propertyValue(property)->applyInheritValue(selector);
58 void applyInitialValue(CSSPropertyID property, CSSStyleSelector* selector) const
61 propertyValue(property)->applyInitialValue(selector);
64 void applyValue(CSSPropertyID property, CSSStyleSelector* selector, CSSValue* value) const argument
67 propertyValue(property)->applyValue(selector, value);
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertStoreSpi.java48 public Collection engineGetCertificates(CertSelector selector) argument
50 if (selector == null) {
56 public Collection engineGetCRLs(CRLSelector selector) argument
58 if (selector == null) {
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DSignerInformationStore.java40 * passed in selector. Null if there are no matches.
42 * @param selector to identify a signer
46 SignerId selector)
48 Collection list = getSigners(selector);
76 * @param selector a signer id to select against.
80 SignerId selector)
82 if (selector.getIssuer() != null && selector.getSubjectKeyIdentifier() != null)
86 Collection match1 = getSigners(new SignerId(selector.getIssuer(), selector
45 get( SignerId selector) argument
79 getSigners( SignerId selector) argument
[all...]
/external/webkit/Source/WebKit/mac/Panels/
H A DWebAuthenticationPanel.h47 SEL selector; variable
51 -(id)initWithCallback:(id)cb selector:(SEL)sel;
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/spi/
H A DAbstractSelectionKeyTest.java29 * @tests AbstractSelectionKey#isValid() without selector
45 // expected: no selector available
60 public Selector selector() { method in class:AbstractSelectionKeyTest.MockSelectionKey
/external/clang/test/CXX/expr/
H A Dp9.cpp37 template<bool T> struct selector;
38 template<> struct selector<true> { typedef long type; }; struct
39 template<> struct selector<false> {typedef unsigned long type; }; struct
41 selector<(sizeof(long) > sizeof(unsigned int))>::type &ui_lr = ui_l0;
/external/webkit/Source/WebCore/svg/
H A DSVGFEDisplacementMapElement.cpp101 ChannelSelectorType selector = static_cast<ChannelSelectorType>(xChannelSelector()); local
102 if (CHANNEL_UNKNOWN > selector || selector > CHANNEL_A)
106 ChannelSelectorType selector = static_cast<ChannelSelectorType>(yChannelSelector()); local
107 if (CHANNEL_UNKNOWN > selector || selector > CHANNEL_A)
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DCheck.cs53 public static void SourceAndFuncAndSelector ( object source, object func, object selector) argument
59 if (selector == null)
60 throw new ArgumentNullException ("selector");
72 public static void SourceAndSelector (object source, object selector) argument
76 if (selector == null)
77 throw new ArgumentNullException ("selector");
133 public static void SourceAndCollectionSelectors (object source, object collectionSelector, object selector) argument
139 if (selector == null)
140 throw new ArgumentNullException ("selector");
H A DEnumerableExtensions.cs139 static U Iterate<T, U>(IEnumerable<T> source, U initValue, Func<T, U, U> selector) { argument
142 initValue = selector(element, initValue);
166 public static IEnumerable<TResult> Select<TSource, TResult>(IEnumerable<TSource> source, Func<TSource, TResult> selector) { argument
167 Check.SourceAndSelector(source, selector);
169 return CreateSelectIterator(source, selector);
172 static IEnumerable<TResult> CreateSelectIterator<TSource, TResult>(IEnumerable<TSource> source, Func<TSource, TResult> selector) { argument
174 yield return selector(element);
177 public static IEnumerable<TResult> Select<TSource, TResult>(IEnumerable<TSource> source, Func<TSource, int, TResult> selector) { argument
178 Check.SourceAndSelector(source, selector);
180 return CreateSelectIterator(source, selector);
183 CreateSelectIterator(IEnumerable<TSource> source, Func<TSource, int, TResult> selector) argument
195 SelectMany(IEnumerable<TSource> source, Func<TSource, int, IEnumerable<TCollection>> collectionSelector, Func<TSource, TCollection, TResult> selector) argument
202 SelectMany(IEnumerable<TSource> source, Func<TSource, int, IEnumerable<TResult>> selector) argument
208 CreateSelectManyIterator(IEnumerable<TSource> source, Func<TSource, int, IEnumerable<TCollection>> collectionSelector, Func<TSource, TCollection, TResult> selector) argument
216 CreateSelectManyIterator(IEnumerable<TSource> source, Func<TSource, int, IEnumerable<TResult>> selector) argument
235 Sum(IEnumerable<TA> source, Func<TR, TA, TR> selector) argument
[all...]
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
H A DSelectionKeyTest.java36 Selector selector; field in class:SelectionKeyTest
46 selector = Selector.open();
49 selectionKey = sc.register(selector, SelectionKey.OP_CONNECT);
55 selector.close();
56 selector = null;
91 public Selector selector() { method in class:SelectionKeyTest.MockSelectionKey
198 selector.close();
304 selector.select();
314 * @tests java.nio.channels.SelectionKey#selector()
317 assertSame(selector, selectionKe
[all...]
/external/openssl/crypto/asn1/
H A Dtasn_utl.c73 * the selector value
83 * the selector value, return old value.
216 /* Handle ANY DEFINED BY template, find the selector, look up
225 long selector; local
234 /* Get the selector field */
250 selector = OBJ_obj2nid((ASN1_OBJECT *)*sfld);
252 selector = ASN1_INTEGER_get((ASN1_INTEGER *)*sfld);
263 if (atbl->value == selector)
/external/webkit/Source/WebCore/bridge/objc/
H A Dobjc_runtime.h65 bool isFallbackMethod() const { return _selector == @selector(invokeUndefinedMethodFromWebScript:withArguments:); }
69 SEL selector() const { return _selector; } function in class:JSC::Bindings::ObjcMethod

Completed in 486 milliseconds

1234