Home | History | Annotate | Download | only in vcard

Lines Matching defs:propValue

1962     private void addIm(int protocol, String customProtocol, String propValue, int type,
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);
2268 // handleTitleValue(propValue);
2293 // Given propValue is in URI format, not in phone number format used until
2295 if (propValue.startsWith("sip:")) {
2297 } else if (propValue.startsWith("tel:")) {
2298 phoneNumber = propValue.substring(4);
2303 phoneNumber = propValue;
2306 phoneNumber = propValue;
2311 handleSipCase(propValue, typeCollection);
2313 if (propValue.length() == 0) {
2351 addPhone(type, propValue, null, isPrimary);
2373 addIm(protocol, null, propValue, type, isPrimary);
2375 addNote(propValue);
2380 mWebsiteList.add(new WebsiteData(propValue));
2382 mBirthday = new BirthdayData(propValue);
2384 mAnniversary = new AnniversaryData(propValue);
2386 mNameData.mPhoneticGiven = propValue;
2388 mNameData.mPhoneticMiddle = propValue;
2390 mNameData.mPhoneticFamily = propValue;
2393 if (propValue.startsWith("sip:")) {
2395 handleSipCase(propValue, typeCollection);
2398 if (!TextUtils.isEmpty(propValue)) {
2400 handleSipCase(propValue, typeCollection);
2403 final List<String> customPropertyList = VCardUtils.constructListFromValue(propValue,
2412 * @param propValue may contain "sip:" at the beginning.
2415 private void handleSipCase(String propValue, Collection<String> typeCollection) {
2416 if (TextUtils.isEmpty(propValue)) {
2419 if (propValue.startsWith("sip:")) {
2420 propValue = propValue.substring(4);
2421 if (propValue.length() == 0) {
2451 addSip(propValue, type, label, isPrimary);