Home
last modified time | relevance | path

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

123

/external/icu/android_icu4j/src/main/java/android/icu/util/
DUResourceBundle.java485 public UResourceBundle get(String aKey) { in get() argument
486 UResourceBundle obj = findTopLevel(aKey); in get()
491 + aKey, this.getClass().getName(), aKey); in get()
507 protected UResourceBundle findTopLevel(String aKey) { in findTopLevel() argument
512 UResourceBundle obj = res.handleGet(aKey, null, this); in findTopLevel()
763 protected UResourceBundle handleGet(String aKey, HashMap<String, String> aliasesVisited, in handleGet() argument
809 protected Object handleGetObject(String aKey) { in handleGetObject() argument
810 return handleGetObjectImpl(aKey, this); in handleGetObject()
822 private Object handleGetObjectImpl(String aKey, UResourceBundle requested) { in handleGetObjectImpl() argument
823 Object obj = resolveObject(aKey, requested); in handleGetObjectImpl()
[all …]
DLocaleData.java193 final String aKey = exemplarSetTypes[extype]; // will throw an out-of-bounds exception in getExemplarSet() local
194 ICUResourceBundle stringBundle = (ICUResourceBundle) bundle.get(aKey); in getExemplarSet()
/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/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;
/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/skia/src/gpu/
DGrProgramDesc.h70 const uint32_t* aKey = this->asKey(); variable
73 if (aKey[i] != bKey[i]) {
92 const uint32_t* aKey = a.asKey(); in Less() local
95 if (aKey[i] != bKey[i]) { in Less()
96 return aKey[i] < bKey[i] ? true : false; in Less()
/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+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+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+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/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/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/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;
Dcocoa-api-usage.m.fixed60 - (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;
Dobjcmt-subscripting-literals-in-arc.m.result52 - (id)objectForKey:(id)aKey;
74 - (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