/external/icu/icu4c/source/data/curr/ |
D | supplementalData.txt | 11 id{"SHP"} 20 id{"EUR"} 27 id{"ESP"} 38 id{"FRF"} 49 id{"ADP"} 62 id{"AED"} 71 id{"AFN"} 78 id{"AFA"} 91 id{"XCD"} 100 id{"XCD"} [all …]
|
/external/clang/test/SemaObjCXX/ |
D | arc-type-traits.mm | 16 struct HasStrong { id obj; }; 17 struct HasWeak { __weak id obj; }; 18 struct HasUnsafeUnretained { __unsafe_unretained id obj; }; 21 TRAIT_IS_TRUE(__has_nothrow_assign, __strong id); 22 TRAIT_IS_TRUE(__has_nothrow_assign, __weak id); 23 TRAIT_IS_TRUE(__has_nothrow_assign, __autoreleasing id); 24 TRAIT_IS_TRUE(__has_nothrow_assign, __unsafe_unretained id); 30 TRAIT_IS_TRUE(__has_nothrow_copy, __strong id); 31 TRAIT_IS_TRUE(__has_nothrow_copy, __weak id); 32 TRAIT_IS_TRUE(__has_nothrow_copy, __autoreleasing id); [all …]
|
D | arc-type-conversion.mm | 4 void * cvt(id arg) // expected-note{{candidate function not viable: cannot convert argument of inco… 8 (void)(id)arg; 9 …(void)(__autoreleasing id*)arg; // expected-error{{cast of an Objective-C pointer to '__autoreleas… 10 …(void)(id*)arg; // expected-error{{cast of an Objective-C pointer to '__strong id *' is disallowed… 12 (void)(__autoreleasing id**)voidp_val; 17 (void)(__strong id**)(0); 20 …cted-error{{cannot initialize return object of type 'void *' with an lvalue of type '__strong id'}} 36 void static_casts(id arg) { 38 …(void)static_cast<int*>(arg); // expected-error {{cannot cast from type 'id' to pointer type 'int … 39 (void)static_cast<id>(arg); [all …]
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRTreeAdaptor.h | 38 - (id)dupNode:(id)aNode; // copies just the node 39 - (id)dupTree:(id)aTree; // copies the entire subtree, recursively 45 - (id) emptyNode; 61 - (id) errorNode:(id<ANTLRTokenStream>)anInput 62 From:(id<ANTLRToken>)aStartToken 63 To:(id<ANTLRToken>)aStopToken 67 - (BOOL) isNil:(id)aTree; 70 - (void) addChild:(id)child toTree:(id)aTree; 98 - (id) becomeRoot:(id)newRoot old:(id)oldRoot; 100 - (id) rulePostProcessing:(id)root; [all …]
|
D | ANTLRBaseTreeAdaptor.h | 37 - (id) init; 39 - (id) copyWithZone:(NSZone *)aZone; 41 - (id) emptyNode; 43 - (id) createNil; 56 - (id) errorNode:(id<ANTLRTokenStream>)anInput 57 From:(id<ANTLRToken>)startToken 58 To:(id<ANTLRToken>)stopToken 61 - (BOOL) isNil:(id<ANTLRBaseTree>) aTree; 63 - (id<ANTLRBaseTree>)dupTree:(id<ANTLRBaseTree>)aTree; 69 - (id<ANTLRBaseTree>)dupTree:(id<ANTLRBaseTree>)aTree Parent:(id<ANTLRBaseTree>)parent; [all …]
|
D | ANTLRLinkBase.h | 40 + (id<ANTLRLinkList>)newANTLRLinkBase; 41 + (id<ANTLRLinkList>)newANTLRLinkBase:(id<ANTLRLinkList>)np Prev:(id<ANTLRLinkList>)pp; 45 - (id<ANTLRLinkList>) append:(id<ANTLRLinkList>)node; 46 - (id<ANTLRLinkList>) insert:(id<ANTLRLinkList>)node; 48 - (id<ANTLRLinkList>) getfNext; 49 - (void) setFNext:(id<ANTLRLinkList>)np; 50 - (id<ANTLRLinkList>)getfPrev; 51 - (void) setFPrev:(id<ANTLRLinkList>)pp; 53 @property (retain) id<ANTLRLinkList> fPrev; 54 @property (retain) id<ANTLRLinkList> fNext; [all …]
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRTreeAdaptor.h | 37 + (id<ANTLRTree>) newEmptyTree; 39 - (id<ANTLRTree>) createTree:(id<ANTLRToken>)payload; 42 - (id<ANTLRTree>)dupNode:(id<ANTLRTree>)aNode; // copies just the node 43 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree; // copies the entire subtree, recursively 49 - (id) emptyNode; 65 - (id) errorNode:(id<ANTLRTokenStream>)anInput 66 From:(id<ANTLRToken>)aStartToken 67 To:(id<ANTLRToken>)aStopToken 71 - (BOOL) isNil:(id<ANTLRTree>)aTree; 74 - (void) addChild:(id<ANTLRTree>)child toTree:(id<ANTLRTree>)aTree; [all …]
|
D | ANTLRTreeWizard.h | 42 - (void) visit:(id<ANTLRTree>)t Parent:(id<ANTLRTree>)parent ChildIndex:(NSInteger)childIndex Map:(… 48 id actor; 49 id object1; 50 id object2; 52 …LRVisitor *)newANTLRVisitor:(NSInteger)anAction Actor:(id)anActor Object:(id)anObject1 Object:(id)… 53 - (id) initWithAction:(NSInteger)anAction Actor:(id)anActor Object:(id)anObject1 Object:(id)anObjec… 55 - (void) visit:(id<ANTLRTree>)t; 56 - (void) visit:(id<ANTLRTree>)t Parent:(id<ANTLRTree>)parent ChildIndex:(NSInteger)childIndex Map:(… 70 + (ANTLRTreePattern *)newANTLRTreePattern:(id<ANTLRToken>)payload; 72 - (id) initWithToken:(id<ANTLRToken>)payload; [all …]
|
D | ANTLRBaseTreeAdaptor.h | 40 + (id<ANTLRTreeAdaptor>) newEmptyTree; 42 - (id) init; 44 - (id) copyWithZone:(NSZone *)aZone; 46 - (id) emptyNode; 65 - (id) errorNode:(id<ANTLRTokenStream>)anInput 66 From:(id<ANTLRToken>)startToken 67 To:(id<ANTLRToken>)stopToken 70 - (BOOL) isNil:(id<ANTLRTree>) aTree; 72 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree; 77 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree Parent:(id<ANTLRTree>)parent; [all …]
|
D | ANTLRLinkBase.h | 36 + (id<ANTLRLinkList>)newANTLRLinkBase; 37 + (id<ANTLRLinkList>)newANTLRLinkBase:(id<ANTLRLinkList>)np Prev:(id<ANTLRLinkList>)pp; 41 - (id<ANTLRLinkList>) append:(id<ANTLRLinkList>)node; 42 - (id<ANTLRLinkList>) insert:(id<ANTLRLinkList>)node; 44 - (id<ANTLRLinkList>) getfNext; 45 - (void) setFNext:(id<ANTLRLinkList>)np; 46 - (id<ANTLRLinkList>)getfPrev; 47 - (void) setFPrev:(id<ANTLRLinkList>)pp; 52 id<ANTLRLinkList> fPrev; 53 id<ANTLRLinkList> fNext; [all …]
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRTreeAdaptor.h | 37 + (id<ANTLRTree>) newEmptyTree; 39 - (id<ANTLRTree>) createTree:(id<ANTLRToken>)payload; 42 - (id<ANTLRTree>)dupNode:(id<ANTLRTree>)aNode; // copies just the node 43 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree; // copies the entire subtree, recursively 49 - (id) emptyNode; 65 - (id) errorNode:(id<ANTLRTokenStream>)anInput 66 From:(id<ANTLRToken>)aStartToken 67 To:(id<ANTLRToken>)aStopToken 71 - (BOOL) isNil:(id<ANTLRTree>)aTree; 74 - (void) addChild:(id<ANTLRTree>)child toTree:(id<ANTLRTree>)aTree; [all …]
|
D | ANTLRTreeWizard.h | 42 - (void) visit:(id<ANTLRTree>)t Parent:(id<ANTLRTree>)parent ChildIndex:(NSInteger)childIndex Map:(… 48 id actor; 49 id object1; 50 id object2; 52 …LRVisitor *)newANTLRVisitor:(NSInteger)anAction Actor:(id)anActor Object:(id)anObject1 Object:(id)… 53 - (id) initWithAction:(NSInteger)anAction Actor:(id)anActor Object:(id)anObject1 Object:(id)anObjec… 55 - (void) visit:(id<ANTLRTree>)t; 56 - (void) visit:(id<ANTLRTree>)t Parent:(id<ANTLRTree>)parent ChildIndex:(NSInteger)childIndex Map:(… 70 + (ANTLRTreePattern *)newANTLRTreePattern:(id<ANTLRToken>)payload; 72 - (id) initWithToken:(id<ANTLRToken>)payload; [all …]
|
D | ANTLRBaseTreeAdaptor.h | 40 + (id<ANTLRTreeAdaptor>) newEmptyTree; 42 - (id) init; 44 - (id) copyWithZone:(NSZone *)aZone; 46 - (id) emptyNode; 65 - (id) errorNode:(id<ANTLRTokenStream>)anInput 66 From:(id<ANTLRToken>)startToken 67 To:(id<ANTLRToken>)stopToken 70 - (BOOL) isNil:(id<ANTLRTree>) aTree; 72 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree; 77 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree Parent:(id<ANTLRTree>)parent; [all …]
|
D | ANTLRLinkBase.h | 36 + (id<ANTLRLinkList>)newANTLRLinkBase; 37 + (id<ANTLRLinkList>)newANTLRLinkBase:(id<ANTLRLinkList>)np Prev:(id<ANTLRLinkList>)pp; 41 - (id<ANTLRLinkList>) append:(id<ANTLRLinkList>)node; 42 - (id<ANTLRLinkList>) insert:(id<ANTLRLinkList>)node; 44 - (id<ANTLRLinkList>) getfNext; 45 - (void) setFNext:(id<ANTLRLinkList>)np; 46 - (id<ANTLRLinkList>)getfPrev; 47 - (void) setFPrev:(id<ANTLRLinkList>)pp; 52 id<ANTLRLinkList> fPrev; 53 id<ANTLRLinkList> fNext; [all …]
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRTreeAdaptor.h | 37 + (id<ANTLRTree>) newEmptyTree; 39 - (id<ANTLRTree>) createTree:(id<ANTLRToken>)payload; 42 - (id<ANTLRTree>)dupNode:(id<ANTLRTree>)aNode; // copies just the node 43 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree; // copies the entire subtree, recursively 49 - (id) emptyNode; 65 - (id) errorNode:(id<ANTLRTokenStream>)anInput 66 From:(id<ANTLRToken>)aStartToken 67 To:(id<ANTLRToken>)aStopToken 71 - (BOOL) isNil:(id<ANTLRTree>)aTree; 74 - (void) addChild:(id<ANTLRTree>)child toTree:(id<ANTLRTree>)aTree; [all …]
|
D | ANTLRTreeWizard.h | 42 - (void) visit:(id<ANTLRTree>)t Parent:(id<ANTLRTree>)parent ChildIndex:(NSInteger)childIndex Map:(… 48 id actor; 49 id object1; 50 id object2; 52 …LRVisitor *)newANTLRVisitor:(NSInteger)anAction Actor:(id)anActor Object:(id)anObject1 Object:(id)… 53 - (id) initWithAction:(NSInteger)anAction Actor:(id)anActor Object:(id)anObject1 Object:(id)anObjec… 55 - (void) visit:(id<ANTLRTree>)t; 56 - (void) visit:(id<ANTLRTree>)t Parent:(id<ANTLRTree>)parent ChildIndex:(NSInteger)childIndex Map:(… 70 + (ANTLRTreePattern *)newANTLRTreePattern:(id<ANTLRToken>)payload; 72 - (id) initWithToken:(id<ANTLRToken>)payload; [all …]
|
D | ANTLRBaseTreeAdaptor.h | 40 + (id<ANTLRTreeAdaptor>) newEmptyTree; 42 - (id) init; 44 - (id) copyWithZone:(NSZone *)aZone; 46 - (id) emptyNode; 65 - (id) errorNode:(id<ANTLRTokenStream>)anInput 66 From:(id<ANTLRToken>)startToken 67 To:(id<ANTLRToken>)stopToken 70 - (BOOL) isNil:(id<ANTLRTree>) aTree; 72 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree; 77 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree Parent:(id<ANTLRTree>)parent; [all …]
|
D | ANTLRLinkBase.h | 36 + (id<ANTLRLinkList>)newANTLRLinkBase; 37 + (id<ANTLRLinkList>)newANTLRLinkBase:(id<ANTLRLinkList>)np Prev:(id<ANTLRLinkList>)pp; 41 - (id<ANTLRLinkList>) append:(id<ANTLRLinkList>)node; 42 - (id<ANTLRLinkList>) insert:(id<ANTLRLinkList>)node; 44 - (id<ANTLRLinkList>) getfNext; 45 - (void) setFNext:(id<ANTLRLinkList>)np; 46 - (id<ANTLRLinkList>)getfPrev; 47 - (void) setFPrev:(id<ANTLRLinkList>)pp; 52 id<ANTLRLinkList> fPrev; 53 id<ANTLRLinkList> fNext; [all …]
|
/external/iproute2/lib/ |
D | rt_names.c | 33 unsigned int id; member 36 static int fread_id_name(FILE *fp, int *id, char *namebuf) in fread_id_name() argument 49 if (sscanf(p, "0x%x %s\n", id, namebuf) != 2 && in fread_id_name() 50 sscanf(p, "0x%x %s #", id, namebuf) != 2 && in fread_id_name() 51 sscanf(p, "%d %s\n", id, namebuf) != 2 && in fread_id_name() 52 sscanf(p, "%d %s #", id, namebuf) != 2) { in fread_id_name() 66 int id; in rtnl_hash_initialize() local 74 while ((ret = fread_id_name(fp, &id, &namebuf[0]))) { in rtnl_hash_initialize() 82 if (id < 0) in rtnl_hash_initialize() 86 entry->id = id; in rtnl_hash_initialize() [all …]
|
/external/selinux/checkpolicy/ |
D | policy_define.c | 77 static int id_has_dot(char *id); 115 int insert_id(const char *id, int push) in insert_id() argument 120 newid = (char *)malloc(strlen(id) + 1); in insert_id() 125 strcpy(newid, id); in insert_id() 141 static int id_has_dot(char *id) in id_has_dot() argument 143 if (strchr(id, '.') >= id + 1) { in id_has_dot() 151 char *id = 0; in define_class() local 157 id = queue_remove(id_queue); in define_class() 158 free(id); in define_class() 162 id = (char *)queue_remove(id_queue); in define_class() [all …]
|
/external/libxml2/doc/html/ |
D | index.sgml | 1 <ANCHOR id="libxml-testOOMlib" href="libxml/libxml-testOOMlib.html"> 2 <ANCHOR id="test-malloc" href="libxml/libxml-testOOMlib.html#test-malloc"> 3 <ANCHOR id="test-realloc" href="libxml/libxml-testOOMlib.html#test-realloc"> 4 <ANCHOR id="test-free" href="libxml/libxml-testOOMlib.html#test-free"> 5 <ANCHOR id="test-strdup" href="libxml/libxml-testOOMlib.html#test-strdup"> 6 <ANCHOR id="TestMemoryFunction" href="libxml/libxml-testOOMlib.html#TestMemoryFunction"> 7 <ANCHOR id="test-oom-handling" href="libxml/libxml-testOOMlib.html#test-oom-handling"> 8 <ANCHOR id="test-get-malloc-blocks-outstanding" href="libxml/libxml-testOOMlib.html#test-get-malloc… 9 <ANCHOR id="libxml-wincecompat" href="libxml/libxml-wincecompat.html"> 10 <ANCHOR id="MAX-STRERROR-CAPS" href="libxml/libxml-wincecompat.html#MAX-STRERROR-CAPS"> [all …]
|
/external/wpa_supplicant_8/hs20/server/www/ |
D | users.php | 11 $id = $_GET["id"]; variable 12 if (!is_numeric($id)) 13 $id = 0; variable 15 $id = 0; variable 21 if ($cmd == 'eventlog' && $id > 0) { 22 $row = $db->query("SELECT dump FROM eventlog WHERE rowid=$id")->fetch(); 35 if ($cmd == 'mo' && $id > 0) { 41 $row = $db->query("SELECT $mo FROM users WHERE rowid=$id")->fetch(); 48 if ($cmd == 'cert' && $id > 0) { 49 $row = $db->query("SELECT cert_pem FROM users WHERE rowid=$id")->fetch(); [all …]
|
/external/boringssl/src/crypto/obj/ |
D | objects.txt | 40 !Alias id-fieldType ansi-X9-62 1 43 X9-62_characteristic-two-field 3 : id-characteristic-two-basis 47 !Alias id-publicKeyType ansi-X9-62 2 48 X9-62_id-publicKeyType 1 : id-ecPublicKey 79 !Alias id-ecSigType ansi-X9-62 4 155 ISO-US 113533 7 66 13 : id-PasswordBasedMAC : password based MAC 156 ISO-US 113533 7 66 30 : id-DHBasedMac : Diffie-Hellman based MAC 232 SMIME 0 : id-smime-mod 233 SMIME 1 : id-smime-ct 234 SMIME 2 : id-smime-aa [all …]
|
/external/clang/test/ARCMT/ |
D | objcmt-instancetype.m | 10 + (id)alloc; 14 + (id)stringWithString:(NSString *)string; 15 - (id)initWithString:(NSString *)aString; 19 + (id)stringWithString:(NSString *)string { return 0; }; 24 - (id)objectAtIndex:(unsigned long)index; 25 - (id)objectAtIndexedSubscript:(int)index; 29 + (id)array; 30 + (id)arrayWithObject:(id)anObject; argument 31 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt; argument 32 + (id)arrayWithObjects:(id)firstObj, ...; argument [all …]
|
/external/tcpdump/tests/ |
D | spb.out | 1 IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 2 IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 3 IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 4 IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 5 IS-IS, L1 LSP, lsp-id 2222.2222.2222.00-00, seq 0x0000000f, lifetime 1200s, length 149 6 IS-IS, L1 PSNP, src-id 8888.8888.8888.00, length 35 7 IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 8 IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 9 IS-IS, p2p IIH, src-id 8888.8888.8888, length 1492 10 IS-IS, p2p IIH, src-id 2222.2222.2222, length 1492 [all …]
|