Home
last modified time | relevance | path

Searched refs:keyValue (Results 1 – 25 of 27) sorted by relevance

12

/external/protobuf/js/
Dmap.js246 var keyValue = key.toString();
247 var hadKey = this.map_.hasOwnProperty(keyValue);
248 delete this.map_[keyValue];
387 var keyValue = key.toString();
388 var entry = this.map_[keyValue];
403 var keyValue = key.toString();
404 return (keyValue in this.map_);
/external/apache-http/src/org/apache/commons/logging/impl/
DWeakHashtable.java214 Object keyValue = referenceKey.getValue();
215 if (keyValue != null) {
216 unreferencedKeys.add(keyValue);
/external/llvm-project/llvm/tools/split-file/
Dsplit-file.cpp113 for (auto &keyValue : partToBegin) { in handle() local
115 sys::path::append(partPath, output, keyValue.first); in handle()
125 Part &part = keyValue.second; in handle()
/external/cldr/tools/java/org/unicode/cldr/util/
DBuilder.java388 for (Entry<? extends K, ? extends V> keyValue : m.entrySet()) { in putAll()
389 put(keyValue.getKey(), keyValue.getValue()); in putAll()
406 for (Entry<? extends V, ? extends K> keyValue : m.entrySet()) { in putAllTransposed()
407 put(keyValue.getValue(), keyValue.getKey()); in putAllTransposed()
DLanguageTagParser.java226 for (String keyValue : SPLIT_COLON.split(extensionsString)) { in set()
227 final Iterator<String> keyValuePair = SPLIT_EQUAL.split(keyValue).iterator(); in set()
231 throwError(keyValue, "Invalid key/value pair"); in set()
242 throwError(keyValue, "Invalid key/value pair"); in set()
DAttributeValueValidity.java75 R2<String, String> keyValue = R2.of(key, value);
76 Set<String> aliases = bcp47Aliases.getAll(keyValue);
DCLDRFile.java2434 List<String> keyValue = extension.getValue();
2435 …String oldFormatType = (key.equals("ca") ? JOIN_HYPHEN : JOIN_UNDERBAR).join(keyValue); // default…
2463 oldFormatType = getReorderName(localeSeparator, keyValue);
2470 oldFormatType = JOIN_HYPHEN.join(keyValue);
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DDataDrivenTestHelper.java135 List<String> keyValue = EQUAL_SPLIT.splitToList(line); in load() local
136 addLine(keyValue, comment); in load()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DDataDrivenTestHelper.java141 List<String> keyValue = EQUAL_SPLIT.splitToList(line); in load() local
142 addLine(keyValue, comment); in load()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DDataDrivenTestHelper.java140 List<String> keyValue = EQUAL_SPLIT.splitToList(line); in load() local
141 addLine(keyValue, comment); in load()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DDeserializationContext.java1012 public Object handleWeirdKey(Class<?> keyClass, String keyValue, in handleWeirdKey() argument
1021 Object key = h.value().handleWeirdKey(this, keyClass, keyValue, msg); in handleWeirdKey()
1027 throw weirdStringException(keyValue, keyClass, String.format( in handleWeirdKey()
1035 throw weirdKeyException(keyClass, keyValue, msg); in handleWeirdKey()
1812 public JsonMappingException weirdKeyException(Class<?> keyClass, String keyValue, in weirdKeyException() argument
1816 ClassUtil.nameOf(keyClass), _quotedString(keyValue), msg), in weirdKeyException()
1817 keyValue, keyClass); in weirdKeyException()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DRelation.java223 for (Entry<K, Set<V>> keyValue : data.entrySet()) { in values()
224 result.addAll(keyValue.getValue()); in values()
DLocaleDisplayNamesImpl.java408 String keyValue = SimpleFormatterImpl.formatCompiledPattern( in localeDisplayNameInternal() local
410 appendWithSep(keyValue, buf); in localeDisplayNameInternal()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DRelation.java221 for (Entry<K, Set<V>> keyValue : data.entrySet()) { in values()
222 result.addAll(keyValue.getValue()); in values()
DLocaleDisplayNamesImpl.java404 String keyValue = SimpleFormatterImpl.formatCompiledPattern( in localeDisplayNameInternal() local
406 appendWithSep(keyValue, buf); in localeDisplayNameInternal()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DDeserializationProblemHandler.java102 Class<?> rawKeyType, String keyValue, in handleWeirdKey() argument
/external/cldr/tools/java/org/unicode/cldr/test/
DCheckConsistentCasing.java184 .add("//ldml/localeDisplayNames/types/type", Category.keyValue)
219 …language, script, territory, variant, keyValue, month_narrow, month_format_except_narrow, month_st… enumConstant
DCheckAttributeValues.java360 R2<String, String> keyValue = R2.of(key, value);
361 Set<String> aliases = bcp47Aliases.getAll(keyValue);
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateCasingChart.java33 …languages, script, keyValue, calendar_field, day_format_except_narrow, day_standalone_except_narro… enumConstant
DCLDRModify.java2042 Map<ConfigKeys, ConfigMatch> keyValue = new EnumMap<>(
2050 if (keyValue.containsKey(key)) {
2054 keyValue.put(key, new ConfigMatch(key, match));
2056 final ConfigMatch locale = keyValue.get(ConfigKeys.locale);
2057 if (locale == null || keyValue.get(ConfigKeys.action) == null) {
2068 keyValues.add(keyValue);
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/filter/
DProblemHandlerTest.java42 Class<?> rawKeyType, String keyValue, in handleWeirdKey() argument
/external/deqp/scripts/android/
Dbuild_apk.py116 keyValue = list(map(lambda x: x.strip(), line.split("=")))
117 if keyValue[0] == "Pkg.Revision":
118 versionParts = keyValue[1].split(".")
/external/clang/lib/CodeGen/
DCGObjC.cpp164 llvm::Value *keyValue = EmitScalarExpr(Key); in EmitObjCCollectionLiteral() local
165 EmitStoreThroughLValue(RValue::get(keyValue), KeyLV, /*isInit=*/true); in EmitObjCCollectionLiteral()
175 NeededObjects.push_back(keyValue); in EmitObjCCollectionLiteral()
/external/llvm-project/clang/lib/CodeGen/
DCGObjC.cpp182 llvm::Value *keyValue = EmitScalarExpr(Key); in EmitObjCCollectionLiteral() local
183 EmitStoreThroughLValue(RValue::get(keyValue), KeyLV, /*isInit=*/true); in EmitObjCCollectionLiteral()
192 NeededObjects.push_back(keyValue); in EmitObjCCollectionLiteral()
/external/icu/icu4c/source/data/locales/
Dru.txt2168 keyValue:intvector{

12