HomeSort by relevance Sort by last modified time
    Searched refs:selector (Results 126 - 150 of 411) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebCore/bridge/objc/
objc_class.mm 119 // See if the class wants to exclude the selector from visibility in JavaScript.
120 if ([thisClass respondsToSelector:@selector(isSelectorExcludedFromWebScript:)])
124 // See if the class want to provide a different name for the selector in JavaScript.
127 if ([thisClass respondsToSelector:@selector(webScriptNameForSelector:)])
171 // See if the class wants to exclude the selector from visibility in JavaScript.
172 if ([thisClass respondsToSelector:@selector(isKeyExcludedFromWebScript:)])
176 // See if the class want to provide a different name for the selector in JavaScript.
180 if ([thisClass respondsToSelector:@selector(webScriptNameForKey:)])
212 // See if the class wants to exclude the selector from visibility in JavaScript.
213 if ([thisClass respondsToSelector:@selector(isKeyExcludedFromWebScript:)]
    [all...]
objc_runtime.mm 60 ObjcMethod::ObjcMethod(ClassStructPtr aClass, SEL selector)
62 , _selector(selector)
150 if (![_array.get() respondsToSelector:@selector(insertObject:atIndex:)]) {
237 if ([targetObject respondsToSelector:@selector(invokeUndefinedMethodFromWebScript:withArguments:)]){
239 OwnPtr<ObjcMethod> fallbackMethod(new ObjcMethod(objcClass->isa(), @selector(invokeUndefinedMethodFromWebScript:withArguments:)));
254 if (![targetObject respondsToSelector:@selector(invokeUndefinedMethodFromWebScript:withArguments:)])
274 if ([targetObject respondsToSelector:@selector(invokeUndefinedMethodFromWebScript:withArguments:)])
objc_instance.mm 127 if ([_instance.get() respondsToSelector:@selector(finalizeForWebScript)])
128 [_instance.get() performSelector:@selector(finalizeForWebScript)];
174 return [_instance.get() respondsToSelector:@selector(invokeDefaultMethodWithArguments:)];
228 [invocation setSelector:method->selector()];
340 if (![_instance.get() respondsToSelector:@selector(invokeDefaultMethodWithArguments:)])
343 NSMethodSignature* signature = [_instance.get() methodSignatureForSelector:@selector(invokeDefaultMethodWithArguments:)];
345 [invocation setSelector:@selector(invokeDefaultMethodWithArguments:)];
386 if (![targetObject respondsToSelector:@selector(setValue:forUndefinedKey:)])
394 if ([targetObject respondsToSelector:@selector(setValue:forUndefinedKey:)]){
422 if ([targetObject respondsToSelector:@selector(valueForUndefinedKey:)])
    [all...]
objc_runtime.h 65 bool isFallbackMethod() const { return _selector == @selector(invokeUndefinedMethodFromWebScript:withArguments:); }
69 SEL selector() const { return _selector; } function in class:JSC::Bindings::ObjcMethod
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/
SelectorKernel.java 140 // Wake up the selector so it can reinitialize its
148 // SelectionKeys are dangerous outside the selector thread
190 * Used internally by the endpoints to wakeup the selector
219 * messing with the selector from other threads for any
225 private Selector selector; field in class:SelectorKernel.SelectorThread
237 setName( "Selector@" + address );
243 // Create a new selector
244 this.selector = SelectorProvider.provider().openSelector();
255 serverChannel.register(selector, SelectionKey.OP_ACCEPT)
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.mm 324 if ([download respondsToSelector:@selector(_setOriginatingURL:)]) {
353 CallResourceLoadDelegate(implementations->didLoadResourceFromMemoryCacheFunc, webView, @selector(webView:didLoadResourceFromMemoryCache:response:length:fromDataSource:), request.nsURLRequest(), response.nsURLResponse(), length, dataSource(loader));
365 object = CallResourceLoadDelegate(implementations->identifierForRequestFunc, webView, @selector(webView:identifierForInitialRequest:fromDataSource:), request.nsURLRequest(), dataSource(loader));
388 request = (NSURLRequest *)CallResourceLoadDelegate(implementations->willSendRequestFunc, webView, @selector(webView:resource:willSendRequest:redirectResponse:fromDataSource:), [webView _objectForIdentifier:identifier], request.nsURLRequest(), redirectResponse.nsURLResponse(), dataSource(loader));
398 return CallResourceLoadDelegateReturningBoolean(NO, implementations->shouldUseCredentialStorageFunc, webView, @selector(webView:resource:shouldUseCredentialStorageForDataSource:), resource, dataSource(loader));
413 CallResourceLoadDelegate(implementations->didReceiveAuthenticationChallengeFunc, webView, @selector(webView:resource:didReceiveAuthenticationChallenge:fromDataSource:), resource, webChallenge, dataSource(loader));
432 return CallResourceLoadDelegateReturningBoolean(NO, implementations->canAuthenticateAgainstProtectionSpaceFunc, webView, @selector(webView:resource:canAuthenticateAgainstProtectionSpace:forDataSource:), resource, webProtectionSpace, dataSource(loader));
450 return CallResourceLoadDelegateReturningBoolean(YES, implementations->shouldPaintBrokenImageForURLFunc, webView, @selector(webView:shouldPaintBrokenImageForURL:), url);
463 CallResourceLoadDelegate(implementations->didCancelAuthenticationChallengeFunc, webView, @selector(webView:resource:didCancelAuthenticationChallenge:fromDataSource:), resource, webChallenge, dataSource(loader));
477 CallResourceLoadDelegate(implementations->didReceiveResponseFunc, webView, @selector(webView:resource:didReceiveResponse:fromDataSource:), resource, response.nsURLResponse(), dataSour (…)
    [all...]
  /external/webkit/Source/WebCore/platform/efl/
RenderThemeEfl.cpp 811 void RenderThemeEfl::adjustSliderTrackStyle(CSSStyleSelector* selector, RenderStyle* style, Element* element) const
814 static_cast<RenderThemeEfl*>(element->document()->page()->theme())->adjustSliderTrackStyle(selector, style, element);
828 void RenderThemeEfl::adjustSliderThumbStyle(CSSStyleSelector* selector, RenderStyle* style, Element* element) const
830 adjustSliderTrackStyle(selector, style, element);
838 void RenderThemeEfl::adjustCheckboxStyle(CSSStyleSelector* selector, RenderStyle* style, Element* element) const
841 static_cast<RenderThemeEfl*>(element->document()->page()->theme())->adjustCheckboxStyle(selector, style, element);
859 void RenderThemeEfl::adjustRadioStyle(CSSStyleSelector* selector, RenderStyle* style, Element* element) const
862 static_cast<RenderThemeEfl*>(element->document()->page()->theme())->adjustRadioStyle(selector, style, element);
880 void RenderThemeEfl::adjustButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* element) const
883 static_cast<RenderThemeEfl*>(element->document()->page()->theme())->adjustButtonStyle(selector, style, element)
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteChooserDialog.java 41 * This dialog allows the user to choose a route that matches a given selector.
69 * Gets the media route selector for filtering the routes that the user can select.
71 * @return The selector, never null.
78 * Sets the media route selector for filtering the routes that the user can select.
80 * @param selector The selector, must not be null.
82 public void setRouteSelector(MediaRouteSelector selector) {
83 if (selector == null) {
84 throw new IllegalArgumentException("selector must not be null");
87 if (!mSelector.equals(selector)) {
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.mm 387 map->add(@selector(insertNewlineIgnoringFieldEditor:), "InsertNewline");
388 map->add(@selector(insertParagraphSeparator:), "InsertNewline");
389 map->add(@selector(insertTabIgnoringFieldEditor:), "InsertTab");
390 map->add(@selector(pageDown:), "MovePageDown");
391 map->add(@selector(pageDownAndModifySelection:), "MovePageDownAndModifySelection");
392 map->add(@selector(pageUp:), "MovePageUp");
393 map->add(@selector(pageUpAndModifySelection:), "MovePageUpAndModifySelection");
394 map->add(@selector(scrollPageDown:), "ScrollPageForward");
395 map->add(@selector(scrollPageUp:), "ScrollPageBackward");
400 static String commandNameForSelector(SEL selector)
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebBaseNetscapePluginView.mm 391 [notificationCenter addObserver:self selector:@selector(windowWillClose:)
393 [notificationCenter addObserver:self selector:@selector(windowBecameKey:)
395 [notificationCenter addObserver:self selector:@selector(windowResignedKey:)
397 [notificationCenter addObserver:self selector:@selector(windowDidMiniaturize:)
399 [notificationCenter addObserver:self selector:@selector(windowDidDeminiaturize:
    [all...]
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Application/
SDLMain.m 140 [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""];
145 [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"];
147 menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"];
150 [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""];
155 [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"];
181 menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"];
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/
SDLMain.m 140 [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""];
145 [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"];
147 menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"];
150 [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""];
155 [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"];
181 menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"];
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/
SDLMain.m 140 [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""];
145 [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"];
147 menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"];
150 [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""];
155 [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"];
181 menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"];
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/
SDLMain.m 140 [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""];
145 [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"];
147 menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"];
150 [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""];
155 [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"];
181 menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"];
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/
SDLMain.m 140 [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""];
145 [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"];
147 menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"];
150 [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""];
155 [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"];
181 menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"];
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/
SDLMain.m 140 [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""];
145 [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"];
147 menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"];
150 [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""];
155 [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"];
181 menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"];
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Application/
SDLMain.m 140 [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""];
145 [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"];
147 menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"];
150 [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""];
155 [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"];
181 menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"];
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/
SDLMain.m 140 [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""];
145 [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"];
147 menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"];
150 [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""];
155 [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"];
181 menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"];
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/
SDLMain.m 140 [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""];
145 [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"];
147 menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"];
150 [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""];
155 [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"];
181 menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"];
  /external/qemu/distrib/sdl-1.2.15/src/main/macosx/
SDLMain.m 139 [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""];
144 [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"];
146 menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"];
149 [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""];
154 [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"];
180 menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"];
  /external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/
MovieControllerLayer.m 232 _updateTimeTimer = [NSTimer scheduledTimerWithTimeInterval:0.035 target:self selector:@selector(_updateTime:) userInfo:nil repeats:YES];
270 selector:@selector(_rateDidChange:)
274 selector:@selector(_timeDidChange:)
  /external/webkit/Source/WebKit/mac/WebView/
WebView.mm 475 + (void)_makeAllWebViewsPerformSelector:(SEL)selector
480 [(NSMutableSet *)allWebViewsSet makeObjectsPerformSelector:selector];
501 static inline int callGestalt(OSType selector)
504 Gestalt(selector, &value);
778 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_preferencesChangedNotification:)
    [all...]
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLConnection.java 175 ProxySelector selector = ProxySelector.getDefault(); local
176 if (selector != null) {
177 proxyList = selector.select(uri);
184 ProxySelector selector = ProxySelector.getDefault(); local
197 if (selector != null && Proxy.NO_PROXY != currentProxy) {
198 selector.connectFailed(uri, currentProxy.address(), ioe);
  /libcore/luni/src/test/java/tests/security/cert/
CertStore2Test.java 354 public Collection<? extends CRL> engineGetCRLs(CRLSelector selector)
356 if (selector != null) {
357 if (!(selector instanceof MyCRLSelector)) {
367 CertSelector selector) throws CertStoreException {
368 if (selector != null) {
369 if (!(selector instanceof MyCertSelector)) {
  /external/webkit/Source/WebCore/css/
CSSParserValues.h 121 void setTagHistory(PassOwnPtr<CSSParserSelector> selector) { m_tagHistory = selector; }

Completed in 5515 milliseconds

1 2 3 4 56 7 8 91011>>