Searched refs:company (Results 1 - 13 of 13) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DScanFilterQueue.java58 public int company; field in class:ScanFilterQueue.Entry
65 return Objects.hash(address, addr_type, type, uuid, uuid_mask, name, company,
83 company == other.company && company_mask == other.company_mask &&
135 void addManufacturerData(int company, byte[] data) { argument
138 entry.company = company;
146 void addManufacturerData(int company, int company_mask, byte[] data, byte[] data_mask) { argument
149 entry.company = company;
[all...]
H A DScanManager.java792 gattClientScanFilterAddNative(clientIf, entry.type, filterIndex, entry.company,
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandlerForOrganization.java44 String company = values.getAsString(Organization.COMPANY);
66 String company;
69 company = values.getAsString(Organization.COMPANY);
72 company = DatabaseUtils.stringForQuery(db,
H A DContactsDatabaseHelper.java3125 String company = cursor.getString(Organization205Query.COMPANY);
3134 String sortKey = company;
3136 updateRawContact205(rawContactUpdate, rawContactId, company,
3137 company, phoneticNameStyle, phoneticName, sortKey, sortKey);
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DContactDisplayUtils.java126 final String company = organization.getCompany();
129 // We need to show company and title in a combined string. However, if the
130 // DisplayName is already the organization, it mirrors company or (if company
132 if (TextUtils.isEmpty(company)) {
136 combined = displayNameIsOrganization ? null : company;
143 company, title);
207 * Sets the company and job title of this contact to the given {@link TextView}. If
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DGlobalSearchSupportTest.java85 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").company("Google")
93 "Little Fawn").company("Google").build();
99 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").company("Google")
106 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").company("Google")
H A DBaseContactsProvider2Test.java1293 private final String company; field in class:BaseContactsProvider2Test.GoldenContact
1309 company = builder.company;
1370 * Return's the company at which the contact works.
1373 return company;
1412 private String company; field in class:BaseContactsProvider2Test.GoldenContactBuilder
1462 * The company at which the contact works.
1464 public GoldenContactBuilder company(String value) { method in class:BaseContactsProvider2Test.GoldenContactBuilder
1465 company = value;
1513 if (company !
[all...]
H A DContactsProvider2Test.java4096 // If there are title and company, the company is display name.
4122 // If there is title without company, the title is display name.
4128 // If there are title and company, the company is display name.
4155 // If there is title without company, the title is display name.
4184 // If there is title without company, the title is display name.
4400 ContentValues company = new ContentValues();
4401 company.clear();
4402 company
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DRawContactModifier.java573 final String company = extras.getString(Insert.COMPANY);
574 if (ContactsUtils.isGraphic(company)) {
575 child.put(Organization.COMPANY, company);
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DContactsSyncParser.java1293 public void addOrganization(Entity entity, int type, String company, String title, argument
1297 if (cv != null && cvCompareString(cv, Organization.COMPANY, company) &&
1305 builder.withValue(Organization.COMPANY, company);
/packages/providers/ContactsProvider/tests/assets/testUnsynced/
H A Dlegacy_contacts.sql32 CREATE TABLE organizations (_id INTEGER PRIMARY KEY AUTOINCREMENT,company TEXT,title TEXT,isprimary INTEGER NOT NULL DEFAULT 0,type INTEGER NOT NULL,label TEXT,person INTEGER REFERENCES people(_id));
/packages/providers/ContactsProvider/tests/assets/test1/
H A Dlegacy_contacts.sql51 CREATE TABLE organizations (_id INTEGER PRIMARY KEY AUTOINCREMENT,company TEXT,title TEXT,isprimary INTEGER NOT NULL DEFAULT 0,type INTEGER NOT NULL,label TEXT,person INTEGER REFERENCES people(_id));
/packages/providers/ContactsProvider/tests/assets/testSynced/
H A Dlegacy_contacts.sql42 CREATE TABLE organizations (_id INTEGER PRIMARY KEY AUTOINCREMENT,company TEXT,title TEXT,isprimary INTEGER NOT NULL DEFAULT 0,type INTEGER NOT NULL,label TEXT,person INTEGER REFERENCES people(_id));

Completed in 390 milliseconds