HomeSort by relevance Sort by last modified time
    Searched full:selector (Results 76 - 100 of 2596) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/opt/mailcommon/res/color/
text_color_primary_invertible.xml 3 <selector xmlns:android="http://schemas.android.com/apk/res/android">
10 </selector>
  /hardware/ti/wpan/tools/FM/FmRxApp/res/drawable/
btn_bgd.xml 2 <selector xmlns:android="http://schemas.android.com/apk/res/android">
8 </selector>
seek_down_bgd.xml 2 <selector xmlns:android="http://schemas.android.com/apk/res/android">
8 </selector>
seek_up_bgd.xml 2 <selector xmlns:android="http://schemas.android.com/apk/res/android">
8 </selector>
  /packages/apps/Camera2/res/drawable/
transparent_button_background.xml 2 <selector xmlns:android="http://schemas.android.com/apk/res/android">
6 </selector
  /packages/apps/Camera2/res/drawable-v19/
transparent_button_background.xml 2 <selector xmlns:android="http://schemas.android.com/apk/res/android">
6 </selector
  /packages/apps/Gallery2/res/drawable/
filtershow_button_background.xml 2 <selector xmlns:android="http://schemas.android.com/apk/res/android">
8 </selector
transparent_button_background.xml 2 <selector xmlns:android="http://schemas.android.com/apk/res/android">
6 </selector
  /packages/apps/Gallery2/res/drawable-v19/
filtershow_button_background.xml 2 <selector xmlns:android="http://schemas.android.com/apk/res/android">
8 </selector
transparent_button_background.xml 2 <selector xmlns:android="http://schemas.android.com/apk/res/android">
6 </selector
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
click_element.py 11 def _EscapeSelector(selector):
12 return selector.replace('\'', '\\\'')
20 if hasattr(self, 'selector'):
21 code = ('document.querySelector(\'' + _EscapeSelector(self.selector) +
27 'Cannot find element with selector ' + self.selector)
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)):
  /external/chromium_org/third_party/WebKit/Source/core/dom/
