Searched refs:propValue (Results 1 - 5 of 5) sorted by relevance

/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DPropertyNodesVerifierElem.java62 public PropertyNodesVerifierElem addExpectedNodeWithOrder(String propName, String propValue) { argument
63 return addExpectedNodeWithOrder(propName, propValue, null, null, null, null, null);
67 String propName, String propValue, ContentValues contentValues) {
68 return addExpectedNodeWithOrder(propName, propValue, null,
79 String propName, String propValue, List<String> propValueList) {
80 return addExpectedNodeWithOrder(propName, propValue, propValueList, null,
86 final String propValue = concatinateListWithSemiColon(propValueList);
87 return addExpectedNodeWithOrder(propName, propValue.toString(), propValueList,
91 public PropertyNodesVerifierElem addExpectedNodeWithOrder(String propName, String propValue, argument
93 return addExpectedNodeWithOrder(propName, propValue, nul
66 addExpectedNodeWithOrder( String propName, String propValue, ContentValues contentValues) argument
78 addExpectedNodeWithOrder( String propName, String propValue, List<String> propValueList) argument
109 addExpectedNodeWithOrder(String propName, String propValue, ContentValues paramMap, TypeSet paramMap_TYPE) argument
115 addExpectedNodeWithOrder(String propName, String propValue, List<String> propValueList, TypeSet paramMap_TYPE) argument
121 addExpectedNodeWithOrder(String propName, String propValue, List<String> propValueList, ContentValues paramMap) argument
127 addExpectedNodeWithOrder(String propName, String propValue, List<String> propValueList, byte[] propValue_bytes, ContentValues paramMap, TypeSet paramMap_TYPE, GroupSet propGroupSet) argument
147 addExpectedNode(String propName, String propValue) argument
151 addExpectedNode(String propName, String propValue, ContentValues contentValues) argument
162 addExpectedNode(String propName, String propValue, List<String> propValueList) argument
173 addExpectedNode(String propName, String propValue, TypeSet paramMap_TYPE) argument
185 addExpectedNode(String propName, String propValue, List<String> propValueList, TypeSet paramMap_TYPE) argument
191 addExpectedNode(String propName, String propValue, ContentValues paramMap, TypeSet paramMap_TYPE) argument
197 addExpectedNode(String propName, String propValue, List<String> propValueList, byte[] propValue_bytes, ContentValues paramMap, TypeSet paramMap_TYPE, GroupSet propGroupSet) argument
[all...]
H A DPropertyNode.java44 public String propValue; field in class:PropertyNode
48 * Used when propValue is encoded by something like BASE64, QUOTED-PRINTABLE, etc.
69 propValue = "";
77 String propName, String propValue, List<String> propValue_vector,
85 if (propValue != null) {
86 this.propValue = propValue;
88 this.propValue = "";
143 if (!propValue.equals(node.propValue)) {
76 PropertyNode( String propName, String propValue, List<String> propValue_vector, byte[] propValue_bytes, ContentValues paramMap, Set<String> paramMap_TYPE, Set<String> propGroupSet) argument
[all...]
H A DVNodeBuilder.java125 propNode.propValue = "";
133 propNode.propValue = "";
136 propNode.propValue = listToString(propNode.propValue_vector);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java1962 private void addIm(int protocol, String customProtocol, String propValue, int type, argument
1967 mImList.add(new ImData(protocol, customProtocol, propValue, type, isPrimary));
2134 final String propValue = (propertyValueList != null
2141 mNameData.mFormatted = propValue;
2146 mNameData.mFormatted = propValue;
2151 mNameData.mSortString = propValue;
2154 addNickName(propValue);
2163 final List<String> phoneticNameList = VCardUtils.constructListFromValue(propValue,
2250 addEmail(type, propValue, label, isPrimary);
2265 handleTitleValue(propValue);
2415 handleSipCase(String propValue, Collection<String> typeCollection) argument
[all...]
/frameworks/av/services/audiopolicy/
H A DAudioPolicyManager.cpp2348 char propValue[PROPERTY_VALUE_MAX]; local
2349 if (property_get("audio.offload.disable", propValue, "0")) {
2350 if (atoi(propValue) != 0) {
2351 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2371 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2372 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2373 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);

Completed in 108 milliseconds