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

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebCore/rendering/
RenderThemeSafari.cpp 385 void RenderThemeSafari::setFontFromControlSize(CSSStyleSelector* selector, RenderStyle* style, NSControlSize controlSize) const
400 style->font().update(selector->fontSelector());
505 void RenderThemeSafari::adjustButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const
538 setFontFromControlSize(selector, style, controlSize);
861 void RenderThemeSafari::adjustMenuListStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const
    [all...]
RenderThemeWinCE.cpp 238 void RenderThemeWinCE::adjustMenuListStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const
241 adjustMenuListButtonStyle(selector, style, e);
355 void RenderThemeWinCE::adjustSearchFieldStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const
395 void RenderThemeWinCE::adjustSearchFieldCancelButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const
402 void RenderThemeWinCE::adjustSearchFieldDecorationStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const
409 void RenderThemeWinCE::adjustSearchFieldResultsDecorationStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const
422 void RenderThemeWinCE::adjustSearchFieldResultsButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const
435 void RenderThemeWinCE::adjustMenuListButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const
532 void RenderThemeWinCE::adjustSearchFieldStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const
  /external/webkit/Source/WebKit/mac/Carbon/
CarbonWindowAdapter.mm 594 // if ([_borderView respondsToSelector:@selector(setShadowState:)]) {
    [all...]
HIViewAdapter.m 63 Method setNeedsDisplayMethod = class_getInstanceMethod(objc_getClass("NSView"), @selector(setNeedsDisplay:));
69 Method setNeedsDisplayInRectMethod = class_getInstanceMethod(objc_getClass("NSView"), @selector(setNeedsDisplayInRect:));
75 Method nextValidKeyViewMethod = class_getInstanceMethod(objc_getClass("NSView"), @selector(nextValidKeyView));
  /external/webkit/Source/WebKit/mac/WebView/
WebFullScreenController.mm 159 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidResignActive:) name:NSApplicationDidResignActiveNotification object:NSApp];
160 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidChangeScreenParameters:) name:NSApplicationDidChangeScreenParametersNotification object:NSApp];
332 BOOL isOnActiveSpace = ([fullscreenWindow respondsToSelector:@selector(isOnActiveSpace)] ? [fullscreenWindow isOnActiveSpace] : YES);
648 if ([NSApp respondsToSelector:@selector(setPresentationOptions:)])
696 _tickleTimer = [[NSTimer scheduledTimerWithTimeInterval:tickleTimerInterval target:self selector:@selector(_tickleTimerFired) userInfo:nil repeats:YES] retain];
738 [self performSelector:@selector(_requestExit) withObject:nil afterDelay:0];
    [all...]
  /external/openfst/src/include/fst/
