Home
last modified time | relevance | path

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

123

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DUResourceBundle.java508 public UResourceBundle get(String aKey) { in get() argument
509 UResourceBundle obj = findTopLevel(aKey); in get()
514 + aKey, this.getClass().getName(), aKey); in get()
530 protected UResourceBundle findTopLevel(String aKey) { in findTopLevel() argument
535 UResourceBundle obj = res.handleGet(aKey, null, this); in findTopLevel()
802 protected UResourceBundle handleGet(String aKey, HashMap<String, String> aliasesVisited, in handleGet() argument
852 protected Object handleGetObject(String aKey) { in handleGetObject() argument
853 return handleGetObjectImpl(aKey, this); in handleGetObject()
865 private Object handleGetObjectImpl(String aKey, UResourceBundle requested) { in handleGetObjectImpl() argument
866 Object obj = resolveObject(aKey, requested); in handleGetObjectImpl()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/util/
DUResourceBundle.java487 public UResourceBundle get(String aKey) { in get() argument
488 UResourceBundle obj = findTopLevel(aKey); in get()
493 + aKey, this.getClass().getName(), aKey); in get()
509 protected UResourceBundle findTopLevel(String aKey) { in findTopLevel() argument
514 UResourceBundle obj = res.handleGet(aKey, null, this); in findTopLevel()
767 protected UResourceBundle handleGet(String aKey, HashMap<String, String> aliasesVisited, in handleGet() argument
813 protected Object handleGetObject(String aKey) { in handleGetObject() argument
814 return handleGetObjectImpl(aKey, this); in handleGetObject()
826 private Object handleGetObjectImpl(String aKey, UResourceBundle requested) { in handleGetObjectImpl() argument
827 Object obj = resolveObject(aKey, requested); in handleGetObjectImpl()
[all …]
/external/antlr/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;
DEntry.m12 + (id) newEntry:(int)aHash key:(NSString *)aKey value:(id)aValue next:(HTEntry *)aNext
14 return [[HTEntry alloc] init:aHash key:aKey value:aValue next:aNext];
17 - (id) init:(int)aHash key:(NSString *)aKey value:(id)aValue next:(HTEntry *)aNext
22 key = aKey;
DLinkedHashMap.m15 - (id) newEntry:(NSInteger)aHash key:(NSString *)aKey value:(id)aValue next:(LHMEntry *)aNext
17 return [[LHMEntry alloc] init:aHash key:aKey value:aValue next:aNext];
20 - (id) init:(NSInteger)aHash key:(NSString *)aKey value:(id)aValue next:(LHMEntry *)aNext
22 self = [super init:aHash key:aKey value:aValue next:aNext];
393 - (id) get:(NSString *)aKey
395 LHMEntry * e = (LHMEntry *)[self getEntry:aKey];
439 - (void) addEntry:(NSInteger)aHash key:(NSString *)aKey value:(id)aValue bucketIndex:(NSInteger)aBu…
441 [self createEntry:aHash key:aKey value:aValue bucketIndex:aBucketIndex];
457 - (void) createEntry:(NSInteger)aHash key:(NSString *)aKey value:(id)aValue bucketIndex:(NSInteger)…
460 LHMEntry *e = [[[LHMEntry alloc] init:aHash key:aKey value:aValue next:old] retain];
DACBTree.h40 + (ACBKey *)newKeyWithKStr:(NSString *)aKey;
42 - (id) initWithKStr:(NSString *)aKey;
/external/protobuf/objectivec/
DGPBDictionary.m790 //% [_dictionary enumerateKeysAndObjectsUsingBlock:^(ENUM_TYPE##KHELPER(KEY_TYPE)##aKey,
797 //% block(UNWRAP##KEY_NAME(aKey), unwrapped, stop);
856 //% [_dictionary enumerateKeysAndObjectsUsingBlock:^(ENUM_TYPE##KHELPER(KEY_TYPE)##aKey,
859 //% block(UNWRAP##KEY_NAME(aKey), UNWRAP##VALUE_NAME(a##VNAME$u), stop);
872 //% [_dictionary enumerateKeysAndObjectsUsingBlock:^(ENUM_TYPE##KHELPER(KEY_TYPE)##aKey,
876 //% size_t msgSize = ComputeDict##KEY_NAME##FieldSize(UNWRAP##KEY_NAME(aKey), kMapKeyFieldNumber…
890 //% [_dictionary enumerateKeysAndObjectsUsingBlock:^(ENUM_TYPE##KHELPER(KEY_TYPE)##aKey,
897 //% size_t msgSize = ComputeDict##KEY_NAME##FieldSize(UNWRAP##KEY_NAME(aKey), kMapKeyFieldNumber…
901 //% WriteDict##KEY_NAME##Field(outputStream, UNWRAP##KEY_NAME(aKey), kMapKeyFieldNumber, keyData…
934 //%- (void)remove##VNAME$u##ForKey:(KEY_TYPE##KisP$S##KisP)aKey {
[all …]
DGPBDictionary.h75 - (void)removeValueForKey:(uint32_t)aKey;
110 - (void)removeValueForKey:(uint32_t)aKey;
145 - (void)removeValueForKey:(uint32_t)aKey;
180 - (void)removeValueForKey:(uint32_t)aKey;
215 - (void)removeValueForKey:(uint32_t)aKey;
250 - (void)removeValueForKey:(uint32_t)aKey;
285 - (void)removeValueForKey:(uint32_t)aKey;
351 - (void)removeValueForKey:(uint32_t)aKey;
386 - (void)removeObjectForKey:(uint32_t)aKey;
421 - (void)removeValueForKey:(int32_t)aKey;
[all …]
/external/protobuf/objectivec/Tests/
DGPBDictionaryTests+Bool.m58 [dict enumerateKeysAndValuesUsingBlock:^(BOOL aKey, uint32_t aValue, BOOL *stop) {
59 #pragma unused(aKey, aValue, stop)
74 [dict enumerateKeysAndValuesUsingBlock:^(BOOL aKey, uint32_t aValue, BOOL *stop) {
75 XCTAssertEqual(aKey, YES);
101 [dict enumerateKeysAndValuesUsingBlock:^(BOOL aKey, uint32_t aValue, BOOL *stop) {
103 seenKeys[idx] = aKey;
123 [dict enumerateKeysAndValuesUsingBlock:^(BOOL aKey, uint32_t aValue, BOOL *stop) {
124 #pragma unused(aKey, aValue)
359 [dict enumerateKeysAndValuesUsingBlock:^(BOOL aKey, int32_t aValue, BOOL *stop) {
360 #pragma unused(aKey, aValue, stop)
[all …]
DGPBDictionaryTests+Int32.m98 [dict enumerateKeysAndValuesUsingBlock:^(int32_t aKey, uint32_t aValue, BOOL *stop) {
99 #pragma unused(aKey, aValue, stop)
114 [dict enumerateKeysAndValuesUsingBlock:^(int32_t aKey, uint32_t aValue, BOOL *stop) {
115 XCTAssertEqual(aKey, 11);
145 [dict enumerateKeysAndValuesUsingBlock:^(int32_t aKey, uint32_t aValue, BOOL *stop) {
147 seenKeys[idx] = aKey;
167 [dict enumerateKeysAndValuesUsingBlock:^(int32_t aKey, uint32_t aValue, BOOL *stop) {
168 #pragma unused(aKey, aValue)
455 [dict enumerateKeysAndValuesUsingBlock:^(int32_t aKey, int32_t aValue, BOOL *stop) {
456 #pragma unused(aKey, aValue, stop)
[all …]
DGPBDictionaryTests+Int64.m98 [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, uint32_t aValue, BOOL *stop) {
99 #pragma unused(aKey, aValue, stop)
114 [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, uint32_t aValue, BOOL *stop) {
115 XCTAssertEqual(aKey, 21LL);
145 [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, uint32_t aValue, BOOL *stop) {
147 seenKeys[idx] = aKey;
167 [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, uint32_t aValue, BOOL *stop) {
168 #pragma unused(aKey, aValue)
455 [dict enumerateKeysAndValuesUsingBlock:^(int64_t aKey, int32_t aValue, BOOL *stop) {
456 #pragma unused(aKey, aValue, stop)
[all …]
DGPBDictionaryTests+UInt32.m98 [dict enumerateKeysAndValuesUsingBlock:^(uint32_t aKey, uint32_t aValue, BOOL *stop) {
99 #pragma unused(aKey, aValue, stop)
114 [dict enumerateKeysAndValuesUsingBlock:^(uint32_t aKey, uint32_t aValue, BOOL *stop) {
115 XCTAssertEqual(aKey, 1U);
145 [dict enumerateKeysAndValuesUsingBlock:^(uint32_t aKey, uint32_t aValue, BOOL *stop) {
147 seenKeys[idx] = aKey;
167 [dict enumerateKeysAndValuesUsingBlock:^(uint32_t aKey, uint32_t aValue, BOOL *stop) {
168 #pragma unused(aKey, aValue)
455 [dict enumerateKeysAndValuesUsingBlock:^(uint32_t aKey, int32_t aValue, BOOL *stop) {
456 #pragma unused(aKey, aValue, stop)
[all …]
DGPBDictionaryTests+UInt64.m98 [dict enumerateKeysAndValuesUsingBlock:^(uint64_t aKey, uint32_t aValue, BOOL *stop) {
99 #pragma unused(aKey, aValue, stop)
114 [dict enumerateKeysAndValuesUsingBlock:^(uint64_t aKey, uint32_t aValue, BOOL *stop) {
115 XCTAssertEqual(aKey, 31ULL);
145 [dict enumerateKeysAndValuesUsingBlock:^(uint64_t aKey, uint32_t aValue, BOOL *stop) {
147 seenKeys[idx] = aKey;
167 [dict enumerateKeysAndValuesUsingBlock:^(uint64_t aKey, uint32_t aValue, BOOL *stop) {
168 #pragma unused(aKey, aValue)
455 [dict enumerateKeysAndValuesUsingBlock:^(uint64_t aKey, int32_t aValue, BOOL *stop) {
456 #pragma unused(aKey, aValue, stop)
[all …]
DGPBDictionaryTests+String.m98 [dict enumerateKeysAndValuesUsingBlock:^(NSString *aKey, uint32_t aValue, BOOL *stop) {
99 #pragma unused(aKey, aValue, stop)
114 [dict enumerateKeysAndValuesUsingBlock:^(NSString *aKey, uint32_t aValue, BOOL *stop) {
115 XCTAssertEqualObjects(aKey, @"foo");
145 [dict enumerateKeysAndValuesUsingBlock:^(NSString *aKey, uint32_t aValue, BOOL *stop) {
147 seenKeys[idx] = aKey;
167 [dict enumerateKeysAndValuesUsingBlock:^(NSString *aKey, uint32_t aValue, BOOL *stop) {
168 #pragma unused(aKey, aValue)
455 [dict enumerateKeysAndValuesUsingBlock:^(NSString *aKey, int32_t aValue, BOOL *stop) {
456 #pragma unused(aKey, aValue, stop)
[all …]
DGPBDictionaryTests.pddm73 //% [dict enumerateKeysAnd##VNAME$u##sUsingBlock:^(KEY_TYPE KisP##aKey, VALUE_TYPE a##VNAME$u, BOO…
74 //% #pragma unused(aKey, a##VNAME$u, stop)
86 //% [dict enumerateKeysAnd##VNAME$u##sUsingBlock:^(KEY_TYPE KisP##aKey, VALUE_TYPE a##VNAME$u, BOO…
87 //% XCTAssertEqual##KSUFFIX(aKey, KEY1);
110 //% [dict enumerateKeysAnd##VNAME$u##sUsingBlock:^(KEY_TYPE KisP##aKey, VALUE_TYPE a##VNAME$u, BOO…
112 //% seenKeys[idx] = aKey;
132 //% [dict enumerateKeysAnd##VNAME$u##sUsingBlock:^(KEY_TYPE KisP##aKey, VALUE_TYPE a##VNAME$u, BOO…
133 //% #pragma unused(aKey, a##VNAME$u)
380 //% [dict enumerateKeysAndValuesUsingBlock:^(KEY_TYPE KisP##aKey, VALUE_TYPE aValue, BOOL *stop) {
382 //% seenKeys[idx] = aKey;
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DResourceBundleWrapper.java55 protected Object handleGetObject(String aKey){ in handleGetObject() argument
60 obj = current.bundle.getObject(aKey); in handleGetObject()
69 +", key "+aKey, in handleGetObject()
71 aKey); in handleGetObject()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DResourceBundleWrapper.java53 protected Object handleGetObject(String aKey){ in handleGetObject() argument
58 obj = current.bundle.getObject(aKey); in handleGetObject()
67 +", key "+aKey, in handleGetObject()
69 aKey); in handleGetObject()
/external/skqp/src/gpu/
DGrProgramDesc.h74 const uint32_t* aKey = this->asKey(); variable
77 if (aKey[i] != bKey[i]) {
/external/skia/src/gpu/
DGrProgramDesc.h70 const uint32_t* aKey = this->asKey(); variable
73 if (aKey[i] != bKey[i]) {
/external/clang/test/SemaObjC/
Dcomptypes-legal.m42 - (void) Meth : (id <NSCopying>)aKey; // expected-note {{passing argument to parameter 'aKey' here}}
Dcocoa-api-usage.m60 - (id)objectForKey:(id)aKey;
64 - (void)setObject:(id)anObject forKey:(id)aKey;
/external/clang/test/ARCMT/
Dobjcmt-subscripting-unavailable.m.result49 - (id)objectForKey:(id)aKey;
53 - (void)setObject:(id)anObject forKey:(id)aKey;
Dobjcmt-subscripting-unavailable.m49 - (id)objectForKey:(id)aKey;
53 - (void)setObject:(id)anObject forKey:(id)aKey;
/external/clang/test/SemaCXX/
Dreturn-noreturn.cpp117 void test_PR9380(const PR9380& aKey) { in test_PR9380() argument
118 const PR9380& flatKey = PR9380_B(aKey); in test_PR9380()

123