Home | History | Annotate | Download | only in vcard

Lines Matching defs:organization

32 import android.provider.ContactsContract.CommonDataKinds.Organization;
63 private final static int DEFAULT_ORGANIZATION_TYPE = Organization.TYPE_WORK;
277 OrganizationData organization = (OrganizationData)obj;
278 return (type == organization.type &&
279 TextUtils.equals(companyName, organization.companyName) &&
280 TextUtils.equals(departmentName, organization.departmentName) &&
281 TextUtils.equals(titleName, organization.titleName) &&
282 isPrimary == organization.isPrimary);
621 // Create new first organization entry, with "null" title which may be
653 // Create new first organization entry, with "null" other info, which may be
664 // No Organization is available. Create another one, with "null" other info, which may be
945 final int type = Organization.TYPE_WORK;
1234 builder.withValueBackReference(Organization.RAW_CONTACT_ID, 0);
1235 builder.withValue(Data.MIMETYPE, Organization.CONTENT_ITEM_TYPE);
1236 builder.withValue(Organization.TYPE, organizationData.type);
1238 builder.withValue(Organization.COMPANY, organizationData.companyName);
1241 builder.withValue(Organization.DEPARTMENT, organizationData.departmentName);
1244 builder.withValue(Organization.TITLE, organizationData.titleName);
1247 builder.withValue(Organization.PHONETIC_NAME, organizationData.phoneticName);
1250 builder.withValue(Organization.IS_PRIMARY, 1);