/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | UResourceBundle.java | 661 public UResourceBundle get(String aKey) { in get() argument 662 UResourceBundle obj = findTopLevel(aKey); in get() 667 + aKey, this.getClass().getName(), aKey); in get() 683 protected UResourceBundle findTopLevel(String aKey) { in findTopLevel() argument 688 UResourceBundle obj = res.handleGet(aKey, null, this); in findTopLevel() 939 protected UResourceBundle handleGet(String aKey, HashMap<String, String> aliasesVisited, in handleGet() argument 984 protected Object handleGetObject(String aKey) { in handleGetObject() argument 985 return handleGetObjectImpl(aKey, this); in handleGetObject() 997 private Object handleGetObjectImpl(String aKey, UResourceBundle requested) { in handleGetObjectImpl() argument 998 Object obj = resolveObject(aKey, requested); in handleGetObjectImpl() [all …]
|
D | LocaleData.java | 186 final String aKey = exemplarSetTypes[extype]; // will throw an out-of-bounds exception in getExemplarSet() local 187 ICUResourceBundle stringBundle = (ICUResourceBundle) bundle.get(aKey); in getExemplarSet()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | UResourceBundle.java | 684 public UResourceBundle get(String aKey) { in get() argument 685 UResourceBundle obj = findTopLevel(aKey); in get() 690 + aKey, this.getClass().getName(), aKey); in get() 706 protected UResourceBundle findTopLevel(String aKey) { in findTopLevel() argument 711 UResourceBundle obj = res.handleGet(aKey, null, this); in findTopLevel() 978 protected UResourceBundle handleGet(String aKey, HashMap<String, String> aliasesVisited, in handleGet() argument 1027 protected Object handleGetObject(String aKey) { in handleGetObject() argument 1028 return handleGetObjectImpl(aKey, this); in handleGetObject() 1040 private Object handleGetObjectImpl(String aKey, UResourceBundle requested) { in handleGetObjectImpl() argument 1041 Object obj = resolveObject(aKey, requested); in handleGetObjectImpl() [all …]
|
D | LocaleData.java | 198 final String aKey = exemplarSetTypes[extype]; // will throw an out-of-bounds exception in getExemplarSet() local 199 ICUResourceBundle stringBundle = (ICUResourceBundle) bundle.get(aKey); in getExemplarSet()
|
/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/skia/src/gpu/ |
D | GrProgramDesc.h | 45 const uint32_t* aKey = this->asKey(); variable 48 if (aKey[i] != bKey[i]) { 62 const uint32_t* aKey = a.asKey(); in Less() local 65 if (aKey[i] != bKey[i]) { in Less() 66 return aKey[i] < bKey[i] ? true : false; in Less()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | ResourceBundleWrapper.java | 42 protected Object handleGetObject(String aKey){ in handleGetObject() argument 47 obj = current.bundle.getObject(aKey); in handleGetObject() 56 +", key "+aKey, in handleGetObject() 58 aKey); in handleGetObject()
|
D | ICUResourceBundle.java | 414 public ICUResourceBundle findTopLevel(String aKey) { in findTopLevel() argument 415 return (ICUResourceBundle) super.findTopLevel(aKey); in findTopLevel() 1302 …UResourceBundle get(String aKey, HashMap<String, String> aliasesVisited, UResourceBundle requested… in get() argument 1303 ICUResourceBundle obj = (ICUResourceBundle)handleGet(aKey, aliasesVisited, requested); in get() 1308 obj = (ICUResourceBundle)obj.get(aKey, aliasesVisited, requested); in get() 1314 + aKey, this.getClass().getName(), aKey); in get()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | ResourceBundleWrapper.java | 44 protected Object handleGetObject(String aKey){ in handleGetObject() argument 49 obj = current.bundle.getObject(aKey); in handleGetObject() 58 +", key "+aKey, in handleGetObject() 60 aKey); in handleGetObject()
|
D | ICUResourceBundle.java | 418 public ICUResourceBundle findTopLevel(String aKey) { in findTopLevel() argument 419 return (ICUResourceBundle) super.findTopLevel(aKey); in findTopLevel() 1306 …UResourceBundle get(String aKey, HashMap<String, String> aliasesVisited, UResourceBundle requested… in get() argument 1307 ICUResourceBundle obj = (ICUResourceBundle)handleGet(aKey, aliasesVisited, requested); in get() 1312 obj = (ICUResourceBundle)obj.get(aKey, aliasesVisited, requested); in get() 1318 + aKey, this.getClass().getName(), aKey); in get()
|
/external/clang/test/SemaObjC/ |
D | comptypes-legal.m | 42 - (void) Meth : (id <NSCopying>)aKey; // expected-note {{passing argument to parameter 'aKey' here}}
|
D | cocoa-api-usage.m | 60 - (id)objectForKey:(id)aKey; 64 - (void)setObject:(id)anObject forKey:(id)aKey;
|
D | cocoa-api-usage.m.fixed | 60 - (id)objectForKey:(id)aKey; 64 - (void)setObject:(id)anObject forKey:(id)aKey;
|
/external/clang/test/ARCMT/ |
D | objcmt-subscripting-unavailable.m.result | 49 - (id)objectForKey:(id)aKey; 53 - (void)setObject:(id)anObject forKey:(id)aKey;
|
D | objcmt-subscripting-unavailable.m | 49 - (id)objectForKey:(id)aKey; 53 - (void)setObject:(id)anObject forKey:(id)aKey;
|
D | objcmt-subscripting-literals-in-arc.m.result | 52 - (id)objectForKey:(id)aKey; 74 - (void)setObject:(id)anObject forKey:(id)aKey;
|
D | objcmt-subscripting-literals-in-arc.m | 52 - (id)objectForKey:(id)aKey; 74 - (void)setObject:(id)anObject forKey:(id)aKey;
|
D | objcmt-instancetype.m | 83 - (id)objectForKey:(id)aKey; 87 - (void)setObject:(id)anObject forKey:(id)aKey;
|
D | objcmt-instancetype.m.result | 83 - (id)objectForKey:(id)aKey; 87 - (void)setObject:(id)anObject forKey:(id)aKey;
|
/external/clang/test/SemaCXX/ |
D | return-noreturn.cpp | 117 void test_PR9380(const PR9380& aKey) { in test_PR9380() argument 118 const PR9380& flatKey = PR9380_B(aKey); in test_PR9380()
|
/external/guice/core/test/com/google/inject/spi/ |
D | SpiBindingsTest.java | 157 final Key<String> aKey = Key.get(String.class, Names.named("a")); in testToKeyBinding() local 163 bind(aKey).to(bKey); in testToKeyBinding() 172 assertEquals(aKey, binding.getKey()); in testToKeyBinding()
|
/external/clang/test/Analysis/ |
D | NSContainers.m | 68 - (id)objectForKey:(id)aKey; 83 - (void)removeObjectForKey:(id)aKey; 84 - (void)setObject:(id)anObject forKey:(id <NSCopying>)aKey;
|