Home
last modified time | relevance | path

Searched refs:anObject (Results 1 – 25 of 58) sorted by relevance

123

/external/skia/src/views/mac/
DSkOptionsTableView.mm209 - (void)tableView:(NSTableView *)tableView setObjectValue:(id)anObject forTableColumn:(NSTableColum…
220 [(NSPopUpButtonCell*)cell selectItemAtIndex:[anObject intValue]];
221 item->setInt([anObject intValue]);
224 [cell setFloatValue:[anObject floatValue]];
225 item->setScalar([anObject floatValue]);
228 [cell setState:[anObject boolValue]];
229 item->setBool([anObject boolValue]);
232 if ([anObject length] > 0) {
233 [cell setStringValue:anObject];
234 item->setString([anObject UTF8String]);
[all …]
DSkTextFieldCell.m27 delegate:(id)anObject
35 delegate:anObject
44 delegate:(id)anObject
51 delegate:anObject
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DAMutableArray.m83 - (void) addObject:(id)anObject
85 if ( anObject == nil ) anObject = [NSNull null];
86 [anObject retain];
88 ptrBuffer[count++] = anObject;
119 - (void) insertObject:(id)anObject atIndex:(NSInteger)anIdx
121 if ( anObject == nil ) anObject = [NSNull null];
122 if ( anObject == nil ) {
136 ptrBuffer[anIdx] = [anObject retain];
DAMutableArray.h28 - (void) addObject:(id)anObject;
31 - (void) insertObject:(id)anObject atIndex:(NSInteger)anIdx;
DANTLRTreeRewriter.h40 + (ANTLRfptr *)newANTLRfptrWithRule:(SEL)aRuleAction withObject:(id)anObject;
41 -initWithRule:(SEL)ruleAction withObject:(id)anObject;
/external/apache-xml/src/main/java/org/apache/xml/utils/
DXMLStringDefault.java182 public boolean equals(XMLString anObject) in equals() argument
184 return m_str.equals(anObject.toString()); in equals()
201 public boolean equals(Object anObject) in equals() argument
203 return m_str.equals(anObject); in equals()
DXMLString.java138 public abstract boolean equals(XMLString anObject); in equals() argument
168 public abstract boolean equals(Object anObject); in equals() argument
/external/clang/test/ARCMT/
Dobjcmt-instancetype.m30 + (id)arrayWithObject:(id)anObject;
44 + (id)arrayWithObject:(id)anObject {
45 return anObject;
62 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
87 - (void)setObject:(id)anObject forKey:(id)aKey;
Dobjcmt-instancetype.m.result30 + (instancetype)arrayWithObject:(id)anObject;
44 + (instancetype)arrayWithObject:(id)anObject {
45 return anObject;
62 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
87 - (void)setObject:(id)anObject forKey:(id)aKey;
Dobjcmt-subscripting-unavailable.m.result19 + (id)arrayWithObject:(id)anObject;
30 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
53 - (void)setObject:(id)anObject forKey:(id)aKey;
Dobjcmt-subscripting-literals.m.result33 + (id)arrayWithObject:(id)anObject;
44 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
74 - (void)setObject:(id)anObject forKey:(id)aKey;
189 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
205 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
Dobjcmt-subscripting-unavailable.m19 + (id)arrayWithObject:(id)anObject;
30 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
53 - (void)setObject:(id)anObject forKey:(id)aKey;
Dobjcmt-subscripting-literals.m33 + (id)arrayWithObject:(id)anObject;
44 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
74 - (void)setObject:(id)anObject forKey:(id)aKey;
189 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
205 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
Dobjcmt-subscripting-literals-in-arc.m.result33 + (id)arrayWithObject:(id)anObject;
44 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
74 - (void)setObject:(id)anObject forKey:(id)aKey;
Dobjcmt-subscripting-literals-in-arc.m33 + (id)arrayWithObject:(id)anObject;
44 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
74 - (void)setObject:(id)anObject forKey:(id)aKey;
DCommon.h61 + (void)addObject:(id)anObject;
63 - (void)addObject:(id)anObject;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
DANTLRTreeRewriter.h40 + (ANTLRfptr *)newANTLRfptrWithRule:(SEL)aRuleAction withObject:(id)anObject;
41 -initWithRule:(SEL)ruleAction withObject:(id)anObject;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
DANTLRTreeRewriter.h40 + (ANTLRfptr *)newANTLRfptrWithRule:(SEL)aRuleAction withObject:(id)anObject;
41 -initWithRule:(SEL)ruleAction withObject:(id)anObject;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
DANTLRTreeRewriter.h40 + (ANTLRfptr *)newANTLRfptrWithRule:(SEL)aRuleAction withObject:(id)anObject;
41 -initWithRule:(SEL)ruleAction withObject:(id)anObject;
/external/clang/test/SemaObjC/
Dcocoa-api-usage.m26 + (id)arrayWithObject:(id)anObject;
39 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
64 - (void)setObject:(id)anObject forKey:(id)aKey;
Dcocoa-api-usage.m.fixed26 + (id)arrayWithObject:(id)anObject;
39 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
64 - (void)setObject:(id)anObject forKey:(id)aKey;
/external/clang/test/Analysis/
Ddead-stores.m17 - (BOOL)containsObject:(id)anObject;
32 void DeadStoreTest(NSObject *anObject) {
34 if ((keys = [anObject exposedBindings]) && // no-warning
DNSContainers.m47 - (NSArray *)arrayByAddingObject:(id)anObject;
57 - (void)addObject:(id)anObject;
58 - (void)insertObject:(id)anObject atIndex:(NSUInteger)index;
61 - (void)replaceObjectAtIndex:(NSUInteger)index withObject:(id)anObject;
84 - (void)setObject:(id)anObject forKey:(id <NSCopying>)aKey;
/external/compiler-rt/lib/asan/tests/
Dasan_mac_test_helpers.mm227 id anObject = [FixedArray new];
228 [anObject access:1];
229 [anObject access:11];
230 [anObject release];
/external/clang/test/Index/
Dcomment-objc-decls.m19 * \param[in] anObject input value
23 - (unsigned int)MethodMyProto:(nullable id)anObject inRange:(unsigned int)range;
34 // CHECK: <Declaration>- (unsigned int)MethodMyProto:(nullable id)anObject inRange:(unsigned int)ra…

123