HomeSort by relevance Sort by last modified time
    Searched refs:selector (Results 26 - 50 of 525) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/components/test/data/password_manager/
websitetest.py 74 def Click(self, selector):
78 selector: The element CSS selector.
80 logging.info("action: Click %s" % selector)
81 element = self.driver.find_element_by_css_selector(selector)
84 def ClickIfClickable(self, selector):
92 selector: The element CSS selector.
98 logging.info("action: ClickIfVisible %s" % selector)
100 element = self.driver.find_element_by_css_selector(selector)
    [all...]
  /external/clang/test/PCH/
objc_exprs.h 9 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/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
MyCertStoreSpi.java 47 public Collection engineGetCertificates(CertSelector selector)
49 if (selector == null) {
55 public Collection engineGetCRLs(CRLSelector selector)
57 if (selector == null) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509StoreSpi.java 3 import org.bouncycastle.util.Selector;
11 public abstract Collection engineGetMatches(Selector selector);
  /external/chromium-trace/trace-viewer/src/ui/
mouse_mode_selector.css 6 .mouse-mode-selector {
25 .mouse-mode-selector .drag-handle {
35 .mouse-mode-selector .pan-scan-mode-button {
40 .mouse-mode-selector .pan-scan-mode-button.active {
44 .mouse-mode-selector .selection-mode-button {
49 .mouse-mode-selector .selection-mode-button.active {
53 .mouse-mode-selector .zoom-mode-button {
59 .mouse-mode-selector .zoom-mode-button.active {
  /external/chromium_org/third_party/WebKit/public/web/
WebSelector.h 48 // Returns the value that would be returned from CSSStyleRule.selectorText in the CSSOM for a rule with this selector (which can be a list), if the selector is valid and each component in the list has the type specified in |restriction|.
49 // Returns "" for an invalid selector or a selector that doesn't match the restrictions.
51 BLINK_EXPORT WebString canonicalizeSelector(WebString selector, WebSelectorType restriction = WebSelectorTypeComplex);
  /external/clang/test/CXX/expr/
p9.cpp 38 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/
chain-selectors1.h 10 //(void)@selector(x);
11 (void)@selector(f);
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertStoreSpi.java 51 public Collection<Certificate> engineGetCertificates(CertSelector selector)
53 if (selector == null) {
59 public Collection<CRL> engineGetCRLs(CRLSelector selector)
61 if (selector == null) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
RuleFeature.cpp 45 static bool isSkippableComponentForInvalidation(const CSSSelector& selector)
47 if (selector.match() == CSSSelector::Tag
48 || selector.match() == CSSSelector::Id
49 || selector.isAttributeSelector())
51 if (selector.match() == CSSSelector::PseudoElement) {
52 switch (selector.pseudoType()) {
59 return selector.isCustomPseudoElement();
62 if (selector.match() != CSSSelector::PseudoClass)
64 switch (selector.pseudoType()) {
120 RuleFeatureSet::InvalidationSetMode RuleFeatureSet::invalidationSetModeForSelector(const CSSSelector& selector)
    [all...]
RuleSet.cpp 54 static inline bool isSelectorMatchingHTMLBasedOnRuleHash(const CSSSelector& selector)
56 if (selector.match() == CSSSelector::Tag) {
57 const AtomicString& selectorNamespace = selector.tagQName().namespaceURI();
60 if (selector.relation() == CSSSelector::SubSelector) {
61 ASSERT(selector.tagHistory());
62 return isSelectorMatchingHTMLBasedOnRuleHash(*selector.tagHistory());
66 if (SelectorChecker::isCommonPseudoClassSelector(selector))
68 return selector.match() == CSSSelector::Id || selector.match() == CSSSelector::Class;
71 static inline bool selectorListContainsUncommonAttributeSelector(const CSSSelector* selector)
    [all...]
SelectorFilter.cpp 36 // 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)
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, unsigned* identifierHashes, unsigned maximumIdentifierCount
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
page_action.py 35 tab, callback_js, selector=None, text=None, element_function=None,
39 The element may be selected via selector, text, or element_function.
58 selector: A CSS selector describing the element.
71 if selector is not None:
73 info_msg = 'using selector "%s"' % _EscapeSelector(selector)
75 selector)
115 def _EscapeSelector(selector):
116 return selector.replace('\'', '\\\''
    [all...]
play.py 7 Media elements can be specified by a selector attribute. If no selector is
9 element on the page. A selector can also be 'all' to play all media elements.
31 selector = self.selector if hasattr(self, 'selector') else ''
32 tab.ExecuteJavaScript('window.__playMedia("%s");' % selector)
36 self.WaitForEvent(tab, selector, 'playing', timeout)
39 self.WaitForEvent(tab, selector, 'ended', timeout)
42 'selector = %s.' % selector
    [all...]
media_action.js 7 window.__findMediaElements = function(selector) {
8 // Returns elements matching the selector, otherwise returns the first video
10 // If selector == 'all', returns all media elements.
11 if (selector == 'all') {
13 } else if (selector) {
14 return document.querySelectorAll(selector);
26 console.error('Could not find any media elements matching: ' + selector);
30 window.__hasEventCompleted = function(selector, event_name) {
31 // Return true if the event_name fired for media satisfying the selector.
32 var mediaElements = window.__findMediaElements(selector);
    [all...]
seek.py 9 - selector: If no selector is defined then the action attempts to seek the first
35 selector = self.selector if hasattr(self, 'selector') else ''
39 (selector, self.seek_time, log_seek, seek_label))
43 self.WaitForEvent(tab, selector, 'seeked', timeout)
46 'selector = %s.' % selector)
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteChooserDialogFragment.java 33 private final String ARGUMENT_SELECTOR = "selector";
48 * Gets the media route selector for filtering the routes that the user can select.
50 * @return The selector, never null.
70 * Sets the media route selector for filtering the routes that the user can select.
73 * @param selector The selector to set.
75 public void setRouteSelector(MediaRouteSelector selector) {
76 if (selector == null) {
77 throw new IllegalArgumentException("selector must not be null");
81 if (!mSelector.equals(selector)) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CSSSelectorWatch.cpp 92 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/libjingle/source/talk/session/media/
mediamessages.h 72 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,
100 : selector(selector),
107 StreamSelector selector; member in struct:cricket::StaticVideoView
    [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
QueryController.java 42 // During a pattern selector search, the recursive pattern search
47 // These help show each selector's search context as it relates to the previous sub selector
48 // matched. When a compound selector fails, it is hard to tell which part of it is failing.
49 // Seeing how a selector is being parsed and which sub selector failed within a long list
120 * Counts the instances of the selector group. The selector must be in the following
124 * @param selector
127 public int getPatternCount(UiSelector selector) {
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
X509CRLSelectorTest.java 108 X509CRLSelector selector = new X509CRLSelector(); local
110 selector.addIssuerName("a");
116 selector.addIssuerName((String) null);
124 X509CRLSelector selector = new X509CRLSelector(); local
125 selector.setIssuerNames(new TreeSet() {
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCStatsRequestImpl.cpp 35 PassRefPtr<RTCStatsRequestImpl> RTCStatsRequestImpl::create(ExecutionContext* context, PassRefPtrWillBeRawPtr<RTCPeerConnection> requester, PassOwnPtr<RTCStatsCallback> callback, PassRefPtr<MediaStreamTrack> selector)
37 RefPtr<RTCStatsRequestImpl> request = adoptRef(new RTCStatsRequestImpl(context, requester, callback, selector));
42 RTCStatsRequestImpl::RTCStatsRequestImpl(ExecutionContext* context, PassRefPtrWillBeRawPtr<RTCPeerConnection> requester, PassOwnPtr<RTCStatsCallback> callback, PassRefPtr<MediaStreamTrack> selector)
45 , m_component(selector ? selector->component() : 0)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
ProxySelectorTest.java 61 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.select(ftpUri)
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteSelector.java 43 * router.addCallback(selector, callback, MediaRouter.CALLBACK_FLAG_REQUEST_DISCOVERY);
53 * An empty media route selector that will not match any routes.
63 * Gets the list of {@link MediaControlIntent media control categories} in the selector.
82 * Returns true if the selector contains the specified category.
101 * Returns true if the selector matches at least one of the specified control filters.
128 * Returns true if this selector contains all of the capabilities described
129 * by the specified selector.
131 * @param selector The selector to be examined.
132 * @return True if this selector contains all of the capabilities describe
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertStoreCollectionSpi.java 35 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))

Completed in 880 milliseconds

12 3 4 5 6 7 8 91011>>