lookahead-filter.h 94 LookAheadSelector(const LookAheadSelector<M, M, MT> &selector)
95 : lmatcher1_(selector.lmatcher1_->Copy()),
96 lmatcher2_(selector.lmatcher2_->Copy()),
97 type_(selector.type_) {}
132 LookAheadSelector(const LookAheadSelector<M1, M2, MATCH_INPUT> &selector)
133 : fst_(selector.fst_->Copy()),
134 lmatcher_(selector.lmatcher_->Copy()) {}
164 LookAheadSelector(const LookAheadSelector<M1, M2, MATCH_OUTPUT> &selector)
165 : fst_(selector.fst_->Copy()),
166 lmatcher_(selector.lmatcher_->Copy()) {
    [all...]
  /external/qemu/
kqemu.c 513 int selector; local
515 selector = (env->star >> 32) & 0xffff;
526 cpu_x86_load_seg_cache(env, R_CS, selector & 0xfffc,
531 cpu_x86_load_seg_cache(env, R_SS, (selector + 8) & 0xfffc,
547 cpu_x86_load_seg_cache(env, R_CS, selector & 0xfffc,
552 cpu_x86_load_seg_cache(env, R_SS, (selector + 8) & 0xfffc,
676 ksc->selector = sc->selector;
685 sc->selector = ksc->selector;
    [all...]
kqemu.h 36 uint16_t selector; member in struct:kqemu_segment_cache
49 struct kqemu_segment_cache segs[6]; /* selector values */
  /system/core/libcutils/
mq.c 34 #include <cutils/selector.h>
141 Selector* selector; member in struct:__anon43946
143 /** Used to synchronize operations with the selector thread. */
408 // Remove the fd from the selector.
785 SelectableFd* selectableFd = selectorAdd(peer->selector, incomingFd);
787 ALOGW("Error adding fd to selector for %d.",
1069 // Add connection to the selector.
1070 SelectableFd* socketFd = selectorAdd(masterPeer->selector, socket);
1099 peer->selector = selectorCreate()
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
DOMAgent.js 230 var selector = "#" + id;
231 return (justSelector ? selector : lowerCaseName + selector);
236 var selector = "." + className.replace(/\s+/, ".");
237 return (justSelector ? selector : lowerCaseName + selector);
  /external/webkit/Source/WebCore/platform/mac/
WidgetMac.mm 192 } else if (!NSEqualRects(visibleRect, m_data->previousVisibleRect) && [outerView respondsToSelector:@selector(visibleRectDidChange)])
328 if ([view respondsToSelector:@selector(webPlugInSetIsSelected:)])
330 else if ([view respondsToSelector:@selector(setIsSelected:)])
  /prebuilts/devtools/tools/lib/
monkeyrunner.jar 
  /external/webkit/Source/WebKit/mac/Misc/
WebIconDatabase.mm 215 _private->delegateImplementsDefaultIconForURL = [delegate respondsToSelector:@selector(webIconDatabase:defaultIconForURL:withSize:)];
311 selector:@selector(_applicationWillTerminate:)
315 selector:@selector(_resetCachedWebPreferences:)
579 [NSThread detachNewThreadSelector:@selector(threadEnablingSelector:) toTarget:enabler withObject:nil];
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/
X509CertificateHolderSelector.java 1 package org.bouncycastle.cert.selector;
11 import org.bouncycastle.util.Selector;
17 implements Selector
25 * Construct a selector with the value of a public key's subjectKeyId.
  /external/icu4c/i18n/unicode/
plurfmt.h 94 * pluralStyle = [offsetValue] (selector '{' message '}')+
96 * selector = explicitValue | keyword
579 * @param selector the PluralSelector for mapping the number (minus offset) to a keyword.
587 const PluralSelector& selector, double number, UErrorCode& ec);
  /external/webkit/Source/WebCore/platform/graphics/mac/
WebLayer.mm 121 objc_msgSendSuper(&layerSuper, @selector(setNeedsDisplayInRect:), rect);
133 objc_msgSendSuper(&layerSuper, @selector(setNeedsDisplayInRect:), indicatorRect);
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceRequestMac.mm 85 static bool supportsContentDispositionEncodingFallbackArray = [NSURLRequest instancesRespondToSelector:@selector(contentDispositionEncodingFallbackArray)];
148 static bool supportsContentDispositionEncodingFallbackArray = [NSMutableURLRequest instancesRespondToSelector:@selector(setContentDispositionEncodingFallbackArray:)];
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultUIDelegate.m 65 if (![[wv UIDelegate] respondsToSelector:@selector(webView:createWebViewWithRequest:windowFeatures:)] && [[wv UIDelegate] respondsToSelector:@selector(webView:createWebViewWithRequest:)])
WebDefaultEditingDelegate.m 100 - (BOOL)webView:(WebView *)webView doCommandBySelector:(SEL)selector
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
PageClientImpl.h 75 virtual bool executeSavedCommandBySelector(const String& selector);
  /external/webkit/Source/WebKit2/UIProcess/
PageClient.h 104 virtual bool executeSavedCommandBySelector(const String& selector) = 0;
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebContextMenuProxyMac.mm 143 NSMenuItem* menuItem = [[NSMenuItem alloc] initWithTitle:nsStringFromWebCoreString(items[i].title()) action:@selector(forwardContextMenuAction:) keyEquivalent:@""];
165 NSMenuItem* menuItem = [[NSMenuItem alloc] initWithTitle:nsStringFromWebCoreString(items[i].title()) action:@selector(forwardContextMenuAction:) keyEquivalent:@""];
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/js/
jquery-1.4.1.min.js 17 e(a[0],b):null}function J(){return(new Date).getTime()}function Y(){return false}function Z(){return true}function ma(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function na(a){var b,d=[],f=[],e=arguments,i,j,n,o,m,s,x=c.extend({},c.data(this,"events").live);if(!(a.button&&a.type==="click")){for(o in x){j=x[o];if(j.live===a.type||j.altLive&&c.inArray(a.type,j.altLive)>-1){i=j.data;i.beforeFilter&&i.beforeFilter[a.type]&&!i.beforeFilter[a.type](a)||f.push(j.selector)}else delete x[o]}i=c(a.target).closest(f,
18 a.currentTarget);m=0;for(s=i.length;m<s;m++)for(o in x){j=x[o];n=i[m].elem;f=null;if(i[m].selector===j.selector){if(j.live==="mouseenter"||j.live==="mouseleave")f=c(a.relatedTarget).closest(j.selector)[0];if(!f||f!==n)d.push({elem:n,fn:j})}}m=0;for(s=d.length;m<s;m++){i=d[m];a.currentTarget=i.elem;a.data=i.fn.data;if(i.fn.apply(i.elem,e)===false){b=false;break}}return b}}function oa(a,b){return"live."+(a?a+".":"")+b.replace(/\./g,"`").replace(/ /g,"&")}function pa(a){return!a||!a.parentNode||a.parentNode.nodeType===
22 [f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}}else{if(b=r.getElementById(d[2])){if(b.id!==d[2])return S.find(a);this.length=1;this[0]=b}this.context=r;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=r;a=r.getElementsByTagName(a)}else return!b||b.jquery?(b||S).find(a):c(b).find(a);else if(c.isFunction(a))return S.ready(a);if(a.selector!==v){this.selector=a.selector;this.context=a.context}return c.isArray(a)?this.setArray(a):c.makeArray(a,
23 this)},selector:"",jquery:"1.4.1",length:0,size:function(){return this.length},toArray:function(){return Q.call(th (…)
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorStyleSheet.h 169 bool setRuleSelector(const InspectorCSSId&, const String& selector);
170 CSSStyleRule* addRule(const String& selector);
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.mm 96 [[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(appearancePrefsChanged:) name:@"AppleAquaScrollBarVariantChanged" object:nil suspensionBehavior:NSNotificationSuspensionBehaviorDeliverImmediately];
97 [[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(behaviorPrefsChanged:) name:@"AppleNoRedisplayAppearancePreferenceChanged" object:nil suspensionBehavior:NSNotificationSuspensionBehaviorCoalesce];

Completed in 705 milliseconds

1 2 3 4 5 6 7 891011>>