/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/ |
D | PropertyNodesVerifierElem.java | 62 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 …]
|
D | PropertyNode.java | 44 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()
|
D | VNodeBuilder.java | 125 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/ |
D | SettingsToPropertiesMapperTest.java | 163 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/ |
D | VCardEntry.java | 1976 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() 2271 addEmail(type, propValue, label, isPrimary); in addProperty() 2286 handleTitleValue(propValue); in addProperty() [all …]
|
/frameworks/av/drm/libmediadrmrkp/src/ |
D | DrmRemotelyProvisionedComponent.cpp | 112 std::string propValue = android::base::GetProperty(prop, ""); in getDeviceInfo() local 113 if (propValue.empty()) { in getDeviceInfo() 119 deviceInfoMap.add(cppbor::Tstr(key), cppbor::Tstr(propValue)); in getDeviceInfo() 120 ALOGI("use OS property %s: %s", prop.c_str(), propValue.c_str()); in getDeviceInfo()
|
/frameworks/base/core/java/android/view/accessibility/ |
D | AccessibilityRecord.java | 1005 private void append(StringBuilder builder, String propName, int propValue) { in append() argument 1006 if (DEBUG_CONCISE_TOSTRING && propValue == UNDEFINED) return; in append() 1007 appendPropName(builder, propName).append(propValue); in append() 1010 private void append(StringBuilder builder, String propName, Object propValue) { in append() argument 1011 if (DEBUG_CONCISE_TOSTRING && propValue == null) return; in append() 1012 appendPropName(builder, propName).append(propValue); in append()
|
/frameworks/base/core/java/com/android/internal/content/om/ |
D | OverlayScanner.java | 196 final String propValue = apkLite.getRequiredSystemPropertyValue(); in parseOverlayManifest() local 197 if ((!TextUtils.isEmpty(propName) || !TextUtils.isEmpty(propValue)) in parseOverlayManifest() 199 propValue)) { in parseOverlayManifest()
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
D | ISub.aidl | 271 void setSubscriptionProperty(int subId, String propKey, String propValue); in setSubscriptionProperty() argument
|
/frameworks/opt/net/ims/src/java/com/android/ims/ |
D | ImsManager.java | 268 void setSubscriptionProperty(int subId, String propKey, String propValue); in setSubscriptionProperty() argument 316 public void setSubscriptionProperty(int subId, String propKey, String propValue) { in setSubscriptionProperty() argument 317 SubscriptionManager.setSubscriptionProperty(subId, propKey, propValue); in setSubscriptionProperty()
|
/frameworks/base/core/java/com/android/internal/pm/pkg/parsing/ |
D | ParsingPackageUtils.java | 2970 String propValue = sa.getString( 2972 if (!FrameworkParsingPackageUtils.checkRequiredSystemProperties(propName, propValue)) { 2976 + propName + " with value: " + propValue;
|
/frameworks/base/core/java/android/content/pm/ |
D | PackageParser.java | 2052 final String propValue = sa.getString( in parseBaseApkCommon() local 2071 if (!checkRequiredSystemProperties(propName, propValue)) { in parseBaseApkCommon() 2074 + propName + " with value: " + propValue); in parseBaseApkCommon()
|