Searched refs:selector (Results 1 - 25 of 173) sorted by relevance

1234567

/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/tests/yui/
H A Die5mac.css2 .selector {
H A Die5mac.css.min1 /*\*/.selector{color:khaki}/**
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/tests/yui/out/
H A Die5mac.out1 /*\*/.selector{color:khaki}/**
H A Die5mac.out.b1 /*\*/.selector{color:khaki}/**
/external/clang/test/FixIt/
H A Dfixit-multiple-selector-warnings.m18 (void)@selector( compare: );
19 (void)@selector (compare:);
20 (void)@selector( compare:);
21 (void)@selector(compare: );
22 (void)@selector ( compare: );
23 return @selector(compare:);
/external/clang/test/PCH/
H A Dselector-warning.h10 SEL a = @selector(b1ar);
11 a = @selector(b1ar);
12 a = @selector(bar);
13 a = @selector(ok); // expected-warning {{unimplemented selector 'ok'}}
14 a = @selector(ok);
15 a = @selector(NotOK); // expected-warning {{unimplemented selector 'NotOK'}}
16 a = @selector(NotOK);
18 a = @selector(clNotO
[all...]
H A Dobjc_exprs.h9 typedef typeof(@selector(noArgs)) objc_selector_noArgs;
10 typedef typeof(@selector(oneArg:)) objc_selector_oneArg;
11 typedef typeof(@selector(foo:bar:)) objc_selector_twoArg;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509CertStoreSelector.java16 * @deprecated use the classes under org.bouncycastle.cert.selector
41 X509CertStoreSelector selector = (X509CertStoreSelector)super.clone();
43 return selector;
49 * @param selector A <code>X509CertSelector</code> instance.
51 * @exception IllegalArgumentException if selector is null or creation fails.
53 public static X509CertStoreSelector getInstance(X509CertSelector selector) argument
55 if (selector == null)
57 throw new IllegalArgumentException("cannot create from null selector");
60 cs.setAuthorityKeyIdentifier(selector.getAuthorityKeyIdentifier());
61 cs.setBasicConstraints(selector
[all...]
H A DX509StoreSpi.java11 public abstract Collection engineGetMatches(Selector selector); argument
H A DExtendedPKIXParameters.java30 private Selector selector; field in class:ExtendedPKIXParameters
131 selector = _params.selector == null ? null
132 : (Selector) _params.selector.clone();
406 if (selector != null)
408 return (Selector) selector.clone();
428 * @param selector a <code>Selector</code> specifying the constraints on
435 public void setTargetConstraints(Selector selector) argument
437 if (selector != null)
439 this.selector
464 setTargetCertConstraints(CertSelector selector) argument
[all...]
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/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
H A DX509CRLSelectorTest.java179 * Tests if CRLs with any issuers match the selector in the case of
180 * null issuerNames criteria, if specified issuers match the selector,
181 * and if not specified issuer does not match the selector.
184 X509CRLSelector selector = new X509CRLSelector();
192 selector.setIssuers(null);
194 selector.match(crl1) && selector.match(crl2));
199 selector.setIssuers(issuers);
201 selector.match(crl1) && selector
[all...]
H A DX509CertSelectorTest.java453 X509CertSelector selector = new X509CertSelector();
455 selector.setCertificate(null);
458 selector.match(cert_1) && selector.match(cert_2));
459 selector.setCertificate(cert_1);
461 selector.match(cert_1));
463 selector.match(cert_2));
464 selector.setCertificate(cert_2);
466 selector.match(cert_2));
477 X509CertSelector selector
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DSignerInformationStore.java64 * passed in selector. Null if there are no matches.
66 * @param selector to identify a signer
70 SignerId selector)
72 Collection list = getSigners(selector);
100 * @param selector a signer id to select against.
104 SignerId selector)
106 if (selector.getIssuer() != null && selector.getSubjectKeyIdentifier() != null)
110 Collection match1 = getSigners(new SignerId(selector.getIssuer(), selector
69 get( SignerId selector) argument
103 getSigners( SignerId selector) argument
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertStoreSpi.java47 public Collection engineGetCertificates(CertSelector selector) argument
49 if (selector == null) {
55 public Collection engineGetCRLs(CRLSelector selector) argument
57 if (selector == null) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStore.java7 Collection<T> getMatches(Selector<T> 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<T> getMatches(Selector<T> selector) argument
35 if (selector == null)
48 if (selector.match(obj))
/external/clang/test/CXX/expr/
H A Dp9.cpp38 template<bool T> struct selector;
39 template<> struct selector<true> { typedef long type; }; struct
40 template<> struct selector<false> {typedef unsigned long type; }; struct
42 selector<(sizeof(long) > sizeof(unsigned int))>::type &ui_lr = ui_l0;
/external/clang/test/PCH/Inputs/
H A Dchain-selectors1.h10 //(void)@selector(x);
11 (void)@selector(f);
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DX509CRLSelectorTest.java108 X509CRLSelector selector = new X509CRLSelector();
110 selector.addIssuerName("a");
116 selector.addIssuerName((String) null);
124 X509CRLSelector selector = new X509CRLSelector();
125 selector.setIssuerNames(new TreeSet() {
/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/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/clang/test/Index/
H A Dcomplete-at-exprstmt.m19 @selector(add:to:);
25 // CHECK-CC1: {TypedText selector}{LeftParen (}{Placeholder selector}{RightParen )}
32 // CHECK-CC2: {TypedText selector}{LeftParen (}{Placeholder selector}{RightParen )}
36 // CHECK-CC3: NotImplemented:{ResultType SEL}{TypedText @selector}{LeftParen (}{Placeholder selector}{RightParen )}
/external/jetty/src/java/org/eclipse/jetty/io/nio/
H A DSelectorManager.java191 * @return delta The value to add to the selector thread priority.
199 /** Set the selector thread priorty delta.
200 * @param delta The value to add to the selector thread priority.
415 // create a selector;
439 * Select and dispatch tasks found from changes and the selector.
448 final Selector selector=_selector;
450 if (selector == null)
480 key = channel.register(selector,SelectionKey.OP_READ,att);
487 key = channel.register(selector,SelectionKey.OP_CONNECT,att);
495 key = channel.register(selector,SelectionKe
[all...]

Completed in 897 milliseconds

1234567