/external/clang/test/SemaObjC/ |
D | warning-missing-selector-name.m | 7 -(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
|
D | cocoa-api-usage.m | 26 + (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 …]
|
D | blocks.m | 6 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 …]
|
D | dist-object-modifiers.m | 6 - (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
|
D | circular-container.m | 9 - (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 …]
|
D | override-nullability.m | 7 - (nonnull id)bad:(nullable id)obj; // expected-note 2 {{previous declaration is here}} 8 - (nullable id)notAsBad:(nonnull id)obj; 12 - (nullable id)bad:(nonnull id)obj; // expected-warning {{conflicting nullability specifier on retu… 14 - (nonnull id)notAsBad:(nullable id)obj;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRBaseTreeAdaptor.m | 98 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 …]
|
D | ANTLRDoubleKeyMap.m | 17 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
|
D | ANTLRMapElement.m | 56 + (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/ |
D | objcmt-subscripting-unavailable.m | 19 + (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 …]
|
D | objcmt-instancetype.m | 30 + (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 …]
|
D | objcmt-subscripting-literals-in-arc.m | 33 + (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 …]
|
D | objcmt-subscripting-literals.m | 33 + (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 …]
|
/external/clang/test/SemaObjCXX/ |
D | blocks.mm | 4 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/sl4a/Common/src/com/googlecode/android_scripting/facade/net/ |
D | SocketFacade.java | 105 public static FileDescriptor getFileDescriptor(String id) { in getFileDescriptor() 114 public static DatagramSocket getDatagramSocket(String id) { in getDatagramSocket() 123 public static Socket getSocket(String id) { in getSocket() 132 public static ServerSocket getServerSocket(String id) { in getServerSocket() 160 String id = getSocketId(socket); in openTcpSocket() local 175 public Boolean closeTcpSocket(String id) { in closeTcpSocket() 202 String id = getServerSocketId(serverSocket); in openTcpServerSocket() local 217 public Boolean closeTcpServerSocket(String id) { in closeTcpServerSocket() 239 public String acceptTcpSocket(String id) { in acceptTcpSocket() 259 public Boolean sendDataOverTcpSocket(String id, String message) { in sendDataOverTcpSocket() [all …]
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | pending_counts_test.cc | 28 for (int id = 0; id < C; id++) { in TEST() local 33 for (int id = 0; id < C; id++) { in TEST() local 36 for (int id = 0; id < C; id++) { in TEST() local 41 for (int id = 0; id < C; id++) { in TEST() local 64 for (int id = 0; id < C; id++) { in TEST() local 68 for (int id = 0; id < C; id++) { in TEST() local 72 for (int id = 0; id < C; id++) { in TEST() local 83 for (int id = 0; id < 2; id++) { in TEST() local 116 for (int id = 0; id < C; id++) { in TEST() local 120 for (int id = 0; id < C; id++) { in TEST() local [all …]
|
/external/clang/test/Index/ |
D | annotate-subscripting.m | 3 + (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
|
D | index-subscripting-literals.m | 3 + (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
|
D | file-refs-subscripting.m | 3 + (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/ltp/include/ |
D | tst_checkpoint.h | 23 #define TST_CHECKPOINT_WAIT(id) \ argument 26 #define TST_CHECKPOINT_WAIT2(id, msec_timeout) \ argument 29 #define TST_CHECKPOINT_WAKE(id) \ argument 32 #define TST_CHECKPOINT_WAKE2(id, nr_wake) \ argument 35 #define TST_CHECKPOINT_WAKE_AND_WAIT(id) \ argument
|
/external/google-breakpad/src/client/mac/testapp/ |
D | Controller.m | 46 - (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/skia/site/dev/design/ |
D | pdftheory.md | 344 ### <span id="Layers">Layers</span> ### 364 ### <span id="Fonts">Fonts</span> ### 379 #### *Type1/Type3 fonts* #### 400 #### *Font subsetting* #### 406 ### <span id="Shaders">Shaders</span> ### 435 ### <span id="Xfer_modes">Xfer modes</span> ###
|
/external/skqp/site/dev/design/ |
D | pdftheory.md | 344 ### <span id="Layers">Layers</span> ### 364 ### <span id="Fonts">Fonts</span> ### 379 #### *Type1/Type3 fonts* #### 400 #### *Font subsetting* #### 406 ### <span id="Shaders">Shaders</span> ### 435 ### <span id="Xfer_modes">Xfer modes</span> ###
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowNotificationManager.java | 21 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/clang/test/PCH/ |
D | subscripting-literals.m | 12 + (id)arrayWithObjects:(id *)objects count:(unsigned)count; 16 - (void)setObject:(id)object atIndexedSubscript:(int)index; argument 20 - (id)objectForKeyedSubscript:(id)key; argument 21 + (id)dictionaryWithObjects:(id *)objects forKeys:(id *)keys count:(unsigned)count; 25 - (void)setObject:(id)object forKeyedSubscript:(id)key; argument
|