Home
last modified time | relevance | path

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

/packages/modules/StatsD/statsd/tests/
DLogEntryMatcher_test.cpp558 auto keyValue = simpleMatcher->add_field_value_matcher(); in TEST() local
559 keyValue->set_field(FIELD_ID_1); in TEST()
560 keyValue->set_eq_string("some value"); in TEST()
606 auto keyValue = simpleMatcher->add_field_value_matcher(); in TEST() local
607 keyValue->set_field(FIELD_ID_1); in TEST()
616 keyValue->set_eq_int(10); in TEST()
618 keyValue->set_eq_int(11); in TEST()
620 keyValue->set_eq_int(12); in TEST()
624 keyValue->set_lt_int(10); in TEST()
626 keyValue->set_lt_int(11); in TEST()
[all …]
/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.java339 String[] keyValue = line.split("="); in readAdapterConfig() local
340 adapterConfig.get(section).put(keyValue[0].trim(), in readAdapterConfig()
341 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.java162 for (String keyValue : keyValueList) { in getValueOrNull()
163 if (keyValue.startsWith(prefix)) { in getValueOrNull()
164 return keyValue.substring(prefix.length()); in getValueOrNull()