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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/page/actions/
tap.py 11 def __init__(self, selector=None, text=None, element_function=None,
16 self.selector = selector
41 return (self.element_function is not None or self.selector is not None or
70 tab, code, selector=self.selector, text=self.text,
media_action.py 28 def WaitForEvent(self, tab, selector, event_name, timeout):
29 """Halts media action until the selector's event is fired.
33 selector: Media element selector.
38 self.HasEventCompletedOrError(tab, selector, event_name),
41 def HasEventCompletedOrError(self, tab, selector, event_name):
43 'window.__hasEventCompleted("%s", "%s");' % (selector, event_name)):
page_action_unittest.py 34 selector='#test-1'))
63 'using selector "#test-1"',
66 selector='#test-1'))
71 self._tab, 'function() {}', selector='div', text='foo')
76 self._tab, 'function() {}', selector='div', element_function='foo')
  /external/chromium_org/third_party/libjingle/source/talk/base/
maccocoathreadhelper.mm 53 [NSThread detachNewThreadSelector:@selector(class)
  /external/chromium_org/third_party/webrtc/base/
maccocoathreadhelper.mm 36 [NSThread detachNewThreadSelector:@selector(class)
  /external/clang/test/Index/
complete-at-exprstmt.m 19 @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 )}
  /libcore/luni/src/main/java/java/nio/channels/
SelectableChannel.java 24 * A channel that can be used with a {@link Selector}. The channel must be
25 * registered with a selector by calling one of the {@code register} methods,
27 * from a selector, its selection key must be canceled. This can be done
29 * done implicitly when the channel or the selector is closed.
32 * once for any given selector.
67 * registered with at least one selector.
83 * Indicates whether this channel is registered with at least one selector.
91 * Gets this channel's selection key for the specified selector.
94 * the selector with which this channel has been registered.
98 public abstract SelectionKey keyFor(Selector sel)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.cpp 68 static bool matchesCustomPseudoElement(const Element* element, const CSSSelector& selector)
74 if (element->shadowPseudoId() != selector.value())
128 // * SelectorMatches - the selector matches the element e
129 // * SelectorFailsLocally - the selector fails for the element e
130 // * SelectorFailsAllSiblings - the selector fails for e and any sibling of e
131 // * SelectorFailsCompletely - the selector fails for e and any sibling or ancestor of e
135 // first selector has to match
140 if (context.selector->match() == CSSSelector::PseudoElement) {
141 if (context.selector->isCustomPseudoElement()) {
142 if (!matchesCustomPseudoElement(context.element, *context.selector))
526 const CSSSelector& selector = *context.selector; local
    [all...]
PageRuleCollector.cpp 40 return r1->selector()->specificity() < r2->selector()->specificity();
87 static bool checkPageSelectorComponents(const CSSSelector* selector, bool isLeftPage, bool isFirstPage, const String& pageName)
89 for (const CSSSelector* component = selector; component; component = component->tagHistory()) {
112 if (!checkPageSelectorComponents(rule->selector(), isLeftPage, isFirstPage, pageName))
CSSParserValues.cpp 164 OwnPtr<CSSParserSelector> selector = m_tagHistory.release(); local
166 OwnPtr<CSSParserSelector> next = selector->m_tagHistory.release();
167 toDelete.append(selector.release());
170 selector = next.release();
201 void CSSParserSelector::insertTagHistory(CSSSelector::Relation before, PassOwnPtr<CSSParserSelector> selector, CSSSelector::Relation after)
204 selector->setTagHistory(m_tagHistory.release());
206 selector->setRelation(after);
207 m_tagHistory = selector;
210 void CSSParserSelector::appendTagHistory(CSSSelector::Relation relation, PassOwnPtr<CSSParserSelector> selector)
216 end->setTagHistory(selector);
232 CSSParserSelector* selector = const_cast<CSSParserSelector*>(this); local
    [all...]
CSSStyleRule.cpp 71 for (const CSSSelector* selector = m_styleRule->selectorList().first(); selector; selector = CSSSelectorList::next(*selector)) {
72 if (selector != m_styleRule->selectorList().first())
74 builder.append(selector->selectorText());
  /external/qemu/target-i386/
seg_helper.c 44 int selector)
50 if (selector & 0x4)
54 index = selector & ~7;
85 static inline void load_seg_vm(CPUX86State *env, int seg, int selector)
87 selector &= 0xffff;
88 cpu_x86_load_seg_cache(env, seg, selector,
89 (selector << 4), 0xffff, 0);
118 raise_exception_err(env, EXCP0A_TSS, env->tr.selector & 0xfffc);
129 static void tss_load_seg(CPUX86State *env, int seg_reg, int selector)
134 if ((selector & 0xfffc) != 0)
500 int type, dpl, selector, ss_dpl, cpl; local
726 int type, dpl, selector, cpl, ist; local
849 int selector; local
904 int cpl, selector; local
964 int selector; local
1527 uint32_t e1, e2, cpl, dpl, rpl, selector, offset, param_count; local
2084 uint32_t e1, e2, eflags, selector; local
2128 uint32_t e1, e2, eflags, selector; local
2174 uint32_t e1, e2, eflags, selector; local
2207 uint32_t e1, e2, eflags, selector; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
ExtendedPKIXParameters.java 3 import org.bouncycastle.util.Selector;
28 private Selector selector; field in class:ExtendedPKIXParameters
126 selector = _params.selector == null ? null
127 : (Selector) _params.selector.clone();
379 * <code>Selector</code>. If <code>null</code>, no constraints are
386 * Note that the <code>Selector</code> returned is cloned to protect
389 * @return a <code>Selector</code> specifying the constraints on th
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
SelectorQuery.cpp 106 for (const CSSSelector* selector = selectorList.first(); selector; selector = CSSSelectorList::next(*selector))
112 for (const CSSSelector* selector = selectorList.first(); selector; selector = CSSSelectorList::next(*selector), ++index) {
113 m_selectors.uncheckedAppend(selector);
118 inline bool SelectorDataList::selectorMatches(const CSSSelector& selector, Element& element, const ContainerNode& rootNode) cons
424 const CSSSelector& selector = *m_selectors[0]; local
    [all...]
  /external/chromium_org/third_party/ocmock/OCMock/
OCMIndirectReturnValueProvider.h 11 SEL selector; variable
OCPartialMockObject.h 20 - (void)setupForwarderForSelector:(SEL)selector;
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteDiscoveryRequest.java 28 private static final String KEY_SELECTOR = "selector";
37 * @param selector The route selector that specifies the kinds of routes to discover.
40 public MediaRouteDiscoveryRequest(MediaRouteSelector selector, boolean activeScan) {
41 if (selector == null) {
42 throw new IllegalArgumentException("selector must not be null");
46 mSelector = selector;
47 mBundle.putBundle(KEY_SELECTOR, selector.asBundle());
56 * Gets the route selector that specifies the kinds of routes to discover.
107 result.append("DiscoveryRequest{ selector=").append(getSelector())
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/spi/
AbstractSelectionKey.java 60 ((AbstractSelector) selector()).cancel(this);
AbstractSelectableChannel.java 27 import java.nio.channels.Selector;
53 * the selector provider that creates this channel.
60 * Returns the selector provider that has created this channel.
63 * @return this channel's selector provider.
73 * @return {@code true} if this channel is registered with a selector,
82 * Gets this channel's selection key for the specified selector.
84 * @param selector
85 * the selector with which this channel has been registered.
87 * has not been registered with {@code selector}.
90 synchronized public final SelectionKey keyFor(Selector selector)
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
X509CRLSelectorTest.java 78 X509CRLSelector selector = new X509CRLSelector(); local
81 selector.addIssuerName((String) null);
118 X509CRLSelector selector = new X509CRLSelector(); local
119 selector.setIssuerNames(new TreeSet<Comparable>() {
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteDiscoveryFragment.java 31 * The application must supply a route selector to specify the kinds of routes
37 private final String ARGUMENT_SELECTOR = "selector";
61 * Gets the media route selector for filtering the routes to be discovered.
63 * @return The selector, never null.
71 * Sets the media route selector for filtering the routes to be discovered.
74 * @param selector The selector to set.
76 public void setRouteSelector(MediaRouteSelector selector) {
77 if (selector == null) {
78 throw new IllegalArgumentException("selector must not be null")
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ListViewCompat.java 106 Drawable selector = getSelector(); local
107 if (selector != null && shouldShowSelectorCompat()) {
108 selector.setState(getDrawableState());
122 final Drawable selector = getSelector(); local
123 selector.setBounds(mSelectorRect);
124 selector.draw(canvas);
171 Drawable selector = getSelector(); local
172 if (selector != null && position != INVALID_POSITION) {
173 DrawableCompat.setHotspot(selector, x, y);
178 // If we're changing position, update the visibility since the selector
180 final Drawable selector = getSelector(); local
    [all...]
  /bionic/libc/arch-x86/bionic/
__set_tls.c 69 uint16_t selector = (tls_descriptor.entry_number << 3) | table_indicator | rpl; local
70 __asm__ __volatile__("movw %w0, %%gs" : /*output*/ : "q"(selector) /*input*/ : /*clobber*/);
  /bionic/libc/kernel/uapi/linux/
uvcvideo.h 52 __u8 selector; member in struct:uvc_xu_control_mapping
66 __u8 selector; member in struct:uvc_xu_control_query
  /development/ndk/platforms/android-L/include/linux/
uvcvideo.h 52 __u8 selector; member in struct:uvc_xu_control_mapping
66 __u8 selector; member in struct:uvc_xu_control_query

Completed in 1242 milliseconds

1 23 4 5 6 7 8 91011>>