Searched refs:selector (Results 26 - 50 of 299) sorted by relevance

1234567891011>>

/external/webkit/Tools/WebKitLauncher/
H A DWebKitNightlyEnablerSparkle.m48 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, sende
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DProxySelectorTest.java61 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
[all...]
/external/webkit/Tools/DumpRenderTree/mac/
H A DMockGeolocationProvider.mm57 _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];
H A DNavigationController.m37 + (BOOL)isSelectorExcludedFromWebScript:(SEL)selector
39 if (selector == @selector(evaluateWebScript:afterBackForwardNavigation:))
44 + (NSString *)webScriptNameForSelector:(SEL)selector
46 if (selector == @selector(evaluateWebScript:afterBackForwardNavigation:))
H A DObjCPlugin.m62 + (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...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DCheck.cs53 public static void SourceAndFuncAndSelector ( object source, object func, object selector) argument
59 if (selector == null)
60 throw new ArgumentNullException ("selector");
72 public static void SourceAndSelector (object source, object selector) argument
76 if (selector == null)
77 throw new ArgumentNullException ("selector");
133 public static void SourceAndCollectionSelectors (object source, object collectionSelector, object selector) argument
139 if (selector == null)
140 throw new ArgumentNullException ("selector");
H A DEnumerableExtensions.cs139 static U Iterate<T, U>(IEnumerable<T> source, U initValue, Func<T, U, U> selector) { argument
142 initValue = selector(element, initValue);
166 public static IEnumerable<TResult> Select<TSource, TResult>(IEnumerable<TSource> source, Func<TSource, TResult> selector) { argument
167 Check.SourceAndSelector(source, selector);
169 return CreateSelectIterator(source, selector);
172 static IEnumerable<TResult> CreateSelectIterator<TSource, TResult>(IEnumerable<TSource> source, Func<TSource, TResult> selector) { argument
174 yield return selector(element);
177 public static IEnumerable<TResult> Select<TSource, TResult>(IEnumerable<TSource> source, Func<TSource, int, TResult> selector) { argument
178 Check.SourceAndSelector(source, selector);
180 return CreateSelectIterator(source, selector);
183 CreateSelectIterator(IEnumerable<TSource> source, Func<TSource, int, TResult> selector) argument
195 SelectMany(IEnumerable<TSource> source, Func<TSource, int, IEnumerable<TCollection>> collectionSelector, Func<TSource, TCollection, TResult> selector) argument
202 SelectMany(IEnumerable<TSource> source, Func<TSource, int, IEnumerable<TResult>> selector) argument
208 CreateSelectManyIterator(IEnumerable<TSource> source, Func<TSource, int, IEnumerable<TCollection>> collectionSelector, Func<TSource, TCollection, TResult> selector) argument
216 CreateSelectManyIterator(IEnumerable<TSource> source, Func<TSource, int, IEnumerable<TResult>> selector) argument
235 Sum(IEnumerable<TA> source, Func<TR, TA, TR> selector) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DCertStoreCollectionSpi.java35 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))
34 engineGetCertificates( CertSelector selector) argument
70 engineGetCRLs( CRLSelector selector) argument
/external/webkit/Source/WebCore/css/
H A DCSSStyleApplyProperty.h52 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 argument
67 propertyValue(property)->applyValue(selector, value);
H A DCSSStyleApplyProperty.cpp52 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 argument
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
104 applyValue(CSSStyleSelector* selector, CSSValue* value) const argument
138 applyValue(CSSStyleSelector* selector, CSSValue* value) const argument
162 applyValue(CSSStyleSelector* selector, CSSValue* value) const argument
184 applyValue(CSSStyleSelector* selector, CSSValue* value) const argument
245 applyValue(CSSStyleSelector* selector, CSSValue* value) const argument
[all...]
H A DCSSSegmentedFontFace.h45 static PassRefPtr<CSSSegmentedFontFace> create(CSSFontSelector* selector) { return adoptRef(new CSSSegmentedFontFace(selector)); } argument
/external/clang/test/Index/
H A Dcomplete-at-exprstmt.m19 @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/
H A DMenuHandler.m52 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:@""];
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DExtendedPKIXParameters.java28 private Selector selector; field in class:ExtendedPKIXParameters
126 selector = _params.selector == null ? null
127 : (Selector) _params.selector.clone();
397 if (selector != null)
399 return (Selector) selector.clone();
419 * @param selector a <code>Selector</code> specifying the constraints on
426 public void setTargetConstraints(Selector selector) argument
428 if (selector != null)
430 this.selector
455 setTargetCertConstraints(CertSelector selector) argument
[all...]
H A DX509CRLStoreSelector.java169 * Returns if this selector must match CRLs with the delta CRL indicator
198 * @param selector A <code>X509CRLSelector</code> instance.
200 * @exception IllegalArgumentException if selector is null or creation
203 public static X509CRLStoreSelector getInstance(X509CRLSelector selector) argument
205 if (selector == null)
208 "cannot create from null selector");
211 cs.setCertificateChecking(selector.getCertificateChecking());
212 cs.setDateAndTime(selector.getDateAndTime());
215 cs.setIssuerNames(selector.getIssuerNames());
222 cs.setIssuers(selector
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
H A Djquery-1.3.2.js24 jQuery = window.jQuery = window.$ = function( selector, context ) {
26 return new jQuery.fn.init( selector, context );
32 // Is it a simple selector
36 init: function( selector, context ) {
38 selector = selector || document;
41 if ( selector.nodeType ) {
42 this[0] = selector;
44 this.context = selector;
48 if ( typeof selector
[all...]
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebDeviceOrientationClient.mm72 if ([m_provider respondsToSelector:@selector(setController:)])
73 objc_msgSend(m_provider, @selector(setController:), m_controller);
H A DWebPluginHalterClient.mm44 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:)];
H A DWebChromeClient.mm243 if ([delegate respondsToSelector:@selector(webView:createWebViewWithRequest:windowFeatures:)]) {
275 newWebView = CallUIDelegate(m_webView, @selector(webView:createWebViewWithRequest:windowFeatures:), nil, dictFeatures);
289 } else if (features.dialog && [delegate respondsToSelector:@selector(webView:createWebViewModalDialogWithRequest:)]) {
290 newWebView = CallUIDelegate(m_webView, @selector(webView:createWebViewModalDialogWithRequest:), nil);
292 newWebView = CallUIDelegate(m_webView, @selector(webView:createWebViewWithRequest:), nil);
310 return [[m_webView UIDelegate] respondsToSelector:@selector(webViewRunModal:)];
315 CallUIDelegate(m_webView, @selector(webViewRunModal:));
325 return CallUIDelegateReturningBoolean(NO, m_webView, @selector(webViewAreToolbarsVisible:));
335 return CallUIDelegateReturningBoolean(NO, m_webView, @selector(webViewIsStatusBarVisible:));
434 SEL selector
[all...]
H A DWebGeolocationClient.mm71 SEL selector = @selector(webView:decidePolicyForGeolocationRequestFromOrigin:frame:listener:);
72 if (![[m_webView UIDelegate] respondsToSelector:selector]) {
81 CallUIDelegate(m_webView, selector, webOrigin, kit(frame), listener);
/external/webkit/Source/WebKit2/WebProcess/mac/
H A DFullKeyboardAccessWatcher.mm58 addObserver:self selector:@selector(retrieveKeyboardUIModeFromPreferences:)
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebPluginController.mm98 if ([viewFactory respondsToSelector:@selector(plugInViewWithArguments:)]) {
101 } else if ([viewFactory respondsToSelector:@selector(pluginViewWithArguments:)]) {
149 if ([view respondsToSelector:@selector(webPlugInStop)]) {
152 } else if ([view respondsToSelector:@selector(pluginStop)]) {
160 if ([view respondsToSelector:@selector(webPlugInDestroy)]) {
163 } else if ([view respondsToSelector:@selector(pluginDestroy)]) {
180 if ([aView respondsToSelector:@selector(webPlugInStart)]) {
183 } else if ([aView respondsToSelector:@selector(pluginStart)]) {
252 if ([view respondsToSelector:@selector(webPlugInInitialize)]) {
255 } else if ([view respondsToSelector:@selector(pluginInitializ
[all...]
H A DWebPluginContainerCheck.h55 + (id)checkWithRequest:(NSURLRequest *)request target:(NSString *)target resultObject:(id)obj selector:(SEL)selector controller:(id <WebPluginContainerCheckController>)controller contextInfo:(id)/*optional*/contextInfo;
H A DWebPluginContainerCheck.mm51 - (id)initWithRequest:(NSURLRequest *)request target:(NSString *)target resultObject:(id)obj selector:(SEL)selector controller:(id <WebPluginContainerCheckController>)controller contextInfo:(id)contextInfo /*optional*/
59 _resultSelector = selector;
68 + (id)checkWithRequest:(NSURLRequest *)request target:(NSString *)target resultObject:(id)obj selector:(SEL)selector controller:(id <WebPluginContainerCheckController>)controller contextInfo:(id)contextInfo /*optional*/
70 return [[[self alloc] initWithRequest:request target:target resultObject:obj selector:selector controller:controller contextInfo:contextInfo] autorelease];
132 _listener = [[WebPolicyDecisionListener alloc] _initWithTarget:self action:@selector(_continueWithPolicy:)];
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Ddevicemanager_mac.mm47 selector:@selector(onDevicesChanged:)
51 selector:@selector(onDevicesChanged:)

Completed in 849 milliseconds

1234567891011>>