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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/gtk/website_settings/
permission_selector_observer.h 13 // |selector|.
14 virtual void OnPermissionChanged(PermissionSelector* selector) = 0;
  /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/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 37 // Salt to separate otherwise identical string hashes so a class-selector like .article won't match <article> elements.
112 static inline void collectDescendantSelectorIdentifierHashes(const CSSSelector* selector, unsigned*& hash)
114 switch (selector->m_match) {
116 if (!selector->value().isEmpty())
117 (*hash++) = selector->value().impl()->existingHash() * IdAttributeSalt;
120 if (!selector->value().isEmpty())
121 (*hash++) = selector->value().impl()->existingHash() * ClassAttributeSalt;
124 if (selector->tagQName().localName() != starAtom)
125 (*hash++) = selector->tagQName().localName().impl()->existingHash() * TagNameSalt;
132 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().impl());
42 else if (selector->m_match == CSSSelector::Class)
43 classesInRules.add(selector->value().impl());
44 else if (selector->isAttributeSelector())
45 attrsInRules.add(selector->attribute().localName().impl());
46 switch (selector->pseudoType()) {
58 collectFeaturesFromSelectorList(selector->selectorList());
70 for (const CSSSelector* selector = selectorList->first(); selector; selector = CSSSelectorList::next(selector))
    [all...]
  /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)));
339 const SelectorData& selector = m_selectors[0]; local
421 const CSSSelector* selector = m_selectors[0].selector; local
    [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...]
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
media_action.py 30 def WaitForEvent(self, tab, selector, event_name, timeout,
32 """Halts media action until the selector's event is fired.
36 selector: Media element selector.
41 util.WaitFor(lambda: self.HasEventCompleted(tab, selector, event_name),
44 def HasEventCompleted(self, tab, selector, event_name):
46 'window.__hasEventCompleted("%s", "%s");' % (selector, event_name)
  /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...]
  /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...]

Completed in 1658 milliseconds

1 23 4 5 6 7 8 91011>>