/external/webkit/Source/WebCore/css/ |
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...] |
CSSSegmentedFontFace.h | 45 static PassRefPtr<CSSSegmentedFontFace> create(CSSFontSelector* selector) { return adoptRef(new CSSSegmentedFontFace(selector)); }
|
/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:)];
|
WebChromeClient.mm | 243 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 = @selector(webView:addMessageToConsole:withSource:) [all...] |
WebGeolocationClient.mm | 71 SEL selector = @selector(webView:decidePolicyForGeolocationRequestFromOrigin:frame:listener:); 72 if (![[m_webView UIDelegate] respondsToSelector:selector]) { 81 CallUIDelegate(m_webView, selector, webOrigin, kit(frame), listener);
|
WebCachedFramePlatformData.h | 37 virtual void clear() { objc_msgSend(m_webDocumentView.get(), @selector(closeIfNotCurrentView)); }
|
/external/webkit/Source/WebKit2/WebProcess/mac/ |
FullKeyboardAccessWatcher.mm | 58 addObserver:self selector:@selector(retrieveKeyboardUIModeFromPreferences:)
|
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
MediaRouteDiscoveryRequest.java | 28 private static final String KEY_SELECTOR = "selector"; 37 * @param selector The route selector that specifies the kinds of routes to discover. 40 public MediaRouteDiscoveryRequest(MediaRouteSelector selector, boolean activeScan) { 41 if (selector == null) { 42 throw new IllegalArgumentException("selector must not be null"); 46 mSelector = selector; 47 mBundle.putBundle(KEY_SELECTOR, selector.asBundle()); 56 * Gets the route selector that specifies the kinds of routes to discover. 107 result.append("DiscoveryRequest{ selector=").append(getSelector()) [all...] |
/libcore/luni/src/main/java/java/nio/channels/spi/ |
AbstractSelectionKey.java | 60 ((AbstractSelector) selector()).cancel(this);
|
AbstractSelectableChannel.java | 27 import java.nio.channels.Selector; 53 * the selector provider that creates this channel. 60 * Returns the selector provider that has created this channel. 63 * @return this channel's selector provider. 73 * @return {@code true} if this channel is registered with a selector, 82 * Gets this channel's selection key for the specified selector. 84 * @param selector 85 * the selector with which this channel has been registered. 87 * has not been registered with {@code selector}. 90 synchronized public final SelectionKey keyFor(Selector selector) [all...] |
/libcore/luni/src/test/java/tests/security/cert/ |
X509CRLSelectorTest.java | 78 X509CRLSelector selector = new X509CRLSelector(); local 81 selector.addIssuerName((String) null); 118 X509CRLSelector selector = new X509CRLSelector(); local 119 selector.setIssuerNames(new TreeSet<Comparable>() {
|
/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...] |
/external/webkit/Source/WebKit/mac/Plugins/ |
WebPluginController.mm | 98 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(pluginInitialize)]) [all...] |
WebPluginContainerCheck.h | 55 + (id)checkWithRequest:(NSURLRequest *)request target:(NSString *)target resultObject:(id)obj selector:(SEL)selector controller:(id <WebPluginContainerCheckController>)controller contextInfo:(id)/*optional*/contextInfo;
|
WebPluginContainerCheck.mm | 51 - (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/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
X509CRLStoreSelector.java | 6 import org.bouncycastle.util.Selector; 16 * This class is a Selector implementation for X.509 certificate revocation 19 * @see org.bouncycastle.util.Selector 25 implements Selector 169 * 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) 205 if (selector == null) 208 "cannot create from null selector"); [all...] |
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
devicemanager_mac.mm | 47 selector:@selector(onDevicesChanged:) 51 selector:@selector(onDevicesChanged:)
|
/external/chromium/chrome/browser/ui/cocoa/ |
rwhvm_editcommand_helper.h | 44 // Each selector is connected to a single c method which forwards the message 52 // SEL - the objc selector currently associated with an NSMenuItem. 58 // Converts an editing selector into a command name that can be sent to 60 static NSString* CommandNameForSelector(SEL selector);
|
/external/webkit/Tools/DumpRenderTree/ |
StorageTrackerDelegate.mm | 41 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(originModified:) name:WebStorageDidModifyOriginNotification object:nil];
|
/packages/apps/Browser/src/com/android/browser/view/ |
BookmarkContainer.java | 73 Drawable selector = getBackground(); local 74 if (selector != null && selector instanceof StateListDrawable) { 75 Drawable d = ((StateListDrawable)selector).getCurrent();
|
/external/wpa_supplicant_8/src/ap/ |
wpa_auth_ie.c | 383 u32 selector; local 407 selector = RSN_AUTH_KEY_MGMT_UNSPEC_802_1X; 412 selector = RSN_AUTH_KEY_MGMT_FT_802_1X; 414 selector = RSN_AUTH_KEY_MGMT_FT_PSK; 418 selector = RSN_AUTH_KEY_MGMT_802_1X_SHA256; 420 selector = RSN_AUTH_KEY_MGMT_PSK_SHA256; 424 selector = RSN_AUTH_KEY_MGMT_SAE; 426 selector = RSN_AUTH_KEY_MGMT_FT_SAE; 429 selector = RSN_AUTH_KEY_MGMT_UNSPEC_802_1X; 431 selector = RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X [all...] |
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/ |
SelectionKeyTest.java | 25 import java.nio.channels.Selector; 36 Selector selector; field in class:SelectionKeyTest 46 selector = Selector.open(); 49 selectionKey = sc.register(selector, SelectionKey.OP_CONNECT); 55 selector.close(); 56 selector = null; 91 public Selector selector() { method in class:SelectionKeyTest.MockSelectionKey [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/ |
SDL_QuartzWindow.m | 188 selector:@selector(appDidHide:) name:NSApplicationDidHideNotification object:NSApp ]; 191 selector:@selector(appDidUnhide:) name:NSApplicationDidUnhideNotification object:NSApp ]; 194 selector:@selector(appWillUnhide:) name:NSApplicationWillUnhideNotification object:NSApp ];
|
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/ |
jquery-1.3.2.js | 24 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 === "string" ) [all...] |