SelectorQuery.cpp 134 for (const CSSSelector* selector = selectorList.first(); selector; selector = CSSSelectorList::next(selector))
138 for (const CSSSelector* selector = selectorList.first(); selector; selector = CSSSelectorList::next(selector))
139 m_selectors.uncheckedAppend(SelectorData(selector, SelectorCheckerFastPath::canUse(selector)));
347 const SelectorData& selector = m_selectors[0]; local
430 const CSSSelector* selector = m_selectors[0].selector; local
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_strip_model_observer_bridge.mm 27 @selector(insertTabWithContents:atIndex:inForeground:)]) {
38 @selector(tabClosingWithContents:atIndex:)]) {
46 @selector(tabDetachedWithContents:atIndex:)]) {
57 @selector(selectTabWithContents:previousContents:atIndex:
70 @selector(tabMovedWithContents:fromIndex:toIndex:)]) {
81 @selector(tabChangedWithContents:atIndex:changeType:)]) {
94 @selector(tabReplacedWithContents:previousContents:atIndex:)]) {
106 @selector(tabMiniStateChangedWithContents:atIndex:)]) {
112 if ([controller_ respondsToSelector:@selector(tabStripEmpty)])
117 if ([controller_ respondsToSelector:@selector(tabStripModelDeleted)]
    [all...]
  /external/clang/test/SemaObjC/
selector-3.m 17 a = @selector(b1ar); // expected-warning {{creating selector for nonexistent method 'b1ar'}}
18 b = @selector(bar);
28 return @selector(length); // expected-warning {{creating selector for nonexistent method 'length'}}
49 if ([_delegate respondsToSelector:@selector(pauseManagerDidPause:)])
72 if( [cnx respondsToSelector:MySelector(@selector( _setQueue: ))] ) // expected-warning {{creating selector for nonexistent method '_setQueue:'}}
76 if( [cnx respondsToSelector:@selector( _setQueueXX: )] ) // No warning here.
79 if( [cnx respondsToSelector:(@selector( _setQueueXX: ))] ) // No warning here
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
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->m_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...]
RuleFeature.cpp 38 void RuleFeatureSet::collectFeaturesFromSelector(const CSSSelector* selector)
40 if (selector->m_match == CSSSelector::Id)
41 idsInRules.add(selector->value());
42 else if (selector->m_match == CSSSelector::Class)
43 classesInRules.add(selector->value());
44 else if (selector->isAttributeSelector())
45 attrsInRules.add(selector->attribute().localName());
46 switch (selector->pseudoType()) {
52 collectFeaturesFromSelectorList(selector->selectorList());
64 for (const CSSSelector* selector = selectorList->first(); selector; selector = CSSSelectorList::next(selector))
    [all...]
RuleSet.cpp 51 static inline bool isSelectorMatchingHTMLBasedOnRuleHash(const CSSSelector* selector)
53 ASSERT(selector);
54 if (selector->m_match == CSSSelector::Tag) {
55 const AtomicString& selectorNamespace = selector->tagQName().namespaceURI();
58 if (selector->relation() == CSSSelector::SubSelector)
59 return isSelectorMatchingHTMLBasedOnRuleHash(selector->tagHistory());
62 if (SelectorChecker::isCommonPseudoClassSelector(selector))
64 return selector->m_match == CSSSelector::Id || selector->m_match == CSSSelector::Class;
67 static inline bool selectorListContainsUncommonAttributeSelector(const CSSSelector* selector)
    [all...]
  /external/smack/src/org/xbill/DNS/
TLSARecord.java 27 public static class Selector {
28 private Selector() {}
57 private int selector; field in class:TLSARecord
72 * @param selector The part of the TLS certificate presented by the server
80 int certificateUsage, int selector, int matchingType,
85 this.selector = checkU8("selector", selector);
96 selector = in.readU8();
104 selector = st.getUInt8()
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
UnixSelectorTest.java 23 import java.nio.channels.Selector;
62 Selector sel0 = Selector.open();
63 Selector sel1 = Selector.open();
78 Selector sel2 = Selector.open();
95 Selector sel3 = Selector.open();
100 // even the channel is not connected, the selector could be writabl
    [all...]
  /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/chrome/browser/ui/cocoa/
rwhvm_editcommand_helper.mm 116 // _cmd - the selector that fired.
119 // The selector is translated into an edit comand and then forwarded down the
146 // Maps an objc-selector to a core command name.
148 // Returns the core command name (which is the selector name with the trailing
155 NSString* RWHVMEditCommandHelper::CommandNameForSelector(SEL selector) {
156 if (selector == @selector(insertParagraphSeparator:) ||
157 selector == @selector(insertNewlineIgnoringFieldEditor:))
159 if (selector == @selector(insertTabIgnoringFieldEditor:)
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_mac_editcommand_helper.mm 118 // _cmd - the selector that fired.
121 // The selector is translated into an edit comand and then forwarded down the
150 // Maps an objc-selector to a core command name.
152 // Returns the core command name (which is the selector name with the trailing
160 SEL selector) {
161 if (selector == @selector(insertParagraphSeparator:) ||
162 selector == @selector(insertNewlineIgnoringFieldEditor:))
164 if (selector == @selector(insertTabIgnoringFieldEditor:)
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
ucnvsel.h 32 * A converter selector is built with a set of encoding/charset names
36 * A converter selector can be serialized into a buffer and reopened
42 * The selector data structure
49 * Open a selector.
58 * If 0, builds a selector for all available converters.
66 * @return the new selector
76 * Closes a selector.
79 * but should never be used after the selector is closed.
84 * @param sel selector to close
111 * Open a selector from its serialized form
    [all...]
  /external/icu4c/common/unicode/
ucnvsel.h 35 * A converter selector is built with a set of encoding/charset names
39 * A converter selector can be serialized into a buffer and reopened
45 * The selector data structure
52 * Open a selector.
61 * If 0, builds a selector for all available converters.
69 * @return the new selector
79 * Closes a selector.
82 * but should never be used after the selector is closed.
87 * @param sel selector to close
114 * Open a selector from its serialized form
    [all...]

Completed in 339 milliseconds

1 2 34 5 6 7 8 91011>>