Home | History | Annotate | Download | only in vcard

Lines Matching defs:organization

33 import android.provider.ContactsContract.CommonDataKinds.Organization;
62 private final static int DEFAULT_ORGANIZATION_TYPE = Organization.TYPE_WORK;
279 OrganizationData organization = (OrganizationData)obj;
280 return (type == organization.type &&
281 TextUtils.equals(companyName, organization.companyName) &&
282 TextUtils.equals(departmentName, organization.departmentName) &&
283 TextUtils.equals(titleName, organization.titleName) &&
284 isPrimary == organization.isPrimary);
622 // Create new first organization entry, with "null" title which may be
654 // Create new first organization entry, with "null" other info, which may be
665 // No Organization is available. Create another one, with "null" other info, which may be
946 final int type = Organization.TYPE_WORK;
1199 builder.withValueBackReference(Organization.RAW_CONTACT_ID, 0);
1200 builder.withValue(Data.MIMETYPE, Organization.CONTENT_ITEM_TYPE);
1201 builder.withValue(Organization.TYPE, organizationData.type);
1203 builder.withValue(Organization.COMPANY, organizationData.companyName);
1206 builder.withValue(Organization.DEPARTMENT, organizationData.departmentName);
1209 builder.withValue(Organization.TITLE, organizationData.titleName);
1212 builder.withValue(Organization.PHONETIC_NAME, organizationData.phoneticName);
1215 builder.withValue(Organization.IS_PRIMARY, 1);