Home
last modified time | relevance | path

Searched refs:strValue (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Settings/tests/src/com/android/settings/vpn2/
DVpnProfileParser.java135 String strValue = new String(ch, start, length);
137 profile.name = strValue;
141 int t = getVpnProfileType(strValue);
150 profile.server = strValue;
154 profile.username = strValue;
158 profile.password = strValue;
162 profile.dnsServers = strValue;
166 profile.searchDomains = strValue;
170 profile.mppe = Boolean.valueOf(strValue);
174 profile.l2tpSecret = strValue;
[all …]
/packages/apps/Camera2/src/com/android/camera/settings/
DSettingsManager.java381 String strValue = getString(scope, key);
382 if (strValue == null) {
386 String[] widthHeight = strValue.split("x");
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyboardBuilder.java747 final String strValue) { in matchTypedValue() argument
758 return StringUtils.containsInArray(strValue, a.getString(index).split("\\|")); in matchTypedValue()