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

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebCore/css/
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 71 CSSParserSelector* selector;
248 %type <selector> specifier
249 %type <selector> specifier_list
250 %type <selector> simple_selector
251 %type <selector> selector
254 %type <selector> selector_with_trailing_whitespace
255 %type <selector> class
256 %type <selector> attrib
257 %type <selector> pseud
852 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/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/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerId.java 6 import org.bouncycastle.cert.selector.X509CertificateHolderSelector;
7 import org.bouncycastle.util.Selector;
13 implements Selector
  /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:)
  /prebuilts/sdk/17/
uiautomator.jar 
  /prebuilts/sdk/current/
uiautomator.jar 
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
TrustedCertificateStore.java 316 CertSelector selector = new CertSelector() { local
321 return findCert(dir, x.getSubjectX500Principal(), selector, File.class);
335 CertSelector selector = new CertSelector() { local
342 selector,
349 selector,
361 CertSelector selector = new CertSelector() { local
372 X509Certificate user = findCert(addedDir, issuer, selector, X509Certificate.class);
376 X509Certificate system = findCert(systemDir, issuer, selector, X509Certificate.class);
492 File dir, X500Principal subject, CertSelector selector, Class<T> desiredReturnType) {
518 if (selector.match(cert))
    [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiScrollable.java 50 * @param container a {@link UiSelector} selector to identify the scrollable
55 // wrap the container selector with container so that QueryController can handle
86 * @param selector
90 protected boolean exists(UiSelector selector) {
91 if(getQueryController().findAccessibilityNodeInfo(selector) != null) {
99 * The search first looks for a child element that matches the selector
102 * representing the element matching the selector (not the child element in its
123 * The search first looks for a child element that matches the selector
126 * representing the element matching the selector (not the child element in its
151 * matches the selector you provided. The search is performed withou
    [all...]
  /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:)

Completed in 435 milliseconds

1 2 3 4 5 67 8 91011>>