Lines Matching refs:selector
52 static void addLookupKey(NSString *key, SEL selector)
54 CFDictionaryAddValue(lookupTable, key, selector);
81 addLookupKey(WebElementDOMNodeKey, @selector(_domNode));
82 addLookupKey(WebElementFrameKey, @selector(_webFrame));
83 addLookupKey(WebElementImageAltStringKey, @selector(_altDisplayString));
84 addLookupKey(WebElementImageKey, @selector(_image));
85 addLookupKey(WebElementImageRectKey, @selector(_imageRect));
86 addLookupKey(WebElementImageURLKey, @selector(_absoluteImageURL));
87 addLookupKey(WebElementIsSelectedKey, @selector(_isSelected));
88 addLookupKey(WebElementMediaURLKey, @selector(_absoluteMediaURL));
89 addLookupKey(WebElementSpellingToolTipKey, @selector(_spellingToolTip));
90 addLookupKey(WebElementTitleKey, @selector(_title));
91 addLookupKey(WebElementLinkURLKey, @selector(_absoluteLinkURL));
92 addLookupKey(WebElementLinkTargetFrameKey, @selector(_targetWebFrame));
93 addLookupKey(WebElementLinkTitleKey, @selector(_titleDisplayString));
94 addLookupKey(WebElementLinkLabelKey, @selector(_textContent));
95 addLookupKey(WebElementLinkIsLiveKey, @selector(_isLiveLink));
96 addLookupKey(WebElementIsContentEditableKey, @selector(_isContentEditable));
97 addLookupKey(WebElementIsInScrollBarKey, @selector(_isInScrollBar));
152 SEL selector = (SEL)CFDictionaryGetValue(lookupTable, key);
153 if (!selector)
155 value = [self performSelector:selector];