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

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/expr/
p9.cpp 37 template<bool T> struct selector;
38 template<> struct selector<true> { typedef long type; }; struct
39 template<> struct selector<false> {typedef unsigned long type; }; struct
41 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);
  /external/webkit/Source/JavaScriptCore/profiler/
ProfilerServer.mm 71 [[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(startProfiling) name:@"ProfilerServerStartNotification" object:nil];
72 [[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(stopProfiling) name:@"ProfilerServerStopNotification" object:nil];
81 [[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(startProfiling) name:[_serverName stringByAppendingString:@"-Start"] object:nil];
82 [[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(stopProfiling) name:[_serverName stringByAppendingString:@"-Stop"] object:nil];
  /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) {
  /sdk/monkeyrunner/src/com/android/monkeyrunner/easy/
EasyMonkeyDevice.java 40 * Extends {@link MonkeyDevice} to support looking up views using a 'selector'.
41 * Currently, only identifiers can be used as a selector. All methods on
68 args = { "selector", "type" },
70 "The selector identifying the object.",
76 By selector = getSelector(ap, 0); local
81 touch(selector, type);
84 public void touch(By selector, TouchPressType type) {
85 Point p = getElementCenter(selector);
90 args = { "selector", "text" },
92 "The selector identifying the object."
98 By selector = getSelector(ap, 0); local
117 By selector = getSelector(ap, 0); local
137 By selector = getSelector(ap, 0); local
154 By selector = getSelector(ap, 0); local
171 By selector = getSelector(ap, 0); local
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebElementDictionary.mm 52 static void addLookupKey(NSString *key, SEL selector)
54 CFDictionaryAddValue(lookupTable, key, selector);
81 addLookupKey(WebElementDOMNodeKey, @selector(_domNode));
82 addLookupKey(WebElementFrameKey, @selector(_webFrame));
83 addLookupKey(WebElementImageAltStringKey, @selector(_altDisplayString));
84 addLookupKey(WebElementImageKey, @selector(_image));
85 addLookupKey(WebElementImageRectKey, @selector(_imageRect));
86 addLookupKey(WebElementImageURLKey, @selector(_absoluteImageURL));
87 addLookupKey(WebElementIsSelectedKey, @selector(_isSelected));
88 addLookupKey(WebElementMediaURLKey, @selector(_absoluteMediaURL))
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebPluginContainerPrivate.h 41 - (id)_webPluginContainerCheckIfAllowedToLoadRequest:(NSURLRequest *)Request inFrame:(NSString *)target resultObject:(id)obj selector:(SEL)selector;
  /external/webkit/Tools/DumpRenderTree/mac/
TextInputController.m 69 if (aSelector == @selector(string)
70 || aSelector == @selector(getLength)
71 || aSelector == @selector(attributeNamesAtIndex:)
72 || aSelector == @selector(valueOfAttribute:atIndex:)
73 || aSelector == @selector(addAttribute:value:)
74 || aSelector == @selector(addAttribute:value:from:length:)
75 || aSelector == @selector(addColorAttribute:red:green:blue:alpha:)
76 || aSelector == @selector(addColorAttribute:red:green:blue:alpha:from:length:)
77 || aSelector == @selector(addFontAttribute:fontName:size:)
78 || aSelector == @selector(addFontAttribute:fontName:size:from:length:)
    [all...]
MockGeolocationProvider.mm 57 _timer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(timerFired) userInfo:0 repeats:NO];
71 _timer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(timerFired) userInfo:0 repeats:NO];
79 _timer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(timerFired) userInfo:0 repeats:NO];
NavigationController.m 37 + (BOOL)isSelectorExcludedFromWebScript:(SEL)selector
39 if (selector == @selector(evaluateWebScript:afterBackForwardNavigation:))
44 + (NSString *)webScriptNameForSelector:(SEL)selector
46 if (selector == @selector(evaluateWebScript:afterBackForwardNavigation:))
ObjCPlugin.m 62 + (BOOL)isSelectorExcludedFromWebScript:(SEL)selector
67 + (NSString *)webScriptNameForSelector:(SEL)selector
88 + (BOOL)isSelectorExcludedFromWebScript:(SEL)selector
93 + (NSString *)webScriptNameForSelector:(SEL)selector
138 if (aSelector == @selector(removeBridgeRestrictions:))
141 if (aSelector == @selector(echo:))
144 if (aSelector == @selector(throwIfArgumentIsNotHello:))
152 if (aSelector == @selector(echo:))
155 if (aSelector == @selector(throwIfArgumentIsNotHello:))
179 // let scripts invoke any selector
    [all...]
  /frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
QueryController.java 43 // During a pattern selector search, the recursive pattern search
48 // These help show each selector's search context as it relates to the previous sub selector
49 // matched. When a compound selector fails, it is hard to tell which part of it is failing.
50 // Seeing how a selector is being parsed and which sub selector failed within a long list
122 * Counts the instances of the selector group. The selector must be in the following
126 * @param selector
129 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");
115 selector.addIssuerName((String) null);
123 X509CRLSelector selector = new X509CRLSelector(); local
124 selector.setIssuerNames(new TreeSet() {
  /external/webkit/Source/WebCore/dom/
SelectorNodeList.cpp 61 for (CSSSelector* selector = querySelectorList.first(); selector; selector = CSSSelectorList::next(selector)) {
62 if (selectorChecker.checkSelector(selector, element)) {
  /external/webkit/Tools/WebKitLauncher/
WebKitNightlyEnablerSparkle.m 48 NSString *hostName = objc_msgSend(host, @selector(name));
49 NSPanel *panel = NSGetInformationalAlertPanel([NSString stringWithFormat:@"Would you like to download and install %@ %@ now?", hostName, objc_msgSend(updateItem, @selector(displayVersionString))],
50 [NSString stringWithFormat:@"You are currently running %@ %@.", hostName, objc_msgSend(host, @selector(displayVersion))],
60 [button setAction:@selector(webKitHandleButtonPress:)];
95 // to map the button tag to the corresponding selector
96 SEL selectors[] = { @selector(remindMeLater:), @selector(skipThisVersion:), @selector(installUpdate:) };
97 SEL selector = selectors[[sender tag] + 1];
100 objc_msgSend(delegate, selector, sender)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/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...]
  /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))
  /external/webkit/Source/WebCore/css/
CSSStyleApplyProperty.h 52 void applyInheritValue(CSSPropertyID property, CSSStyleSelector* selector) const
55 propertyValue(property)->applyInheritValue(selector);
58 void applyInitialValue(CSSPropertyID property, CSSStyleSelector* selector) const
61 propertyValue(property)->applyInitialValue(selector);
64 void applyValue(CSSPropertyID property, CSSStyleSelector* selector, CSSValue* value) const
67 propertyValue(property)->applyValue(selector, value);
CSSStyleApplyProperty.cpp 52 virtual void applyInheritValue(CSSStyleSelector* selector) const
55 (*e)->applyInheritValue(selector);
58 virtual void applyInitialValue(CSSStyleSelector* selector) const
61 (*e)->applyInitialValue(selector);
64 virtual void applyValue(CSSStyleSelector* selector, CSSValue* value) const
67 (*e)->applyValue(selector, value);
94 virtual void applyInheritValue(CSSStyleSelector* selector) const
96 (selector->style()->*m_setter)((selector->parentStyle()->*m_getter)());
99 virtual void applyInitialValue(CSSStyleSelector* selector) cons
    [all...]
  /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 )}
  /external/webkit/Examples/NetscapeCocoaPlugin/
MenuHandler.m 52 if (sel == @selector(_openURL:))
55 if (sel == @selector(_disabledItem:))
73 NSMenuItem *item = [[NSMenuItem alloc] initWithTitle:@"Open URL" action:@selector(_openURL:) keyEquivalent:@""];
78 item = [[NSMenuItem alloc] initWithTitle:@"Disabled Item" action:@selector(_disabledItem:) keyEquivalent:@""];
  /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/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/webkit/Source/WebKit/mac/WebCoreSupport/
WebDeviceOrientationClient.mm 72 if ([m_provider respondsToSelector:@selector(setController:)])
73 objc_msgSend(m_provider, @selector(setController:), m_controller);
WebPluginHalterClient.mm 44 return CallUIDelegateReturningBoolean(NO, m_webView, @selector(webView:shouldHaltPlugin:isWindowed:pluginName:), kit(pluginNode), isWindowed, (NSString *)pluginName);
49 return [[m_webView UIDelegate] respondsToSelector:@selector(webView:shouldHaltPlugin:isWindowed:pluginName:)];

Completed in 309 milliseconds

12 3 4 5 6 7 8 91011>>