Home
last modified time | relevance | path

Searched refs:propValue (Results 1 – 11 of 11) sorted by relevance

/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
DPropertyNodesVerifierElem.java62 public PropertyNodesVerifierElem addExpectedNodeWithOrder(String propName, String propValue) { in addExpectedNodeWithOrder() argument
63 return addExpectedNodeWithOrder(propName, propValue, null, null, null, null, null); in addExpectedNodeWithOrder()
67 String propName, String propValue, ContentValues contentValues) { in addExpectedNodeWithOrder() argument
68 return addExpectedNodeWithOrder(propName, propValue, null, in addExpectedNodeWithOrder()
79 String propName, String propValue, List<String> propValueList) { in addExpectedNodeWithOrder() argument
80 return addExpectedNodeWithOrder(propName, propValue, propValueList, null, in addExpectedNodeWithOrder()
86 final String propValue = concatinateListWithSemiColon(propValueList); in addExpectedNodeWithOrder() local
87 return addExpectedNodeWithOrder(propName, propValue.toString(), propValueList, in addExpectedNodeWithOrder()
91 public PropertyNodesVerifierElem addExpectedNodeWithOrder(String propName, String propValue, in addExpectedNodeWithOrder() argument
93 return addExpectedNodeWithOrder(propName, propValue, null, in addExpectedNodeWithOrder()
[all …]
DVNodeBuilder.java125 propNode.propValue = ""; in onPropertyCreated()
133 propNode.propValue = ""; in onPropertyCreated()
136 propNode.propValue = listToString(propNode.propValue_vector); in onPropertyCreated()
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/am/
DSettingsToPropertiesMapperTest.java163 String propValue = mSystemSettingsMap.get(systemPropertyName); in testUpdatePropertiesFromSettings() local
164 Assert.assertEquals("testValue", propValue); in testUpdatePropertiesFromSettings()
170 propValue = mSystemSettingsMap.get(systemPropertyName); in testUpdatePropertiesFromSettings()
171 Assert.assertEquals("testValue2", propValue); in testUpdatePropertiesFromSettings()
177 propValue = mSystemSettingsMap.get(systemPropertyName); in testUpdatePropertiesFromSettings()
178 Assert.assertEquals("", propValue); in testUpdatePropertiesFromSettings()
209 String propValue = mSystemSettingsMap.get("TestProperty"); in testUpdatePropertiesFromSettings_PropertyAndSettingNotPresent() local
210 Assert.assertNull("Property should not be set if setting is null", propValue); in testUpdatePropertiesFromSettings_PropertyAndSettingNotPresent()
/frameworks/opt/vcard/java/com/android/vcard/
DVCardEntry.java1964 private void addIm(int protocol, String customProtocol, String propValue, int type, in addIm() argument
1969 mImList.add(new ImData(protocol, customProtocol, propValue, type, isPrimary)); in addIm()
2136 final String propValue = (propertyValueList != null in addProperty() local
2143 mNameData.mFormatted = propValue; in addProperty()
2148 mNameData.mFormatted = propValue; in addProperty()
2153 mNameData.mSortString = propValue; in addProperty()
2156 addNickName(propValue); in addProperty()
2165 final List<String> phoneticNameList = VCardUtils.constructListFromValue(propValue, in addProperty()
2252 addEmail(type, propValue, label, isPrimary); in addProperty()
2267 handleTitleValue(propValue); in addProperty()
[all …]
/frameworks/base/core/java/android/view/accessibility/
DAccessibilityRecord.java951 private void append(StringBuilder builder, String propName, int propValue) { in append() argument
952 if (DEBUG_CONCISE_TOSTRING && propValue == UNDEFINED) return; in append()
953 appendPropName(builder, propName).append(propValue); in append()
956 private void append(StringBuilder builder, String propName, Object propValue) { in append() argument
957 if (DEBUG_CONCISE_TOSTRING && propValue == null) return; in append()
958 appendPropName(builder, propName).append(propValue); in append()
/frameworks/base/cmds/idmap/
Dscan.cpp105 String16 propValue = String16(); in parse_overlay_tag() local
135 propValue = String16(p, len); in parse_overlay_tag()
142 if (propName.size() > 0 && propValue.size() > 0) { in parse_overlay_tag()
144 if (!check_property(propName, propValue)) { in parse_overlay_tag()
/frameworks/base/telephony/java/com/android/internal/telephony/
DISub.aidl266 int setSubscriptionProperty(int subId, String propKey, String propValue); in setSubscriptionProperty() argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DSubscriptionControllerMock.java266 public int setSubscriptionProperty(int subId, String propKey, String propValue) { in setSubscriptionProperty() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionController.java2548 public int setSubscriptionProperty(int subId, String propKey, String propValue) { in setSubscriptionProperty() argument
2556 subId, propKey, propValue, resolver); in setSubscriptionProperty()
2567 int subId, String propKey, String propValue, ContentResolver resolver) { in setSubscriptionPropertyIntoContentResolver() argument
2589 value.put(propKey, Integer.parseInt(propValue)); in setSubscriptionPropertyIntoContentResolver()
/frameworks/base/telephony/java/android/telephony/
DSubscriptionManager.java2200 public static void setSubscriptionProperty(int subId, String propKey, String propValue) { in setSubscriptionProperty() argument
2204 iSub.setSubscriptionProperty(subId, propKey, propValue); in setSubscriptionProperty()
/frameworks/base/core/java/android/content/pm/
DPackageParser.java2102 final String propValue = sa.getString( in parseBaseApkCommon() local
2121 if (!checkOverlayRequiredSystemProperty(propName, propValue)) { in parseBaseApkCommon()
2124 + propName + " with value: " + propValue); in parseBaseApkCommon()
2543 private boolean checkOverlayRequiredSystemProperty(String propName, String propValue) { in checkOverlayRequiredSystemProperty() argument
2545 if (TextUtils.isEmpty(propName) || TextUtils.isEmpty(propValue)) { in checkOverlayRequiredSystemProperty()
2546 if (!TextUtils.isEmpty(propName) || !TextUtils.isEmpty(propValue)) { in checkOverlayRequiredSystemProperty()
2549 + "=" + propValue + "' - require both requiredSystemPropertyName" in checkOverlayRequiredSystemProperty()
2559 return (currValue != null && currValue.equals(propValue)); in checkOverlayRequiredSystemProperty()