/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...] |
WebJSPDFDoc.mm | 51 CallUIDelegate(webView, @selector(webView:printFrameView:), [[dataSource webFrame] frameView]);
|
WebEditingDelegate.h | 50 - (BOOL)webView:(WebView *)webView doCommandBySelector:(SEL)selector;
|
WebHTMLView.mm | 583 Method setCursorMethod = class_getInstanceMethod([NSWindow class], @selector(_setCursorForMouseLocation:)); 591 Method setNeedsDisplayInRectMethod = class_getInstanceMethod([NSView class], @selector(setNeedsDisplayInRect:)); 600 Method setCursorMethod = class_getInstanceMethod([NSCursor class], @selector(set)); 606 Method resetCursorRectsMethod = class_getInstanceMethod([NSWindow class], @selector(resetCursorRects)); [all...] |
WebFrameView.mm | 185 if ([docV respondsToSelector:@selector(close)]) 186 [docV performSelector:@selector(close)]; 619 [[self nextResponder] tryToPerform:@selector(scrollToBeginningOfDocument:) with:sender]; 631 [[self nextResponder] tryToPerform:@selector(scrollToEndOfDocument:) with:sender]; 737 [[self nextResponder] tryToPerform:@selector(scrollPageUp:) with:sender]; 745 [[self nextResponder] tryToPerform:@selector(scrollPageDown:) with:sender]; 752 [[self nextResponder] tryToPerform:@selector(scrollLineUp:) with:sender]; 758 [[self nextResponder] tryToPerform:@selector(scrollLineDown:) with:sender]; [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/bridge/objc/ |
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/webkit/Source/WebCore/css/ |
CSSParserValues.h | 121 void setTagHistory(PassOwnPtr<CSSParserSelector> selector) { m_tagHistory = selector; }
|
CSSStyleSheet.h | 73 int addRule(const String& selector, const String& style, int index, ExceptionCode&); 74 int addRule(const String& selector, const String& style, ExceptionCode&);
|
CSSStyleSheet.cpp | 135 int CSSStyleSheet::addRule(const String& selector, const String& style, int index, ExceptionCode& ec) 137 insertRule(selector + " { " + style + " }", index, ec); 143 int CSSStyleSheet::addRule(const String& selector, const String& style, ExceptionCode& ec) 145 return addRule(selector, style, length(), ec); 259 * basically we just need to recreate the document's selector with the
|
CSSGrammar.y | 72 CSSParserSelector* selector; 249 %type <selector> specifier 250 %type <selector> specifier_list 251 %type <selector> simple_selector 252 %type <selector> selector 255 %type <selector> selector_with_trailing_whitespace 256 %type <selector> class 257 %type <selector> attrib 258 %type <selector> pseud 853 selector: label [all...] |
/external/webkit/Source/WebCore/inspector/ |
InspectorCSSAgent.h | 73 void setRuleSelector(ErrorString*, const RefPtr<InspectorObject>& ruleId, const String& selector, RefPtr<InspectorObject>* result); 74 void addRule(ErrorString*, const int contextNodeId, const String& selector, RefPtr<InspectorObject>* result);
|
/external/webkit/Source/WebCore/inspector/front-end/ |
ExtensionPanel.js | 74 _addStyleRule: function(selector, body) 77 style.textContent = selector + " { " + body + " }";
|
/external/webkit/Source/WebKit/mac/Misc/ |
WebNSNotificationCenterExtras.m | 55 [[self class] performSelectorOnMainThread:@selector(_postNotificationName:) withObject:info waitUntilDone:wait];
|
/external/webkit/Source/WebKit2/UIProcess/mac/ |
WKFullScreenWindowController.mm | 122 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidResignActive:) name:NSApplicationDidResignActiveNotification object:NSApp]; 123 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidChangeScreenParameters:) name:NSApplicationDidChangeScreenParametersNotification object:NSApp]; 149 BOOL isOnActiveSpace = ([fullScreenWindow respondsToSelector:@selector(isOnActiveSpace)] ? [fullScreenWindow isOnActiveSpace] : YES); 395 if ([NSApp respondsToSelector:@selector(setPresentationOptions:)]) 443 _tickleTimer = [[NSTimer scheduledTimerWithTimeInterval:tickleTimerInterval target:self selector:@selector(_tickleTimerFired) userInfo:nil repeats:YES] retain]; 491 [self performSelector:@selector(_requestExit) withObject:nil afterDelay:0];
|
/external/webkit/Source/WebKit2/UIProcess/API/mac/ |
PDFViewController.mm | 136 _pdfView = [_pdfPreviewView.get() performSelector:@selector(pdfView)]; 197 [self performSelector:@selector(_updatePreferences:) withObject:nil afterDelay:0]; 272 [notificationCenter addObserver:self selector:@selector(_scaleOrDisplayModeOrPageChanged:) name:_webkit_PDFViewScaleChangedNotification object:_pdfView]; 273 [notificationCenter addObserver:self selector:@selector(_scaleOrDisplayModeOrPageChanged:) name:_webkit_PDFViewDisplayModeChangedNotification object:_pdfView]; 274 [notificationCenter addObserver:self selector:@selector(_scaleOrDisplayModeOrPageChanged:) name:_webkit_PDFViewPageChangedNotification object:_pdfView]; 309 if ([item action] != @selector(copy:)) 324 item = [[NSMenuItem alloc] initWithTitle:title action:@selector(_openWithFinder:) keyEquivalent:@""] [all...] |
/external/webkit/Source/WebKit/mac/Panels/ |
WebPanelAuthenticationHandler.m | 124 WebAuthenticationPanel *panel = [[WebAuthenticationPanel alloc] initWithCallback:self selector:@selector(_authenticationDoneWithChallenge:result:)];
|
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
WebTextInputWindowController.m | 77 selector:@selector(_keyboardInputSourceChanged:)
|
/external/libyuv/files/source/ |
format_conversion.cc | 29 uint8* dst_bayer, uint32 selector, int pix) { 33 movd xmm7, [esp + 12] // selector 54 uint32 selector, int pix) { 69 : "r"(selector) // %3 76 uint8* dst_bayer, uint32 selector, int pix) { 77 int index0 = selector & 0xff; 78 int index1 = (selector >> 8) & 0xff; 91 // generate a selector mask useful for pshufb 110 uint8* dst_bayer, uint32 selector, int pix);
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/ |
WebPageMac.mm | 534 bool WebPage::performNonEditingBehaviorForSelector(const String& selector) 538 if (selector == "moveUp:") 540 else if (selector == "moveToBeginningOfParagraph:") 542 else if (selector == "moveToBeginningOfDocument:") { 545 } else if (selector == "moveDown:") 547 else if (selector == "moveToEndOfParagraph:") 549 else if (selector == "moveToEndOfDocument:") { 552 } else if (selector == "moveLeft:") 554 else if (selector == "moveWordLeft:") 556 else if (selector == "moveToLeftEndOfLine:" [all...] |
/external/webkit/Source/WebCore/platform/graphics/mac/ |
MediaPlayerPrivateQTKit.mm | 395 selector:@selector(loadStateChanged:) 404 selector:@selector(loadStateChanged:) 410 selector:@selector(rateChanged:) 414 selector:@selector(sizeChanged:) 418 selector:@selector(timeChanged:) [all...] |
/external/webkit/Source/WebCore/platform/gtk/ |
RenderThemeGtk.cpp | 197 void RenderThemeGtk::adjustButtonStyle(CSSStyleSelector* selector, RenderStyle* style, WebCore::Element* e) const 204 void RenderThemeGtk::adjustMenuListStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const 213 void RenderThemeGtk::adjustMenuListButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const 215 adjustMenuListStyle(selector, style, e); 269 void RenderThemeGtk::adjustSearchFieldResultsButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const 271 adjustSearchFieldCancelButtonStyle(selector, style, e); 297 void RenderThemeGtk::adjustSearchFieldResultsDecorationStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const 334 void RenderThemeGtk::adjustSearchFieldCancelButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const 353 void RenderThemeGtk::adjustSearchFieldStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const
|
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/ |
concat-jquery-mootools-prototype.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...] |
/external/webkit/Source/WebCore/bridge/ |
testbindings.mm | 84 if (aSelector == @selector(logMessage:)) 86 if (aSelector == @selector(logMessages:)) 88 if (aSelector == @selector(logMessage:prefix:))
|