Home
last modified time | relevance | path

Searched defs:id (Results 1 – 25 of 2033) sorted by relevance

12345678910>>...82

/external/clang/test/SemaObjC/
Dwarning-missing-selector-name.m7 -(void) Name1:(id)Arg1 Name2:(id)Arg2; // Name1:Name2: argument
8 -(void) Name1:(id) Name2:(id)Arg2; // expected-warning {{'Name2' used as the name of the previous p… argument
11 -(void) Name1:(id)Arg1 Name2:(id)Arg2 Name3:(id)Arg3; // Name1:Name2:Name3: argument
12 -(void) Name1:(id)Arg1 Name2:(id) Name3:(id)Arg3; // expected-warning {{'Name3' used as the name of… argument
15 - method:(id) second:(id)second; // expected-warning {{'second' used as the name of the previous pa… argument
23 -(void) Name1:(id)Arg1 Name2:(id)Arg2{} argument
24 -(void) Name1:(id) Name2:(id)Arg2 {} // expected-warning {{'Name2' used as the name of the previous… argument
27 -(void) Name1:(id)Arg1 Name2:(id)Arg2 Name3:(id)Arg3 {} argument
28 -(void) Name1:(id)Arg1 Name2:(id) Name3:(id)Arg3 {} // expected-warning {{'Name3' used as the name … argument
31 - method:(id)first second:(id)second {return 0; } argument
Dcocoa-api-usage.m26 + (id)arrayWithObject:(id)anObject; argument
27 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
28 + (id)arrayWithObjects:(id)firstObj, ...; argument
31 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
32 - (id)initWithObjects:(id)firstObj, ...; argument
39 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject; argument
40 - (void)setObject:(id)object atIndexedSubscript:(int)index; argument
44 - (id)objectForKeyedSubscript:(id)key; argument
49 + (id)dictionaryWithObject:(id)object forKey:(id)key; argument
50 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
[all …]
Dcircular-container.m9 - (void)addObject:(id)object; argument
10 - (void)insertObject:(id)object atIndex:(NSUInteger)index; argument
11 - (void)replaceObjectAtIndex:(NSUInteger)index withObject:(id)object; argument
12 - (void)setObject:(id)object atIndexedSubscript:(NSUInteger)index; argument
18 - (void)setObject:(id)object forKey:(id)key; argument
19 - (void)setObject:(id)object forKeyedSubscript:(id)key; argument
20 - (void)setValue:(id)value forKey:(NSString *)key; argument
26 - (void)addObject:(id)object; argument
36 - (void)addObject:(id)object; argument
37 - (void)insertObject:(id)object atIndex:(NSUInteger)index; argument
[all …]
Dblocks.m6 void bar(id(^)(void)); category
7 void foo(id <NSObject>(^objectCreationBlock)(void)) { category
11 void bar2(id(*)(void)); category
12 void foo2(id <NSObject>(*objectCreationBlock)(void)) { category
16 void bar3(id(*)()); category
17 void foo3(id (*objectCreationBlock)(int)) { category
21 void bar4(id(^)()); category
22 void foo4(id (^objectCreationBlock)(int)) { category
26 void bar5(id(^)(void)); // expected-note 3{{passing argument to parameter here}} category
27 void foo5(id (^objectCreationBlock)(bool)) { category
[all …]
Ddist-object-modifiers.m6 - (void)doStuff:(bycopy id)clientId; // expected-note {{previous declaration is here}}
8 + (oneway id) stillMore : (byref id)Arg : (bycopy oneway id)Arg1; // expected-note 3 {{previous de…
17 - (void)doStuff:(id)clientId { } // expected-warning {{conflicting distributed object modifiers on … argument
19 + (id) stillMore : (id)Arg : (bycopy id)Arg1 { return Arg; } // expected-warning {{conflicting dis… argument
Dproperty-deprecated-warning.m18 - (void)setPtarget:(id)arg; argument
19 - (void)setPartialPtarget:(id)arg; argument
33 - (void)setTarget:(id)target; argument
34 - (void)setPartialTarget:(id)target; argument
49 - (void)setTarget:(id)target {}; argument
50 - (void)setPartialTarget:(id)target {}; argument
51 - (void)setPtarget:(id)val {}; argument
73 - (void)setPtarget:(id)val {}; argument
74 - (void)setPartialPtarget:(id)val {}; argument
75 - (void)setTarget:(id)target {}; argument
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRBaseTreeAdaptor.m98 return [(id)tree isNil]; argument
103 return [self dupTree:(id)tree Parent:nil]; argument
115 id newTree = [self dupNode:t]; argument
139 - (void) addChild:(id)child toTree:(id)t argument
142 [(id)t addChild:child]; argument
178 id newRootTree = (id)newRoot; argument
200 id r = (id)root; argument
217 return [self becomeRoot:(id)[self create:newRoot] old:oldRoot]; argument
266 - (id<ANTLRToken>) getToken:(ANTLRCommonTree *) t argument
284 - (id) getChild:(id)t At:(NSInteger)index argument
[all …]
DANTLRDoubleKeyMap.m17 id prev = nil; argument
37 - (AMutableDictionary *) objectForKey:(id)k1 argument
46 - (NSArray *) valuesForKey:(id)k1 argument
67 - (NSArray *) allKeys2:(id)k1 argument
91 - (void) dealloc argument
DANTLRMapElement.m56 + (id) newANTLRMapElementWithName:(NSString *)aName Node:(id)aNode argument
61 + (id) newANTLRMapElementWithObj1:(id)anObj1 Obj2:(id)anObj2 argument
66 - (id) init argument
96 - (id) initWithName:(NSString *)aName Node:(id)aNode argument
107 - (id) initWithObj1:(id)anIndex Obj2:(id)aNode argument
127 - (id) copyWithZone:(NSZone *)aZone argument
181 - (void)putNode:(id)aNode argument
194 - (void)putNode:(id)aNode With:(NSInteger)uniqueID argument
195 {
/external/clang/test/ARCMT/
Dobjcmt-subscripting-unavailable.m19 + (id)arrayWithObject:(id)anObject; argument
20 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
21 + (id)arrayWithObjects:(id)firstObj, ...; argument
24 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
25 - (id)initWithObjects:(id)firstObj, ...; argument
30 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject; argument
38 + (id)dictionaryWithObject:(id)object forKey:(id)key; argument
39 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
40 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...; argument
44 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
[all …]
Dobjcmt-instancetype.m30 + (id)arrayWithObject:(id)anObject; argument
31 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
32 + (id)arrayWithObjects:(id)firstObj, ...; argument
35 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
36 - (id)initWithObjects:(id)firstObj, ...; argument
44 + (id)arrayWithObject:(id)anObject { argument
47 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt { return 0; }
48 + (id)arrayWithObjects:(id)firstObj, ... { argument
54 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt { return 0; }
55 - (id)initWithObjects:(id)firstObj, ... { return 0; } argument
[all …]
Dobjcmt-subscripting-literals-in-arc.m33 + (id)arrayWithObject:(id)anObject; argument
34 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
35 + (id)arrayWithObjects:(id)firstObj, ...; argument
38 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
39 - (id)initWithObjects:(id)firstObj, ...; argument
44 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject; argument
48 - (void)setObject:(id)obj atIndexedSubscript:(unsigned)idx; argument
52 - (id)objectForKey:(id)aKey; argument
56 - (id)objectForKeyedSubscript:(id)key; argument
61 + (id)dictionaryWithObject:(id)object forKey:(id)key; argument
[all …]
Dobjcmt-subscripting-literals.m33 + (id)arrayWithObject:(id)anObject; argument
34 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
35 + (id)arrayWithObjects:(id)firstObj, ...; argument
38 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
39 - (id)initWithObjects:(id)firstObj, ...; argument
44 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject; argument
48 - (void)setObject:(id)obj atIndexedSubscript:(unsigned)idx; argument
52 - (id)objectForKey:(id)aKey; argument
56 - (id)objectForKeyedSubscript:(id)key; argument
61 + (id)dictionaryWithObject:(id)object forKey:(id)key; argument
[all …]
Dobjcmt-atomic-property.m69 - (void)setTarget:(id)target; argument
74 - (void)setXxxdelegateYYY:(id)delegate; argument
76 - (void)setDataSource:(id)source; argument
79 - (void)setMYtarget: (id)target; argument
82 - (void)setTargetX: (id)t; argument
91 - (void)setAnObject : (id) object; argument
121 - (void)setTarget:(id)target; argument
126 - (void)setXxxdelegateYYY:(id)delegate; argument
128 - (void)setDataSource:(id)source; argument
131 - (void)setMYtarget: (id)target; argument
[all …]
Dobjcmt-ns-nonatomic-iosonly.m76 - (void)setTarget:(id)target; argument
81 - (void)setXxxdelegateYYY:(id)delegate; argument
83 - (void)setDataSource:(id)source; argument
86 - (void)setMYtarget: (id)target; argument
89 - (void)setTargetX: (id)t; argument
98 - (void)setAnObject : (id) object; argument
128 - (void)setTarget:(id)target; argument
133 - (void)setXxxdelegateYYY:(id)delegate; argument
135 - (void)setDataSource:(id)source; argument
138 - (void)setMYtarget: (id)target; argument
[all …]
/external/clang/test/SemaObjCXX/
Dblocks.mm4 void bar(id(^)(void)); category
5 void foo(id <NSObject>(^objectCreationBlock)(void)) { category
9 void bar2(id(*)(void)); category
10 void foo2(id <NSObject>(*objectCreationBlock)(void)) { category
14 void bar3(id(*)()); // expected-note{{candidate function}} category
15 void foo3(id (*objectCreationBlock)(int)) { category
19 void bar4(id(^)()); // expected-note{{candidate function}} category
20 void foo4(id (^objectCreationBlock)(int)) { category
24 void foo5(id (^x)(int)) { category
/external/clang/test/Index/
Dfile-refs-subscripting.m3 + (id)arrayWithObjects:(id *)objects count:(unsigned)count;
8 - (void)setObject:(id)object atIndexedSubscript:(int)index; argument
12 - (id)objectForKeyedSubscript:(id)key; argument
13 + (id)dictionaryWithObjects:(id *)objects forKeys:(id *)keys count:(unsigned)count;
17 - (void)setObject:(id)object forKeyedSubscript:(id)key; argument
Dindex-subscripting-literals.m3 + (id)arrayWithObjects:(id *)objects count:(unsigned)count;
8 - (void)setObject:(id)object atIndexedSubscript:(int)index; argument
12 - (id)objectForKeyedSubscript:(id)key; argument
13 + (id)dictionaryWithObjects:(id *)objects forKeys:(id *)keys count:(unsigned)count;
17 - (void)setObject:(id)object forKeyedSubscript:(id)key; argument
Dannotate-subscripting.m3 + (id)arrayWithObjects:(id *)objects count:(unsigned)count;
8 - (void)setObject:(id)object atIndexedSubscript:(int)index; argument
12 - (id)objectForKeyedSubscript:(id)key; argument
13 + (id)dictionaryWithObjects:(id *)objects forKeys:(id *)keys count:(unsigned)count;
17 - (void)setObject:(id)object forKeyedSubscript:(id)key; argument
/external/clang/test/PCH/
Dsubscripting-literals.m11 + (id)arrayWithObjects:(id *)objects count:(unsigned)count;
15 - (void)setObject:(id)object atIndexedSubscript:(int)index; argument
19 - (id)objectForKeyedSubscript:(id)key; argument
20 + (id)dictionaryWithObjects:(id *)objects forKeys:(id *)keys count:(unsigned)count;
24 - (void)setObject:(id)object forKeyedSubscript:(id)key; argument
/external/google-breakpad/src/client/mac/testapp/
DController.m46 - (void)generateReportWithoutCrash:(id)sender { argument
50 - (IBAction)showForkTestWindow:(id) sender { argument
54 - (IBAction)forkTestOptions:(id)sender { argument
75 - (IBAction)forkTestGo:(id)sender { argument
132 - (IBAction)crash:(id)sender { argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowResources.java67 public int getColor(int id) throws Resources.NotFoundException { in getColor()
84 public String getString(int id) throws Resources.NotFoundException { in getString()
89 public String getString(int id, Object... formatArgs) throws Resources.NotFoundException { in getString()
95 …public String getQuantityString(int id, int quantity, Object... formatArgs) throws Resources.NotFo… in getQuantityString()
101 public String getQuantityString(int id, int quantity) throws Resources.NotFoundException { in getQuantityString()
106 public InputStream openRawResource(int id) throws Resources.NotFoundException { in openRawResource()
111 public String[] getStringArray(int id) throws Resources.NotFoundException { in getStringArray()
120 public CharSequence[] getTextArray(int id) throws Resources.NotFoundException { in getTextArray()
125 public CharSequence getText(int id) throws Resources.NotFoundException { in getText()
180 public float getDimension(int id) throws Resources.NotFoundException { in getDimension()
[all …]
DShadowNotificationManager.java21 public void notify(int id, Notification notification) in notify()
27 public void notify(String tag, int id, Notification notification) { in notify()
35 public void cancel(int id) in cancel()
41 public void cancel(String tag, int id) { in cancel()
61 public Notification getNotification(int id) { in getNotification()
66 Integer id = idForTag.get(tag); in getNotification() local
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
DIdentityScope2Test.java98 public void addIdentity(Identity id) throws KeyManagementException { in addIdentity()
108 public void removeIdentity(Identity id) throws KeyManagementException { in removeIdentity()
144 Identity id = new IdentitySubclass("id1"); in test_addIdentityLjava_security_Identity() local
163 Identity id = new IdentitySubclass(); in test_removeIdentityLjava_security_Identity() local
181 Identity id = new IdentitySubclass(); in test_identities() local
194 Identity id = new IdentitySubclass("principal name"); in test_getIdentityLjava_security_Principal() local
210 Identity id = new IdentitySubclass(); in test_getIdentityLjava_security_PublicKey() local
224 Identity id = new IdentitySubclass("test"); in test_getIdentityLjava_lang_String() local
238 Identity id = new IdentitySubclass(); in test_size() local
250 Identity id = new IdentitySubclass(); in test_toString() local
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/docs/apidoc/
Depydoc.js85 function toggleCallGraph(id) { argument
92 function expand(id) { argument
105 function collapse(id) { argument
131 function toggle(id) { argument
140 function highlight(id) { argument
190 function kill_doclink(id) { argument
202 function doclink(id, name, targets_id) { argument

12345678910>>...82