Home
last modified time | relevance | path

Searched refs:propValue (Results 1 – 5 of 5) 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/opt/vcard/java/com/android/vcard/
DVCardEntry.java1962 private void addIm(int protocol, String customProtocol, String propValue, int type, in addIm() argument
1967 mImList.add(new ImData(protocol, customProtocol, propValue, type, isPrimary)); in addIm()
2134 final String propValue = (propertyValueList != null in addProperty() local
2141 mNameData.mFormatted = propValue; in addProperty()
2146 mNameData.mFormatted = propValue; in addProperty()
2151 mNameData.mSortString = propValue; in addProperty()
2154 addNickName(propValue); in addProperty()
2163 final List<String> phoneticNameList = VCardUtils.constructListFromValue(propValue, in addProperty()
2250 addEmail(type, propValue, label, isPrimary); in addProperty()
2265 handleTitleValue(propValue); in addProperty()
[all …]
/frameworks/av/services/audiopolicy/
DAudioPolicyManager.cpp1947 char propValue[PROPERTY_VALUE_MAX]; in isOffloadSupported() local
1948 if (property_get("audio.offload.disable", propValue, "0")) { in isOffloadSupported()
1949 if (atoi(propValue) != 0) { in isOffloadSupported()
1950 ALOGV("offload disabled by audio.offload.disable=%s", propValue ); in isOffloadSupported()
1970 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) { in isOffloadSupported()
1971 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) { in isOffloadSupported()
1972 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue); in isOffloadSupported()