Searched refs:aKey (Results 1 – 19 of 19) sorted by relevance
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | AMutableDictionary.m | 89 - (id) objectForKey:(id)aKey 97 if ( [aKey isKindOfClass:[NSString class]] ) { 98 kp = [ACBKey newKeyWithKStr:aKey]; 101 else if ( [aKey isKindOfClass:[ACBKey class]] ) { 102 kp = aKey; 103 //ACBKey *akey = [ACBKey newKey:aKey]; 107 … reason:[NSString stringWithFormat:@"What kind of key is this? %@", aKey] 125 - (void) setObject:(id)obj forKey:(id)aKey 129 if ( [aKey isKindOfClass:[NSString class]] ) { 130 kp = [ACBKey newKeyWithKStr:aKey]; [all …]
|
D | AMutableDictionary.h | 43 - (id) objectForKey:(id)aKey; 44 - (void) setObject:(id)obj forKey:(id)aKey; 45 - (void) removeObjectForKey:(id)aKey;
|
D | ACBTree.h | 34 + (ACBKey *)newKeyWithKStr:(NSString *)aKey; 36 - (id) initWithKStr:(NSString *)aKey;
|
D | ACBTree.m | 28 + (ACBKey *)newKeyWithKStr:(NSString *)aKey 30 return [[ACBKey alloc] initWithKStr:(NSString *)aKey]; 42 - (id) initWithKStr:(NSString *)aKey 48 key = aKey; 49 len = [aKey length]; 53 strncpy( kstr, [aKey cStringUsingEncoding:NSASCIIStringEncoding], len);
|
/external/clang/test/SemaCXX/ |
D | return-noreturn.cpp | 109 void test_PR9380(const PR9380& aKey) { in test_PR9380() argument 110 const PR9380& flatKey = PR9380_B(aKey); in test_PR9380()
|
/external/clang/test/SemaObjC/ |
D | cocoa-api-usage.m | 64 - (id)objectForKey:(id)aKey; 68 - (void)setObject:(id)anObject forKey:(id)aKey;
|
D | cocoa-api-usage.m.fixed | 64 - (id)objectForKey:(id)aKey; 68 - (void)setObject:(id)anObject forKey:(id)aKey;
|
D | compare-qualified-id.m | 15 @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey; @end
|
/external/clang/test/ARCMT/ |
D | objcmt-subscripting-literals.m.result | 58 - (id)objectForKey:(id)aKey; 62 - (void)setObject:(id)anObject forKey:(id)aKey;
|
D | objcmt-subscripting-literals.m | 58 - (id)objectForKey:(id)aKey; 62 - (void)setObject:(id)anObject forKey:(id)aKey;
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
D | HashMapTest.java | 498 MyKey aKey = new MyKey(); in test_putLjava_lang_ObjectLjava_lang_Object() local 499 assertNull(objmap.put(aKey, "value")); in test_putLjava_lang_ObjectLjava_lang_Object() 502 assertEquals("value", objmap.get(aKey)); in test_putLjava_lang_ObjectLjava_lang_Object()
|
/external/clang/test/Analysis/ |
D | pr4209.m | 31 @end @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey;
|
D | retain-release-gc-only.m | 130 @end @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey; 131 - (void)setObject:(id)anObject forKey:(id)aKey;
|
D | retain-release.mm | 159 @end @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey; 160 - (void)setObject:(id)anObject forKey:(id)aKey;
|
D | retain-release-inline.m | 139 @end @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey; 140 - (void)setObject:(id)anObject forKey:(id)aKey;
|
D | retain-release.m | 180 @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey; 181 - (void)setObject:(id)anObject forKey:(id)aKey;
|
/external/icu4c/common/ |
D | uresbund.c | 953 char *aKey = parent->fResPath; in init_resb_result() local 954 if(aKey) { in init_resb_result() 955 uprv_strcpy(chAlias, aKey); /* allocated large enough above */ in init_resb_result() 956 aKey = chAlias; in init_resb_result() 957 … r = res_findResource(&(mainRes->fResData), mainRes->fRes, &aKey, &temp); in init_resb_result() 980 aKey = chAlias; in init_resb_result() 981 r = res_findResource(&(mainRes->fResData), r, &aKey, &temp); in init_resb_result() 987 … r = res_getTableItemByIndex(&(mainRes->fResData), r, idx, (const char **)&aKey); in init_resb_result()
|
/external/sqlite/dist/ |
D | sqlite3.c | 62417 const unsigned char *aKey = (const unsigned char *)pKey; 62426 idx = getVarint32(aKey, szHdr); 62432 idx += getVarint32(&aKey[idx], serial_type); 62437 d += sqlite3VdbeSerialGet(&aKey[d], serial_type, pMem); 71775 u8 *aKey; /* Pointer to current key */ 71852 pIter->aKey = &pIter->aAlloc[iOff]; 72024 pCsr, 0, p1->aKey, p1->nKey, p2->aKey, p2->nKey, &res 72487 pKey = pIter->aKey;
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 62406 const unsigned char *aKey = (const unsigned char *)pKey; 62415 idx = getVarint32(aKey, szHdr); 62421 idx += getVarint32(&aKey[idx], serial_type); 62426 d += sqlite3VdbeSerialGet(&aKey[d], serial_type, pMem); 71764 u8 *aKey; /* Pointer to current key */ 71841 pIter->aKey = &pIter->aAlloc[iOff]; 72013 pCsr, 0, p1->aKey, p1->nKey, p2->aKey, p2->nKey, &res 72476 pKey = pIter->aKey;
|