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

1234567

/external/chromium_org/third_party/ocmock/OCMock/
H A DOCMIndirectReturnValueProvider.h11 SEL selector; variable
/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 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/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DSelectRuleFeatureSet.cpp41 void SelectRuleFeatureSet::collectFeaturesFromSelector(const CSSSelector& selector) argument
43 for (const CSSSelector* current = &selector; current; current = current->tagHistory()) {
50 for (const CSSSelector* selector = current->selectorList()->first(); selector; selector = CSSSelectorList::next(*selector))
51 collectFeaturesFromSelector(*selector);
/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/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/chromium_org/chrome/browser/ui/webui/options/
H A Dcertificate_manager_browsertest.cc60 void ClickElement(const std::string& selector) { argument
63 "document.querySelector(\"" + selector + "\").click()"));
66 bool HasElement(const std::string& selector) { argument
71 " !!document.querySelector('" + selector + "'));",
H A Dclear_browser_data_browsertest.cc17 void ClickElement(const std::string& selector) { argument
19 ASSERT_NO_FATAL_FAILURE(GetElementEnabledState(selector, &element_enabled));
23 "document.querySelector('" + selector + "').click();"));
26 bool IsElementEnabled(const std::string& selector) { argument
28 GetElementEnabledState(selector, &element_enabled);
34 const std::string& selector,
39 selector + "').disabled);",
33 GetElementEnabledState( const std::string& selector, bool* enabled) argument
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSSegmentedFontFace.h49 static PassRefPtrWillBeRawPtr<CSSSegmentedFontFace> create(CSSFontSelector* selector, FontTraits traits) argument
51 return adoptRefWillBeNoop(new CSSSegmentedFontFace(selector, traits));
H A DCSSPageRule.cpp60 const CSSSelector* selector = m_pageRule->selector(); local
61 if (selector) {
62 String pageSpecification = selector->selectorText();
H A DPageRuleCollector.cpp40 return r1->selector()->specificity() < r2->selector()->specificity();
87 static bool checkPageSelectorComponents(const CSSSelector* selector, bool isLeftPage, bool isFirstPage, const String& pageName) argument
89 for (const CSSSelector* component = selector; component; component = component->tagHistory()) {
112 if (!checkPageSelectorComponents(rule->selector(), isLeftPage, isFirstPage, pageName))
H A DSelectorFilter.cpp36 // Salt to separate otherwise identical string hashes so a class-selector like .article won't match <article> elements.
111 static inline void collectDescendantSelectorIdentifierHashes(const CSSSelector& selector, unsigned*& hash) argument
113 switch (selector.match()) {
115 if (!selector.value().isEmpty())
116 (*hash++) = selector.value().impl()->existingHash() * IdAttributeSalt;
119 if (!selector.value().isEmpty())
120 (*hash++) = selector.value().impl()->existingHash() * ClassAttributeSalt;
123 if (selector.tagQName().localName() != starAtom)
124 (*hash++) = selector.tagQName().localName().impl()->existingHash() * TagNameSalt;
131 void SelectorFilter::collectIdentifierHashes(const CSSSelector& selector, unsigne argument
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCStatsRequestImpl.cpp34 RTCStatsRequestImpl* RTCStatsRequestImpl::create(ExecutionContext* context, RTCPeerConnection* requester, RTCStatsCallback* callback, MediaStreamTrack* selector) argument
36 RTCStatsRequestImpl* request = new RTCStatsRequestImpl(context, requester, callback, selector);
41 RTCStatsRequestImpl::RTCStatsRequestImpl(ExecutionContext* context, RTCPeerConnection* requester, RTCStatsCallback* callback, MediaStreamTrack* selector) argument
44 , m_component(selector ? selector->component() : 0)
/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/chromium_org/third_party/WebKit/Source/core/dom/
H A DCSSSelectorWatch.cpp92 const String& selector = removedSelectors[i]; local
93 if (!m_matchingCallbackSelectors.remove(selector))
98 if (m_addedSelectors.contains(selector))
99 m_addedSelectors.remove(selector);
101 m_removedSelectors.add(selector);
105 const String& selector = addedSelectors[i]; local
106 HashCountedSet<String>::AddResult result = m_matchingCallbackSelectors.add(selector);
111 if (m_removedSelectors.contains(selector))
112 m_removedSelectors.remove(selector);
114 m_addedSelectors.add(selector);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLContentElement.cpp82 static inline bool includesDisallowedPseudoClass(const CSSSelector& selector) argument
84 if (selector.pseudoType() == CSSSelector::PseudoNot) {
85 const CSSSelector* subSelector = selector.selectorList()->first();
88 return selector.match() == CSSSelector::PseudoClass;
103 for (const CSSSelector* selector = m_selectorList.first(); selector; selector = m_selectorList.next(*selector)) {
104 if (!selector->isCompound())
108 for (const CSSSelector* subSelector = selector; subSelecto
116 checkOneSelector(const CSSSelector& selector, const WillBeHeapVector<RawPtrWillBeMember<Node>, 32>& siblings, int nth) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediamessages.h72 const StreamSelector& selector, StreamParams* stream);
74 const StreamSelector& selector, StreamParams* stream);
76 const StreamSelector& selector, StreamParams* stream);
82 bool RemoveAudioStream(const StreamSelector& selector);
83 bool RemoveVideoStream(const StreamSelector& selector);
84 bool RemoveDataStream(const StreamSelector& selector);
98 StaticVideoView(const StreamSelector& selector, argument
100 : selector(selector),
107 StreamSelector selector; member in struct:cricket::StaticVideoView
[all...]
/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...]

Completed in 4760 milliseconds

1234567