Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DCombinedInputOutput.java86 final String keyValue[] = item.split("="); in readDictionaryCombined() local
87 if (2 != keyValue.length) { in readDictionaryCombined()
90 attributes.put(keyValue[0], keyValue[1]); in readDictionaryCombined()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/
DTestUtils.java303 String[] keyValue = line.split("="); in readAdapterConfig() local
304 adapterConfig.get(section).put(keyValue[0].trim(), in readAdapterConfig()
305 keyValue.length == 1 ? "" : keyValue[1].trim()); in readAdapterConfig()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/mschapv2/
DEapMsChapV2TypeData.java431 String[] keyValue = value.split("="); in getMessageMappings() local
432 if (keyValue.length != LABEL_VALUE_LENGTH) { in getMessageMappings()
435 } else if (messageMappings.containsKey(keyValue[0])) { in getMessageMappings()
439 messageMappings.put(keyValue[0], keyValue[1]); in getMessageMappings()
/packages/apps/Settings/src/com/android/settings/wifi/dpp/
DWifiQrCode.java166 for (String keyValue : keyValueList) { in getValueOrNull()
167 if (keyValue.startsWith(prefix)) { in getValueOrNull()
168 return keyValue.substring(prefix.length()); in getValueOrNull()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/wifi/dpp/
DWifiQrCode.java163 for (String keyValue : keyValueList) { in getValueOrNull()
164 if (keyValue.startsWith(prefix)) { in getValueOrNull()
165 return keyValue.substring(prefix.length()); in getValueOrNull()