Lines Matching refs:attribute

150 // generates selectors for attribute name AXAttributeNameHere
154 -(SEL)selectorForAttribute:(NSString *)attribute asGetter:(BOOL)asGetter withGetterParameter:(BOOL)…
158 // step 1: create method name from attribute name
164 …NSString * firstChar = [ attribute substringWithRange: aRange ]; // drop leading "AX" and get firs…
170 … [ methodName appendString: [ attribute substringFromIndex: 3 ] ]; // append rest of attribute name
665 -(id)accessibilityAttributeValue:(NSString *)attribute {
676 …SEL methodSelector = [ self selectorForAttribute: attribute asGetter: YES withGetterParameter: NO …
740 // Special Attributes depending on attribute values
797 -(BOOL)accessibilityIsAttributeSettable:(NSString *)attribute {
800 isSettable = [ AquaA11yTextWrapper isAttributeSettable: attribute forElement: self ];
803 isSettable = [ AquaA11yComponentWrapper isAttributeSettable: attribute forElement: self ];
806 isSettable = [ AquaA11ySelectionWrapper isAttributeSettable: attribute forElement: self ];
809 isSettable = [ AquaA11yValueWrapper isAttributeSettable: attribute forElement: self ];
823 -(id)accessibilityAttributeValue:(NSString *)attribute forParameter:(id)parameter {
824 …SEL methodSelector = [ self selectorForAttribute: attribute asGetter: YES withGetterParameter: YES…
831 -(BOOL)accessibilitySetOverrideValue:(id)value forAttribute:(NSString *)attribute
834 (void)attribute;
838 -(void)accessibilitySetValue:(id)value forAttribute:(NSString *)attribute {
839 …SEL methodSelector = [ self selectorForAttribute: attribute asGetter: NO withGetterParameter: NO ];