/cts/tests/tests/provider/src/android/provider/cts/ |
Contacts_OrganizationsTest.java | 20 import android.provider.Contacts.Organizations; 26 String display = Organizations.getDisplayLabel(getContext(), 27 Organizations.TYPE_CUSTOM, label).toString(); 32 display = Organizations.getDisplayLabel(getContext(), 33 Organizations.TYPE_OTHER, label).toString(); 34 assertEquals(labels[Organizations.TYPE_OTHER - 1], display); 36 display = Organizations.getDisplayLabel(getContext(), 37 Organizations.TYPE_WORK, label).toString(); 38 assertEquals(labels[Organizations.TYPE_WORK - 1], display);
|
ContactsTest.java | 37 import android.provider.Contacts.Organizations; 327 * Test case for the behavior of the ContactsProvider's organizations table 332 Organizations._ID, Organizations.COMPANY, Organizations.TITLE, 333 Organizations.ISPRIMARY, Organizations.TYPE, Organizations.LABEL, 334 Organizations.PERSON_ID}; 357 value.put(Organizations.COMPANY, insertOrganizationsCompany) [all...] |
/external/chromium-trace/ |
AUTHORS | 6 # For organizations:
|
/external/chromium-trace/trace-viewer/tracing/ |
AUTHORS | 6 # For organizations:
|
/external/regex-re2/ |
AUTHORS | 7 # The email address is not required for organizations.
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
LegacyContactsProviderTest.java | 30 import android.provider.Contacts.Organizations; 146 values.put(Organizations.ISPRIMARY, 1); 147 values.put(Organizations.COMPANY, "Google"); 148 values.put(Organizations.TYPE, Organizations.TYPE_WORK); 149 values.put(Organizations.PERSON_ID, personId); 150 Uri orgUri1 = mResolver.insert(Organizations.CONTENT_URI, values); 154 values.put(Organizations.COMPANY, "Acme"); 155 values.put(Organizations.TYPE, Organizations.TYPE_WORK) [all...] |
/external/pdfium/ |
AUTHORS | 6 # For organizations:
|
/packages/providers/ContactsProvider/tests/assets/testUnsynced/ |
legacy_contacts.sql | 32 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)); table 33 CREATE TABLE people (_id INTEGER PRIMARY KEY AUTOINCREMENT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT COLLATE LOCALIZED,notes TEXT COLLATE LOCALIZED,times_contacted INTEGER NOT NULL DEFAULT 0,last_time_contacted INTEGER,starred INTEGER NOT NULL DEFAULT 0,primary_phone INTEGER REFERENCES phones(_id),primary_organization INTEGER REFERENCES organizations(_id),primary_email INTEGER REFERENCES contact_methods(_id),photo_version TEXT,custom_ringtone TEXT,send_to_voicemail INTEGER,phonetic_name TEXT COLLATE LOCALIZED); 80 CREATE INDEX organizationsIndex1 ON organizations (person); 90 CREATE TRIGGER contact_cleanup DELETE ON people BEGIN DELETE FROM peopleLookup WHERE source = old._id;DELETE FROM peopleLookupWithPhoneticName WHERE source = old._id;DELETE FROM phones WHERE person = old._id;DELETE FROM contact_methods WHERE person = old._id;DELETE FROM organizations WHERE person = old._id;DELETE FROM groupmembership WHERE person = old._id;DELETE FROM extensions WHERE person = old._id;END; 104 CREATE TRIGGER organizations_INSERT_typeAndLabel AFTER INSERT ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 105 CREATE TRIGGER organizations_UPDATE_typeAndLabel AFTER UPDATE ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 106 CREATE TRIGGER organizations_delete DELETE ON organizations BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END; 107 CREATE TRIGGER organizations_insert INSERT ON organizations BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END; 108 CREATE TRIGGER organizations_update AFTER UPDATE ON organizations BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
LegacyApiSupport.java | 81 private static final int ORGANIZATIONS = 4; 213 public static final String ORGANIZATIONS = "view_v1_organizations"; 324 matcher.addURI(authority, "people/#/organizations", PEOPLE_ORGANIZATIONS); 325 matcher.addURI(authority, "people/#/organizations/#", PEOPLE_ORGANIZATIONS_ID); 349 matcher.addURI(authority, "organizations", ORGANIZATIONS); 350 matcher.addURI(authority, "organizations/#", ORGANIZATIONS_ID); 404 sOrganizationProjectionMap.put(android.provider.Contacts.Organizations._ID, 405 android.provider.Contacts.Organizations._ID); 406 sOrganizationProjectionMap.put(android.provider.Contacts.Organizations.PERSON_ID [all...] |
/prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.3.04/ |
xml-apis-1.3.04.pom | 17 interfaces that are defined by external standards organizations. For DOM,
|
/packages/providers/ContactsProvider/tests/assets/test1/ |
legacy_contacts.sql | 51 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)); table 52 INSERT INTO organizations VALUES(1,'Acme Corp','President',0,1,NULL,3); 53 CREATE TABLE people (_id INTEGER PRIMARY KEY AUTOINCREMENT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT COLLATE LOCALIZED,notes TEXT COLLATE LOCALIZED,times_contacted INTEGER NOT NULL DEFAULT 0,last_time_contacted INTEGER,starred INTEGER NOT NULL DEFAULT 0,primary_phone INTEGER REFERENCES phones(_id),primary_organization INTEGER REFERENCES organizations(_id),primary_email INTEGER REFERENCES contact_methods(_id),photo_version TEXT,custom_ringtone TEXT,send_to_voicemail INTEGER,phonetic_name TEXT COLLATE LOCALIZED); 102 INSERT INTO sqlite_sequence VALUES('organizations',2); 112 CREATE INDEX organizationsIndex1 ON organizations (person); 122 CREATE TRIGGER contact_cleanup DELETE ON people BEGIN DELETE FROM peopleLookup WHERE source = old._id;DELETE FROM peopleLookupWithPhoneticName WHERE source = old._id;DELETE FROM phones WHERE person = old._id;DELETE FROM contact_methods WHERE person = old._id;DELETE FROM organizations WHERE person = old._id;DELETE FROM groupmembership WHERE person = old._id;DELETE FROM extensions WHERE person = old._id;END; 136 CREATE TRIGGER organizations_INSERT_typeAndLabel AFTER INSERT ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 137 CREATE TRIGGER organizations_UPDATE_typeAndLabel AFTER UPDATE ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 138 CREATE TRIGGER organizations_delete DELETE ON organizations BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END; 139 CREATE TRIGGER organizations_insert INSERT ON organizations BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END [all...] |
/external/libvncserver/common/ |
sha1.h | 12 * Internet organizations, except as needed for the purpose of
|
/external/tcpdump/ |
oui.c | 50 * SMI Network Management Private Enterprise Codes for organizations.
|
oui.h | 37 * organizations; see
|
/packages/providers/ContactsProvider/tests/assets/testSynced/ |
legacy_contacts.sql | 42 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)); table 43 CREATE TABLE people (_id INTEGER PRIMARY KEY AUTOINCREMENT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT COLLATE LOCALIZED,notes TEXT COLLATE LOCALIZED,times_contacted INTEGER NOT NULL DEFAULT 0,last_time_contacted INTEGER,starred INTEGER NOT NULL DEFAULT 0,primary_phone INTEGER REFERENCES phones(_id),primary_organization INTEGER REFERENCES organizations(_id),primary_email INTEGER REFERENCES contact_methods(_id),photo_version TEXT,custom_ringtone TEXT,send_to_voicemail INTEGER,phonetic_name TEXT COLLATE LOCALIZED); 136 CREATE INDEX organizationsIndex1 ON organizations (person); 146 CREATE TRIGGER contact_cleanup DELETE ON people BEGIN DELETE FROM peopleLookup WHERE source = old._id;DELETE FROM peopleLookupWithPhoneticName WHERE source = old._id;DELETE FROM phones WHERE person = old._id;DELETE FROM contact_methods WHERE person = old._id;DELETE FROM organizations WHERE person = old._id;DELETE FROM groupmembership WHERE person = old._id;DELETE FROM extensions WHERE person = old._id;END; 160 CREATE TRIGGER organizations_INSERT_typeAndLabel AFTER INSERT ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 161 CREATE TRIGGER organizations_UPDATE_typeAndLabel AFTER UPDATE ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 162 CREATE TRIGGER organizations_delete DELETE ON organizations BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END; 163 CREATE TRIGGER organizations_insert INSERT ON organizations BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END; 164 CREATE TRIGGER organizations_update AFTER UPDATE ON organizations BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
|
/prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.0.b2/ |
xml-apis-1.0.b2.pom | 16 interfaces that are defined by external standards organizations. For DOM,
|
/prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.4.01/ |
xml-apis-1.4.01.pom | 12 interfaces that are defined by external standards organizations. For DOM,
|
/external/owasp/sanitizer/tools/findbugs/doc/ |
users.html | 77 FindBugs is used in many companies and organizations. We don't 97 The following companies, projects and organizations have given us 146 The following companies, organizations and institutions provide
|
/docs/source.android.com/src/source/ |
index.jd | 51 effort; a group of organizations with shared needs has pooled
|
/external/v8/ |
AUTHORS | 1 # Below is a list of people and organizations that have contributed
|
/docs/source.android.com/src/devices/tech/ |
index.jd | 29 can find information on common features useful to people and organizations who
|
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/ |
pom.xml | 31 <!-- This is your organizations normal group name
|
/docs/source.android.com/src/devices/tech/security/selinux/ |
index.jd | 41 <p>Contributions to it have been made by a number of companies and organizations;
|
/external/iputils/doc/ |
iputils.db | 203 Different files are copyrighted by different persons and organizations
|
/external/proguard/docs/ |
testimonials.html | 30 organizations like IBM, HP, Siemens, Nokia, Google, Intel, and NATO. It is the
|