HomeSort by relevance Sort by last modified time
    Searched refs:selector (Results 226 - 250 of 350) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/rendering/
RenderThemeChromiumSkia.cpp 467 void RenderThemeChromiumSkia::adjustMenuListStyle(CSSStyleSelector* selector, RenderStyle* style, WebCore::Element* e) const
473 void RenderThemeChromiumSkia::adjustMenuListButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const
475 adjustMenuListStyle(selector, style, e);
  /external/webkit/Source/WebCore/inspector/
InspectorStyleSheet.cpp 670 bool InspectorStyleSheet::setRuleSelector(const InspectorCSSId& id, const String& selector)
679 rule->setSelectorText(selector);
685 sheetText.replace(sourceData->selectorListRange.start, sourceData->selectorListRange.end - sourceData->selectorListRange.start, selector);
690 CSSStyleRule* InspectorStyleSheet::addRule(const String& selector)
698 m_pageStyleSheet->addRule(selector, "", ec);
709 styleSheetText += selector;
    [all...]
  /external/webkit/Source/WebCore/page/mac/
EventHandlerMac.mm 431 Method method = class_getInstanceMethod(objc_getRequiredClass("NSScrollView"), @selector(scrollWheel:));
438 static void selfRetainingNSScrollViewScrollWheel(NSScrollView *self, SEL selector, NSEvent *event)
444 originalNSScrollViewScrollWheel(self, selector, event);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
RFC3280CertPathUtilities.java 447 X509CertStoreSelector selector = new X509CertStoreSelector(); local
451 selector.setSubject(issuerPrincipal);
456 "Subject criteria for certificate selector to find issuer certificate for CRL could not be set.", e);
463 coll = CertPathValidatorUtilities.findCertificates(selector, paramsPKIX.getStores());
464 coll.addAll(CertPathValidatorUtilities.findCertificates(selector, paramsPKIX.getAdditionalStores()));
465 coll.addAll(CertPathValidatorUtilities.findCertificates(selector, paramsPKIX.getCertStores()));
496 selector = new X509CertStoreSelector();
497 selector.setCertificate(signingCert);
499 temp.setTargetCertConstraints(selector);
    [all...]
  /external/icu4c/i18n/
plurfmt.cpp 351 const PluralSelector& selector, double number, UErrorCode& ec) {
365 // Then we get the keyword from the selector.
366 // (In other words, we never call the selector if we match against an explicit value,
404 // Compare "other" first and call the selector if this is not "other".
417 keyword=selector.select(number-offset, ec);
  /external/qemu/target-i386/
machine.c 11 qemu_put_be32(f, dt->selector);
19 dt->selector = qemu_get_be32(f);
hax-interface.h 87 uint16_t selector; member in struct:segment_desc_t
svm.h 166 uint16_t selector; member in struct:vmcb_seg
  /external/webkit/Source/WebCore/dom/
Element.cpp 94 // This tells us that our pushed style selector is in a bad state,
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
CookieJar.mm 51 static bool supportsHTTPOnlyCookies = [NSHTTPCookie instancesRespondToSelector:@selector(isHTTPOnly)];
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
HostedNetscapePluginStream.mm 163 NSArray *keys = [[headerDict allKeys] sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)];
  /external/webkit/Source/WebKit2/WebProcess/mac/
WebProcessMac.mm 236 Method methodToPatch = class_getInstanceMethod([NSApplication class], @selector(accessibilityFocusedUIElement));
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
EmulatorConnection.java 27 import java.nio.channels.Selector;
83 /** I/O selector (looper). */
84 private Selector mSelector;
91 /** Selector for the connection type. */
323 // it with the I/O selector for reading.
328 mSelectionKey.selector().wakeup();
507 // Looks like we must wake up the selector. Otherwise it's not going
509 mSelectionKey.selector().wakeup();
731 * Loops on the selector, handling and dispatching I/O events.
    [all...]
  /external/qemu/android/config/linux-x86/asm/
kvm.h 102 __u16 selector; member in struct:kvm_segment
  /external/qemu/android/config/linux-x86_64/asm/
kvm.h 102 __u16 selector; member in struct:kvm_segment
  /external/webkit/Source/WebKit/mac/WebView/
WebDelegateImplementationCaching.h 107 id CallFormDelegate(WebView *self, SEL selector, id object1, id object2, id object3, id object4, id object5);
WebViewInternal.h 64 + (void)_makeAllWebViewsPerformSelector:(SEL)selector;
WebPreferences.mm 447 return [o respondsToSelector:@selector(intValue)] ? [o intValue] : 0;
464 return [o respondsToSelector:@selector(floatValue)] ? [o floatValue] : 0.0f;
497 return [o respondsToSelector:@selector(longLongValue)] ? [o longLongValue] : 0;
514 return [o respondsToSelector:@selector(unsignedLongLongValue)] ? [o unsignedLongLongValue] : 0;
    [all...]
  /external/webkit/Tools/Scripts/
prepare-ChangeLog 629 my $selector = method_decl_to_selector ($potential_method_spec);
630 $potential_name = "${potential_method_char}\[${interface_name} ${selector}\]";
665 my $selector = method_decl_to_selector ($potential_method_spec);
666 $potential_name = "${potential_method_char}\[${interface_name} ${selector}\]";
    [all...]
  /external/qemu/
gdbstub.c 539 case 2: GET_REG32(env->segs[R_CS].selector);
540 case 3: GET_REG32(env->segs[R_SS].selector);
541 case 4: GET_REG32(env->segs[R_DS].selector);
542 case 5: GET_REG32(env->segs[R_ES].selector);
543 case 6: GET_REG32(env->segs[R_FS].selector);
544 case 7: GET_REG32(env->segs[R_GS].selector);
591 if (tmp != env->segs[sreg].selector)\
595 when the selector is invalid. */
    [all...]
cpu-exec.c 755 void cpu_x86_load_seg(CPUX86State *s, int seg_reg, int selector)
762 selector &= 0xffff;
763 cpu_x86_load_seg_cache(env, seg_reg, selector,
764 (selector << 4), 0xffff, 0);
766 helper_load_seg(seg_reg, selector);
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 722 SEL selector = NSSelectorFromString(nameNS);
723 RetainPtr<CommandValidationTarget> target(AdoptNS, [[CommandValidationTarget alloc] initWithAction:selector]);
724 id validator = [NSApp targetForAction:selector to:[mainFrame webView] from:target.get()];
727 if (![validator respondsToSelector:selector])
729 if (![validator respondsToSelector:@selector(validateUserInterfaceItem:)])
    [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp 1795 Selector selector = Mess->getSelector(); local
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 115 ASSERT([download respondsToSelector:@selector(_setOriginatingURL:)]);
  /frameworks/base/core/java/android/content/
Intent.java 3388 Intent selector = new Intent(); local
    [all...]

Completed in 1207 milliseconds

1 2 3 4 5 6 7 8 91011>>