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

1 2 3 4 56 7 8 91011>>

  /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...]
CSSStyleSelector.cpp 295 CSSSelector* selector() const { return m_selector; } function in class:WebCore::RuleData
458 // is always from the document that owns the style selector
    [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/WebKit/mac/WebView/
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...]
  /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/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:))
  /external/webkit/Tools/MiniBrowser/mac/
AppDelegate.m 171 if ([menuItem action] == @selector(setSharedProcessProcessModel:))
173 else if ([menuItem action] == @selector(setSharedThreadProcessModel:))
245 didEndSelector:@selector(openPanelDidEnd:returnCode:contextInfo:)
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.mm 539 [undoManager registerUndoWithTarget:m_undoTarget.get() selector:(isRedo ? @selector(redoEditing:) : @selector(undoEditing:)) object:command];
632 CallFormDelegate(m_webView, @selector(textFieldDidBeginEditing:inFrame:), inputElement, kit(element->document()->frame()));
642 CallFormDelegate(m_webView, @selector(textFieldDidEndEditing:inFrame:), inputElement, kit(element->document()->frame()));
655 CallFormDelegate(m_webView, @selector(textDidChangeInTextField:inFrame:), inputElement, kit(element->document()->frame()));
660 // FIXME: This helper function is for the auto-fill code so we can pass a selector to the form delegate.
662 // not relying on the selector in the new implementation.
666 return @selector(moveUp:);
668 return @selector(moveDown:)
    [all...]
  /external/chromium/base/
tracked_objects.cc 903 void Comparator::SetTiebreaker(Selector selector, const std::string& required) {
904 if (selector == selector_ || NIL == selector)
906 combined_selectors_ |= selector;
908 selector_ = selector;
923 tiebreaker_->SetTiebreaker(selector, required);
926 bool Comparator::IsGroupedBy(Selector selector) const {
927 return 0 != (selector & combined_selectors_)
    [all...]

Completed in 1391 milliseconds

1 2 3 4 56 7 8 91011>>