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

123

/external/bouncycastle/src/main/java/org/bouncycastle/util/
H A DStore.java7 Collection getMatches(Selector selector) argument
/external/bouncycastle/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/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...]
H A DExtendedPKIXParameters.java28 private Selector selector; field in class:ExtendedPKIXParameters
126 selector = _params.selector == null ? null
127 : (Selector) _params.selector.clone();
397 if (selector != null)
399 return (Selector) selector.clone();
419 * @param selector a <code>Selector</code> specifying the constraints on
426 public void setTargetConstraints(Selector selector) argument
428 if (selector != null)
430 this.selector
455 setTargetCertConstraints(CertSelector selector) argument
[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);
H A DCSSParserValues.h121 void setTagHistory(PassOwnPtr<CSSParserSelector> selector) { m_tagHistory = selector; } argument
H A DCSSStyleApplyProperty.cpp52 virtual void applyInheritValue(CSSStyleSelector* selector) const
55 (*e)->applyInheritValue(selector);
58 virtual void applyInitialValue(CSSStyleSelector* selector) const
61 (*e)->applyInitialValue(selector);
64 virtual void applyValue(CSSStyleSelector* selector, CSSValue* value) const argument
67 (*e)->applyValue(selector, value);
94 virtual void applyInheritValue(CSSStyleSelector* selector) const
96 (selector->style()->*m_setter)((selector->parentStyle()->*m_getter)());
99 virtual void applyInitialValue(CSSStyleSelector* selector) cons
104 applyValue(CSSStyleSelector* selector, CSSValue* value) const argument
138 applyValue(CSSStyleSelector* selector, CSSValue* value) const argument
162 applyValue(CSSStyleSelector* selector, CSSValue* value) const argument
184 applyValue(CSSStyleSelector* selector, CSSValue* value) const argument
245 applyValue(CSSStyleSelector* selector, CSSValue* value) const argument
[all...]
/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/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/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...]
H A DSelectorTest.java50 Selector selector; field in class:SelectorTest
65 selector = Selector.open();
75 selector.close();
86 assertNotNull(selector);
93 assertTrue(selector.isOpen());
94 selector.close();
95 assertFalse(selector.isOpen());
103 assertNotNull(selector.provider());
104 assertSame(SelectorProvider.provider(), selector.provider());
111 SelectionKey key = ssc.register(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
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DProxySelectorTest.java61 private ProxySelector selector = ProxySelector.getDefault(); field in class:ProxySelectorTest
113 proxyList = selector.select(httpUri);
129 proxyList = selector.select(httpUri);
132 proxyList = selector.select(httpsUri);
135 proxyList = selector.select(ftpUri);
138 proxyList = selector.select(tcpUri);
154 proxyList = selector.select(httpUri);
170 proxyList = selector.select(httpUri);
174 proxyList = selector.select(httpsUri);
178 proxyList = selector
[all...]
/external/libyuv/files/source/
H A Dformat_conversion.cc29 uint8* dst_bayer, uint32 selector, int pix) {
33 movd xmm7, [esp + 12] // selector
54 uint32 selector, int pix) {
69 : "r"(selector) // %3
76 uint8* dst_bayer, uint32 selector, int pix) {
77 int index0 = selector & 0xff;
78 int index1 = (selector >> 8) & 0xff;
91 // generate a selector mask useful for pshufb
110 uint8* dst_bayer, uint32 selector, int pix);
28 ARGBToBayerRow_SSSE3(const uint8* src_argb, uint8* dst_bayer, uint32 selector, int pix) argument
75 ARGBToBayerRow_C(const uint8* src_argb, uint8* dst_bayer, uint32 selector, int pix) argument

Completed in 1036 milliseconds

123