Home
last modified time | relevance | path

Searched refs:aKey (Results 1 – 19 of 19) sorted by relevance

/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DAMutableDictionary.m89 - (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 …]
DAMutableDictionary.h43 - (id) objectForKey:(id)aKey;
44 - (void) setObject:(id)obj forKey:(id)aKey;
45 - (void) removeObjectForKey:(id)aKey;
DACBTree.h34 + (ACBKey *)newKeyWithKStr:(NSString *)aKey;
36 - (id) initWithKStr:(NSString *)aKey;
DACBTree.m28 + (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/
Dreturn-noreturn.cpp109 void test_PR9380(const PR9380& aKey) { in test_PR9380() argument
110 const PR9380& flatKey = PR9380_B(aKey); in test_PR9380()
/external/clang/test/SemaObjC/
Dcocoa-api-usage.m64 - (id)objectForKey:(id)aKey;
68 - (void)setObject:(id)anObject forKey:(id)aKey;
Dcocoa-api-usage.m.fixed64 - (id)objectForKey:(id)aKey;
68 - (void)setObject:(id)anObject forKey:(id)aKey;
Dcompare-qualified-id.m15 @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey; @end
/external/clang/test/ARCMT/
Dobjcmt-subscripting-literals.m.result58 - (id)objectForKey:(id)aKey;
62 - (void)setObject:(id)anObject forKey:(id)aKey;
Dobjcmt-subscripting-literals.m58 - (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/
DHashMapTest.java498 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/
Dpr4209.m31 @end @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey;
Dretain-release-gc-only.m130 @end @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey;
131 - (void)setObject:(id)anObject forKey:(id)aKey;
Dretain-release.mm159 @end @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey;
160 - (void)setObject:(id)anObject forKey:(id)aKey;
Dretain-release-inline.m139 @end @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey;
140 - (void)setObject:(id)anObject forKey:(id)aKey;
Dretain-release.m180 @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey;
181 - (void)setObject:(id)anObject forKey:(id)aKey;
/external/icu4c/common/
Duresbund.c953 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/
Dsqlite3.c62417 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/
Dsqlite3.c62406 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;