Home
last modified time | relevance | path

Searched refs:propValue (Results 1 – 13 of 13) 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 …]
DPropertyNode.java44 public String propValue; field in PropertyNode
69 propValue = ""; in PropertyNode()
77 String propName, String propValue, List<String> propValue_vector, in PropertyNode() argument
85 if (propValue != null) { in PropertyNode()
86 this.propValue = propValue; in PropertyNode()
88 this.propValue = ""; in PropertyNode()
143 if (!propValue.equals(node.propValue)) { in equals()
201 builder.append(propValue); in toString()
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.java1976 private void addIm(int protocol, String customProtocol, String propValue, int type, in addIm() argument
1981 mImList.add(new ImData(protocol, customProtocol, propValue, type, isPrimary)); in addIm()
2148 final String propValue = (propertyValueList != null in addProperty() local
2155 mNameData.mFormatted = propValue; in addProperty()
2160 mNameData.mFormatted = propValue; in addProperty()
2165 mNameData.mSortString = propValue; in addProperty()
2168 addNickName(propValue); in addProperty()
2177 final List<String> phoneticNameList = VCardUtils.constructListFromValue(propValue, in addProperty()
2264 addEmail(type, propValue, label, isPrimary); in addProperty()
2279 handleTitleValue(propValue); in addProperty()
[all …]
/frameworks/base/core/java/android/view/accessibility/
DAccessibilityRecord.java976 private void append(StringBuilder builder, String propName, int propValue) { in append() argument
977 if (DEBUG_CONCISE_TOSTRING && propValue == UNDEFINED) return; in append()
978 appendPropName(builder, propName).append(propValue); in append()
981 private void append(StringBuilder builder, String propName, Object propValue) { in append() argument
982 if (DEBUG_CONCISE_TOSTRING && propValue == null) return; in append()
983 appendPropName(builder, propName).append(propValue); in append()
/frameworks/base/packages/SystemUI/src/com/android/systemui/log/
DLogcatEchoTrackerDebug.kt111 private fun parseProp(propValue: String?): LogLevel { in parseProp()
112 return when (propValue?.toLowerCase()) { in parseProp()
/frameworks/base/telephony/java/com/android/internal/telephony/
DISub.aidl280 int setSubscriptionProperty(int subId, String propKey, String propValue); in setSubscriptionProperty() argument
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsManager.java257 void setSubscriptionProperty(int subId, String propKey, String propValue); in setSubscriptionProperty() argument
305 public void setSubscriptionProperty(int subId, String propKey, String propValue) { in setSubscriptionProperty() argument
306 SubscriptionManager.setSubscriptionProperty(subId, propKey, propValue); in setSubscriptionProperty()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionController.java3150 public int setSubscriptionProperty(int subId, String propKey, String propValue) { in setSubscriptionProperty() argument
3158 subId, propKey, propValue, resolver); in setSubscriptionProperty()
3169 int subId, String propKey, String propValue, ContentResolver resolver) { in setSubscriptionPropertyIntoContentResolver() argument
3195 value.put(propKey, Integer.parseInt(propValue)); in setSubscriptionPropertyIntoContentResolver()
3198 value.put(propKey, propValue); in setSubscriptionPropertyIntoContentResolver()
/frameworks/base/telephony/java/android/telephony/
DSubscriptionManager.java2443 public static void setSubscriptionProperty(int subId, String propKey, String propValue) { in setSubscriptionProperty() argument
2447 iSub.setSubscriptionProperty(subId, propKey, propValue); in setSubscriptionProperty()
/frameworks/base/core/java/android/content/pm/parsing/
DParsingPackageUtils.java2675 String propValue = sa.getString(
2677 if (!PackageParser.checkRequiredSystemProperties(propName, propValue)) {
2681 + propName + " with value: " + propValue;
/frameworks/base/core/java/android/content/pm/
DPackageParser.java2015 final String propValue = sa.getString( in parseBaseApkCommon() local
2034 if (!checkRequiredSystemProperties(propName, propValue)) { in parseBaseApkCommon()
2037 + propName + " with value: " + propValue); in parseBaseApkCommon()