Home
last modified time | relevance | path

Searched refs:person (Results 1 – 25 of 41) sorted by relevance

12

/packages/providers/ContactsProvider/tests/assets/testUnsynced/
Dlegacy_contacts.sql11 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES peopl… field
15 …TOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(pe… field
24 CREATE TABLE groupmembership (_id INTEGER PRIMARY KEY,person INTEGER REFERENCES people(_id),group_i… field
32 …XT,isprimary INTEGER NOT NULL DEFAULT 0,type INTEGER NOT NULL,label TEXT,person INTEGER REFERENCES… field
55 CREATE TABLE phones (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),ty… field
59person INTEGER REFERENCES people(_id), local_version TEXT,data BLOB,sync_error TEXT,_sync_account … field
74 CREATE INDEX contactMethodsPeopleIndex ON contact_methods (person);
75 CREATE INDEX extensionsIndex1 ON extensions (person, name);
76 CREATE INDEX groupmembershipIndex1 ON groupmembership (person, group_id);
77 CREATE INDEX groupmembershipIndex2 ON groupmembership (group_id, person);
[all …]
/packages/providers/ContactsProvider/tests/assets/test1/
Dlegacy_contacts.sql14 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES peopl… field
31 …TOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(pe… field
40 CREATE TABLE groupmembership (_id INTEGER PRIMARY KEY,person INTEGER REFERENCES people(_id),group_i… field
51 …XT,isprimary INTEGER NOT NULL DEFAULT 0,type INTEGER NOT NULL,label TEXT,person INTEGER REFERENCES… field
78 CREATE TABLE phones (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),ty… field
89person INTEGER REFERENCES people(_id), local_version TEXT,data BLOB,sync_error TEXT,_sync_account … field
106 CREATE INDEX contactMethodsPeopleIndex ON contact_methods (person);
107 CREATE INDEX extensionsIndex1 ON extensions (person, name);
108 CREATE INDEX groupmembershipIndex1 ON groupmembership (person, group_id);
109 CREATE INDEX groupmembershipIndex2 ON groupmembership (group_id, person);
[all …]
/packages/providers/ContactsProvider/tests/assets/testSynced/
Dlegacy_contacts.sql12 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES peopl… field
18 …TOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(pe… field
28 CREATE TABLE groupmembership (_id INTEGER PRIMARY KEY,person INTEGER REFERENCES people(_id),group_i… field
42 …XT,isprimary INTEGER NOT NULL DEFAULT 0,type INTEGER NOT NULL,label TEXT,person INTEGER REFERENCES… field
100 CREATE TABLE phones (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),ty… field
107person INTEGER REFERENCES people(_id), local_version TEXT,data BLOB,sync_error TEXT,_sync_account … field
130 CREATE INDEX contactMethodsPeopleIndex ON contact_methods (person);
131 CREATE INDEX extensionsIndex1 ON extensions (person, name);
132 CREATE INDEX groupmembershipIndex1 ON groupmembership (person, group_id);
133 CREATE INDEX groupmembershipIndex2 ON groupmembership (group_id, person);
[all …]
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Dfaq.md128 Document person;
129 person.Parse("{\"person\":{\"name\":{\"first\":\"Adam\",\"last\":\"Thomas\"}}}");
134 …we want to merge them in such way that the whole `address` document becomes a node of the `person`:
136 { "person": {
145 …y the `address` definition above to initialize it with allocator of the `person` document, then we…
147 Documnet address(person.GetAllocator());
149 person["person"].AddMember("address", address["address"], person.GetAllocator());
154 person["person"].AddMember(addressRoot->name, addressRoot->value, person.GetAllocator());
159 Value addressValue = Value(address["address"], person.GetAllocator());
160 person["person"].AddMember("address", addressValue, person.GetAllocator());
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/notification/
DNotificationFragment.java323 Person person = new Person.Builder().setName("John Doe").build(); in initMessagingStyleButtonForSamePerson()
325 new MessagingStyle(person).setConversationTitle("Hello!"); in initMessagingStyleButtonForSamePerson()
352 person))); in initMessagingStyleButtonForSamePerson()
366 Person person = new Person.Builder().setName("John Doe").build(); in initMessagingStyleButtonWithMuteAction()
368 new MessagingStyle(person).setConversationTitle("Hello, try muting me!"); in initMessagingStyleButtonWithMuteAction()
400 person))); in initMessagingStyleButtonWithMuteAction()
412 Person person = new Person.Builder().setName("John Doe " + id).build(); in initTestMessagesButton()
414 new MessagingStyle(person).setConversationTitle("Hello!"); in initTestMessagesButton()
446 person))); in initTestMessagesButton()
/packages/apps/Car/libs/car-messenger-common/src/com/android/car/messenger/common/
DSenderKey.java51 NotificationMsg.Person person) { in createSenderKey() argument
52 return new SenderKey(convoKey.getDeviceId(), person.getName(), convoKey.getSubKey()); in createSenderKey()
DUtils.java180 public static boolean isValidSender(Person person) { in isValidSender() argument
181 if (person.getName() == null) { in isValidSender()
DConversation.java494 public Message(@NonNull String text, long timestamp, @Nullable Person person) { in Message() argument
497 mPerson = person; in Message()
/packages/apps/Launcher3/src/com/android/launcher3/notification/
DNotificationKeyData.java72 return people.stream().filter(person -> person.getKey() != null) in extractPersonKeyOnly()
/packages/apps/Car/Messenger/src/com/android/car/messenger/impl/datamodels/util/
DMessageUtils.java170 Person person = in parseMessageAtPoint() local
173 new Conversation.Message(msg.mBody, msg.mDate.toEpochMilli(), person); in parseMessageAtPoint()
DContactUtils.java87 Person person = getPerson(context, number, processParticipant); in getRecipients() local
88 participants.add(person); in getRecipients()
/packages/providers/ContactsProvider/tests/assets/upgradeTest/
Dcontacts2_1108.sql156 CREATE VIEW view_v1_organizations AS SELECT data._id AS _id, raw_contact_id AS person, is_primary A…
157 CREATE VIEW view_v1_contact_methods AS SELECT data._id AS _id, data.raw_contact_id AS person, CAST …
158 CREATE VIEW view_v1_phones AS SELECT DISTINCT data._id AS _id, data.raw_contact_id AS person, data.…
159 CREATE VIEW view_v1_extensions AS SELECT data._id AS _id, data.raw_contact_id AS person, accounts.a…
161 CREATE VIEW view_v1_group_membership AS SELECT data._id AS _id, data.raw_contact_id AS person, acco…
162 CREATE VIEW view_v1_photos AS SELECT data._id AS _id, data.raw_contact_id AS person, accounts.accou…
/packages/apps/Car/libs/car-messenger-common/proto/
Dnotification_msg.proto146 // Metadata of the person.
147 Person person = 1; field
/packages/apps/Dialer/java/com/android/dialer/calllog/database/contract/
Dnumber_attributes.proto28 // The name (which may be a person's name or business name, but not a number)
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/tzs2polygons_tzs2cellunions/data/
DLICENSE99 “Person” – Means a natural or legal person or a body of persons
360 the ability of any person to exercise those rights.
373 the effect or intent of restricting the ability of any person to
384 ability of any person to exercise those rights.
/packages/modules/GeoTZ/output_data/odbl/
DLICENSE99 “Person” – Means a natural or legal person or a body of persons
360 the ability of any person to exercise those rights.
373 the effect or intent of restricting the ability of any person to
384 ability of any person to exercise those rights.
/packages/modules/GeoTZ/tzbb_data/
DDATA_LICENSE99 “Person” – Means a natural or legal person or a body of persons
360 the ability of any person to exercise those rights.
373 the effect or intent of restricting the ability of any person to
384 ability of any person to exercise those rights.
DLICENSE99 “Person” – Means a natural or legal person or a body of persons
360 the ability of any person to exercise those rights.
373 the effect or intent of restricting the ability of any person to
384 ability of any person to exercise those rights.
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/canonicalizetzs2polygons/data/output_polygons/
DLICENSE99 “Person” – Means a natural or legal person or a body of persons
360 the ability of any person to exercise those rights.
373 the effect or intent of restricting the ability of any person to
384 ability of any person to exercise those rights.
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/createtzs2protodatafile/data/
DLICENSE99 “Person” – Means a natural or legal person or a body of persons
360 the ability of any person to exercise those rights.
373 the effect or intent of restricting the ability of any person to
384 ability of any person to exercise those rights.
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/tzs2cellunions_to_tzs2ranges/data/
DLICENSE99 “Person” – Means a natural or legal person or a body of persons
360 the ability of any person to exercise those rights.
373 the effect or intent of restricting the ability of any person to
384 ability of any person to exercise those rights.
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/canonicalizetzs2polygons/data/input_polygons/
DLICENSE99 “Person” – Means a natural or legal person or a body of persons
360 the ability of any person to exercise those rights.
373 the effect or intent of restricting the ability of any person to
384 ability of any person to exercise those rights.
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/geojsontz_to_tzs2polygons/data/
DLICENSE99 “Person” – Means a natural or legal person or a body of persons
360 the ability of any person to exercise those rights.
373 the effect or intent of restricting the ability of any person to
384 ability of any person to exercise those rights.
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/mergetzs2ranges/data/
DLICENSE99 “Person” – Means a natural or legal person or a body of persons
360 the ability of any person to exercise those rights.
373 the effect or intent of restricting the ability of any person to
384 ability of any person to exercise those rights.
/packages/modules/DnsResolver/
Dstats.proto102 NS_T_RP = 17; // Responsible person.

12