/aosp_15_r20/external/google-cloud-java/java-contact-center-insights/ |
H A D | CHANGELOG.md | 3 …eapis/google-cloud-java/compare/google-cloud-contact-center-insights-v2.4.1-SNAPSHOT...google-clou… 26 …oogleapis/google-cloud-java/compare/google-cloud-contact-center-insights-v2.3.10...google-cloud-co… 49 ## [2.3.10](https://github.com/googleapis/java-contact-center-insights/compare/v2.3.9...v2.3.10) (2… 54 …s://github.com/googleapis/java-contact-center-insights/issues/370)) ([b0215ee](https://github.com/… 55 …s://github.com/googleapis/java-contact-center-insights/issues/374)) ([69f5cea](https://github.com/… 56 …s://github.com/googleapis/java-contact-center-insights/issues/369)) ([a04e782](https://github.com/… 58 ## [2.3.9](https://github.com/googleapis/java-contact-center-insights/compare/v2.3.8...v2.3.9) (202… 63 * update protobuf to v3.21.7 ([725854b](https://github.com/googleapis/java-contact-center-insights/… 68 …s://github.com/googleapis/java-contact-center-insights/issues/345)) ([bcde3d4](https://github.com/… 73 …s://github.com/googleapis/java-contact-center-insights/issues/362)) ([091782e](https://github.com/… [all …]
|
/aosp_15_r20/packages/apps/Contacts/res/values/ |
D | strings.xml | 25 <!-- Name of the dynamic shortcut that creates a new contact [CHAR LIMIT=30] --> 26 <string name="shortcut_add_contact">Add contact</string> 28 <!-- Name of activity that allows users to create shortcuts on the home screen to a contact. 30 <string name="shortcutContact">Contact</string> 32 … <!-- Name of activity that allows users to create shortcuts on the home screen to dial a contact. 36 …me of activity that allows users to create shortcuts on the home screen to message (SMS) a contact. 40 <!-- Activity title when the user is selecting a contact for a shortcut. --> 41 <string name="shortcutActivityTitle">Choose contact</string> 43 …<!-- Activity title when the user is inserting into an existing contact, or creating a new one. [… 44 <string name="contactInsertOrEditActivityTitle">Add to contact</string> [all …]
|
/aosp_15_r20/development/samples/SampleSyncAdapter/samplesyncadapter_server/ |
H A D | web_services.py | 131 it returns user's contact info in JSON format. 139 logging.info('*** Starting contact sync ***') 149 # the newly added contact. 159 logging.info('Returning ' + str(len(updated_contacts)) + ' contact records') 184 contacts = datastore.Contact.all() 190 for contact in contacts: 191 if (contact.updated > high_water_date): 192 high_water_date = contact.updated 198 for contact in contacts: 200 # contact (for example, it's a contact just uploaded from the client) [all …]
|
H A D | dashboard.py | 18 Defines Django forms for inserting/updating/viewing contact data 66 """Represents django form for entering contact info.""" 69 model = datastore.Contact 74 Processes requests to add a new contact. GET presents an empty 75 contact form for the user to fill in. POST saves the new contact 80 self.send_form('Add Contact', '/add_contact', -1, None, ContactForm()) 91 self.send_form('Add Contact', '/add_contact', -1, None, data) 96 Process requests to edit a contact's information. GET presents a form 97 with the current contact information filled in. POST saves new information 98 into the contact record. [all …]
|
/aosp_15_r20/packages/apps/Contacts/res/values-tl/ |
D | strings.xml | 19 <string name="applicationLabel" msgid="8908212014470937609">"Mga Contact"</string> 20 <string name="contactsList" msgid="4456188358262700898">"Mga Contact"</string> 21 <string name="shortcut_add_contact" msgid="7949342235528657981">"Magdagdag ng contact"</string> 22 <string name="shortcutContact" msgid="8009736387364461511">"Contact"</string> 25 <string name="shortcutActivityTitle" msgid="5407832911005090417">"Pumili ng contact"</string> 26 …<string name="contactInsertOrEditActivityTitle" msgid="1788154962629911262">"Idagdag sa contact"</… 27 …<string name="contactPickerActivityTitle" msgid="1842634991247618890">"Pumili ng isang contact"</s… 29 …_contact_list_adapter_header_title" msgid="4098233078586958762">"Gumawa ng bagong contact"</string> 30 <string name="searchHint" msgid="1487501532610025473">"Maghanap ng mga contact"</string> 40 <string name="menu_editGroup" msgid="8706562583754054622">"Alisin ang mga contact"</string> [all …]
|
/aosp_15_r20/external/google-cloud-java/java-essential-contacts/google-cloud-essential-contacts/src/test/java/com/google/cloud/essentialcontacts/v1/ |
H A D | EssentialContactsServiceClientHttpJsonTest.java | 85 Contact expectedResponse = in createContactTest() 86 Contact.newBuilder() in createContactTest() 87 .setName(ContactName.ofProjectContactName("[PROJECT]", "[CONTACT]").toString()) in createContactTest() 97 Contact contact = Contact.newBuilder().build(); in createContactTest() local 99 Contact actualResponse = client.createContact(parent, contact); in createContactTest() 126 Contact contact = Contact.newBuilder().build(); in createContactExceptionTest() local 127 client.createContact(parent, contact); in createContactExceptionTest() 136 Contact expectedResponse = in createContactTest2() 137 Contact.newBuilder() in createContactTest2() 138 .setName(ContactName.ofProjectContactName("[PROJECT]", "[CONTACT]").toString()) in createContactTest2() [all …]
|
H A D | EssentialContactsServiceClientTest.java | 89 Contact expectedResponse = in createContactTest() 90 Contact.newBuilder() in createContactTest() 91 .setName(ContactName.ofProjectContactName("[PROJECT]", "[CONTACT]").toString()) in createContactTest() 101 Contact contact = Contact.newBuilder().build(); in createContactTest() local 103 Contact actualResponse = client.createContact(parent, contact); in createContactTest() 111 Assert.assertEquals(contact, actualRequest.getContact()); in createContactTest() 125 Contact contact = Contact.newBuilder().build(); in createContactExceptionTest() local 126 client.createContact(parent, contact); in createContactExceptionTest() 135 Contact expectedResponse = in createContactTest2() 136 Contact.newBuilder() in createContactTest2() [all …]
|
/aosp_15_r20/external/google-cloud-java/java-essential-contacts/google-cloud-essential-contacts/src/main/java/com/google/cloud/essentialcontacts/v1/ |
H A D | EssentialContactsServiceClient.java | 53 * Contact contact = Contact.newBuilder().build(); 54 * Contact response = essentialContactsServiceClient.createContact(parent, contact); 186 * Adds a new contact for a resource. 199 * Contact contact = Contact.newBuilder().build(); 200 * Contact response = essentialContactsServiceClient.createContact(parent, contact); 204 * @param parent Required. The resource to save this contact for. Format: 206 * @param contact Required. The contact to create. Must specify an email address and language tag. 209 public final Contact createContact(FolderName parent, Contact contact) { in createContact() argument 213 .setContact(contact) in createContact() 220 * Adds a new contact for a resource. [all …]
|
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/ |
D | people_v1.contactGroups.html | 84 <p class="firstline">Get a list of contact groups owned by the authenticated user by specifying a l… 90 …stline">Create a new contact group owned by the authenticated user. Created contact group names mu… 93 <p class="firstline">Delete an existing contact group owned by the authenticated user by specifying… 96 <p class="firstline">Get a specific contact group owned by the authenticated user by specifying a c… 99 <p class="firstline">List all contact groups owned by the authenticated user. Members of the contac… 105 … name of an existing contact group owned by the authenticated user. Updated contact group names mu… 109 …<pre>Get a list of contact groups owned by the authenticated user by specifying a list of contact … 114 …resourceNames: string, Required. The resource names of the contact groups to get. There is a maxim… 123 { # The response to a batch get contact groups request. 124 "responses": [ # The list of responses for each requested contact group resource. [all …]
|
/aosp_15_r20/external/google-cloud-java/java-domains/proto-google-cloud-domains-v1/src/main/java/com/google/cloud/domains/v1/ |
H A D | ContactSettings.java | 25 * Defines the contact information associated with a `Registration`. 27 * contact information. The `registrant_contact` is considered the 75 // @@protoc_insertion_point(interface_extends:google.cloud.domains.v1.ContactSettings.Contact) 82 * Required. Postal address of the contact. 96 * Required. Postal address of the contact. 110 * Required. Postal address of the contact. 123 * Required. Email address of the contact. 135 * Required. Email address of the contact. 148 * Required. Phone number of the contact in international format. For example, 161 * Required. Phone number of the contact in international format. For example, [all …]
|
/aosp_15_r20/external/google-cloud-java/java-domains/proto-google-cloud-domains-v1alpha2/src/main/java/com/google/cloud/domains/v1alpha2/ |
H A D | ContactSettings.java | 25 * Defines the contact information associated with a `Registration`. 27 * contact information. The `registrant_contact` is considered the 75 …/ @@protoc_insertion_point(interface_extends:google.cloud.domains.v1alpha2.ContactSettings.Contact) 82 * Required. Postal address of the contact. 96 * Required. Postal address of the contact. 110 * Required. Postal address of the contact. 123 * Required. Email address of the contact. 135 * Required. Email address of the contact. 148 * Required. Phone number of the contact in international format. For example, 161 * Required. Phone number of the contact in international format. For example, [all …]
|
/aosp_15_r20/external/google-cloud-java/java-domains/proto-google-cloud-domains-v1beta1/src/main/java/com/google/cloud/domains/v1beta1/ |
H A D | ContactSettings.java | 25 * Defines the contact information associated with a `Registration`. 27 * contact information. The `registrant_contact` is considered the 75 …// @@protoc_insertion_point(interface_extends:google.cloud.domains.v1beta1.ContactSettings.Contact) 82 * Required. Postal address of the contact. 96 * Required. Postal address of the contact. 110 * Required. Postal address of the contact. 123 * Required. Email address of the contact. 135 * Required. Email address of the contact. 148 * Required. Phone number of the contact in international format. For example, 161 * Required. Phone number of the contact in international format. For example, [all …]
|
/aosp_15_r20/packages/apps/Contacts/tests/src/com/android/contacts/model/ |
D | ContactLoaderTest.java | 51 * Runs ContactLoader tests for the the contact-detail and editor view. 93 private Contact assertLoadContact(Uri uri) { in assertLoadContact() 99 Contact result = assertLoadContact(null); in testNullUri() 104 Contact result = assertLoadContact(Uri.EMPTY); in testEmptyUri() 109 Contact result = assertLoadContact(Uri.parse("content://wtf")); in testInvalidUri() 125 Contact contact = assertLoadContact(baseUri); in testLoadContactWithContactIdUri() local 127 assertEquals(CONTACT_ID, contact.getId()); in testLoadContactWithContactIdUri() 128 assertEquals(RAW_CONTACT_ID, contact.getNameRawContactId()); in testLoadContactWithContactIdUri() 129 assertEquals(DisplayNameSources.STRUCTURED_NAME, contact.getDisplayNameSource()); in testLoadContactWithContactIdUri() 130 assertEquals(LOOKUP_KEY, contact.getLookupKey()); in testLoadContactWithContactIdUri() [all …]
|
/aosp_15_r20/external/angle/third_party/spirv-headers/src/include/spirv/ |
H A D | spir-v.xml | 45 'tool="name"' attribute; and a contact person/address in a 54 <id value="1" vendor="LunarG" comment="Contact TBD"/> 55 <id value="2" vendor="Valve" comment="Contact TBD"/> 56 <id value="3" vendor="Codeplay" comment="Contact Victor Lomuller, [email protected]"/> 57 <id value="4" vendor="NVIDIA" comment="Contact Kerch Holt, [email protected]"/> 58 <id value="5" vendor="ARM" comment="Contact Kevin Petit, [email protected]"/> 59 …<id value="6" vendor="Khronos" tool="LLVM/SPIR-V Translator" comment="Contact Yaxun (Sam) Liu, y… 60 …<id value="7" vendor="Khronos" tool="SPIR-V Tools Assembler" comment="Contact David Neto, dneto@… 61 …<id value="8" vendor="Khronos" tool="Glslang Reference Front End" comment="Contact John Kessenic… 62 <id value="9" vendor="Qualcomm" comment="Contact [email protected]"/> [all …]
|
/aosp_15_r20/external/deqp-deps/SPIRV-Headers/include/spirv/ |
D | spir-v.xml | 45 'tool="name"' attribute; and a contact person/address in a 54 <id value="1" vendor="LunarG" comment="Contact TBD"/> 55 <id value="2" vendor="Valve" comment="Contact TBD"/> 56 <id value="3" vendor="Codeplay" comment="Contact Victor Lomuller, [email protected]"/> 57 <id value="4" vendor="NVIDIA" comment="Contact Kerch Holt, [email protected]"/> 58 <id value="5" vendor="ARM" comment="Contact Kevin Petit, [email protected]"/> 59 …<id value="6" vendor="Khronos" tool="LLVM/SPIR-V Translator" comment="Contact Yaxun (Sam) Liu, y… 60 …<id value="7" vendor="Khronos" tool="SPIR-V Tools Assembler" comment="Contact David Neto, dneto@… 61 …<id value="8" vendor="Khronos" tool="Glslang Reference Front End" comment="Contact John Kessenic… 62 <id value="9" vendor="Qualcomm" comment="Contact [email protected]"/> [all …]
|
/aosp_15_r20/external/mesa3d/src/compiler/spirv/ |
H A D | spir-v.xml | 45 'tool="name"' attribute; and a contact person/address in a 54 <id value="1" vendor="LunarG" comment="Contact TBD"/> 55 <id value="2" vendor="Valve" comment="Contact TBD"/> 56 <id value="3" vendor="Codeplay" comment="Contact Victor Lomuller, [email protected]"/> 57 <id value="4" vendor="NVIDIA" comment="Contact Kerch Holt, [email protected]"/> 58 <id value="5" vendor="ARM" comment="Contact Kevin Petit, [email protected]"/> 59 …<id value="6" vendor="Khronos" tool="LLVM/SPIR-V Translator" comment="Contact Yaxun (Sam) Liu, y… 60 …<id value="7" vendor="Khronos" tool="SPIR-V Tools Assembler" comment="Contact David Neto, dneto@… 61 …<id value="8" vendor="Khronos" tool="Glslang Reference Front End" comment="Contact John Kessenic… 62 <id value="9" vendor="Qualcomm" comment="Contact [email protected]"/> [all …]
|
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Headers/include/spirv/ |
H A D | spir-v.xml | 45 'tool="name"' attribute; and a contact person/address in a 54 <id value="1" vendor="LunarG" comment="Contact TBD"/> 55 <id value="2" vendor="Valve" comment="Contact TBD"/> 56 <id value="3" vendor="Codeplay" comment="Contact Victor Lomuller, [email protected]"/> 57 <id value="4" vendor="NVIDIA" comment="Contact Kerch Holt, [email protected]"/> 58 <id value="5" vendor="ARM" comment="Contact Kevin Petit, [email protected]"/> 59 …<id value="6" vendor="Khronos" tool="LLVM/SPIR-V Translator" comment="Contact Yaxun (Sam) Liu, y… 60 …<id value="7" vendor="Khronos" tool="SPIR-V Tools Assembler" comment="Contact David Neto, dneto@… 61 …<id value="8" vendor="Khronos" tool="Glslang Reference Front End" comment="Contact John Kessenic… 62 <id value="9" vendor="Qualcomm" comment="Contact [email protected]"/> [all …]
|
/aosp_15_r20/external/google-cloud-java/java-essential-contacts/proto-google-cloud-essential-contacts-v1/src/main/java/com/google/cloud/essentialcontacts/v1/ |
H A D | ContactName.java | 35 PathTemplate.createWithoutUrlEncoding("projects/{project}/contacts/{contact}"); 37 PathTemplate.createWithoutUrlEncoding("folders/{folder}/contacts/{contact}"); 39 PathTemplate.createWithoutUrlEncoding("organizations/{organization}/contacts/{contact}"); 44 private final String contact; field in ContactName 51 contact = null; in ContactName() 58 contact = Preconditions.checkNotNull(builder.getContact()); in ContactName() 66 contact = Preconditions.checkNotNull(builder.getContact()); in ContactName() 74 contact = Preconditions.checkNotNull(builder.getContact()); in ContactName() 85 return contact; in getContact() 119 public static ContactName of(String project, String contact) { in of() argument [all …]
|
H A D | UpdateContactRequest.java | 69 private com.google.cloud.essentialcontacts.v1.Contact contact_; 74 * Required. The contact resource to replace the existing saved contact. Note: 75 * the email address of the contact cannot be modified. 79 …* .google.cloud.essentialcontacts.v1.Contact contact = 2 [(.google.api.field_behavior) = REQUIRED]; 82 * @return Whether the contact field is set. 92 * Required. The contact resource to replace the existing saved contact. Note: 93 * the email address of the contact cannot be modified. 97 …* .google.cloud.essentialcontacts.v1.Contact contact = 2 [(.google.api.field_behavior) = REQUIRED]; 100 * @return The contact. 103 public com.google.cloud.essentialcontacts.v1.Contact getContact() { in getContact() [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/ssmcontacts/src/main/resources/codegen-resources/ |
H A D | service-2.json | 32 …"documentation":"<p>Used to acknowledge an engagement to a contact channel during an incident.</p>" 49 …"documentation":"<p>Activates a contact's contact channel. Incident Manager can't engage a contact… 86 …"documentation":"<p>A contact channel is the method that Incident Manager uses to engage your cont… 139 …"documentation":"<p>To no longer receive Incident Manager engagements to a contact channel, you ca… 157 …contact from Incident Manager, you can delete the contact. Deleting a contact removes them from al… 174 …contact channel, you can delete the channel from a contact. Deleting the contact channel removes i… 245 "documentation":"<p>Lists details of the engagement to a contact channel.</p>" 263 "documentation":"<p>Retrieves information about the specified contact or escalation plan.</p>" 281 "documentation":"<p>List details about a specific contact channel.</p>" 298 …"documentation":"<p>Retrieves the resource policies attached to the specified contact or escalatio… [all …]
|
/aosp_15_r20/cts/tests/tests/contactsprovider/src/android/provider/cts/contacts/ |
H A D | ContactsContract_ContactsTest.java | 73 TestContact contact = rawContact.getContact().load(); in testMarkAsContacted() local 75 assertEquals(0, contact.getLong(Contacts.LAST_TIME_CONTACTED)); in testMarkAsContacted() 76 assertEquals(0, contact.getLong(Contacts.TIMES_CONTACTED)); in testMarkAsContacted() 81 // Note we no longer support contact affinity as of Q, so times_contacted and in testMarkAsContacted() 85 Contacts.markAsContacted(mResolver, contact.getId()); in testMarkAsContacted() 86 contact.load(); in testMarkAsContacted() 89 assertEquals(0, contact.getLong(Contacts.LAST_TIME_CONTACTED)); in testMarkAsContacted() 90 assertEquals("#" + i, 0, contact.getLong(Contacts.TIMES_CONTACTED)); in testMarkAsContacted() 108 TestContact contact = rawContact.getContact().load(); in testLookupUri() local 110 Uri contactUri = contact.getUri(); in testLookupUri() [all …]
|
/aosp_15_r20/external/googleapis/google/cloud/essentialcontacts/v1/ |
H A D | service.proto | 41 // Adds a new contact for a resource. 42 rpc CreateContact(CreateContactRequest) returns (Contact) { 45 body: "contact" 48 body: "contact" 52 body: "contact" 55 option (google.api.method_signature) = "parent,contact"; 58 // Updates a contact. 59 // Note: A contact's email address cannot be changed. 60 rpc UpdateContact(UpdateContactRequest) returns (Contact) { 62 patch: "/v1/{contact.name=projects/*/contacts/*}" [all …]
|
/aosp_15_r20/external/google-cloud-java/java-essential-contacts/proto-google-cloud-essential-contacts-v1/src/main/proto/google/cloud/essentialcontacts/v1/ |
H A D | service.proto | 41 // Adds a new contact for a resource. 42 rpc CreateContact(CreateContactRequest) returns (Contact) { 45 body: "contact" 48 body: "contact" 52 body: "contact" 55 option (google.api.method_signature) = "parent,contact"; 58 // Updates a contact. 59 // Note: A contact's email address cannot be changed. 60 rpc UpdateContact(UpdateContactRequest) returns (Contact) { 62 patch: "/v1/{contact.name=projects/*/contacts/*}" [all …]
|
/aosp_15_r20/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | GlobalSearchSupportTest.java | 57 // Remove the new contact from all groups in testSearchSuggestionsNotInDefaultDirectory() 64 // If the contact is not in the "my contacts" group, nothing should be found in testSearchSuggestionsNotInDefaultDirectory() 71 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").photo( in testSearchSuggestionsByNameWithPhoto() local 73 new SuggestionTesterBuilder(contact).query("D").expectIcon1Uri(true).expectedText1( in testSearchSuggestionsByNameWithPhoto() 78 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").photo( in testSearchSuggestionsByEmailWithPhoto() local 80 new SuggestionTesterBuilder(contact).query("foo@ac").expectIcon1Uri(true).expectedIcon2( in testSearchSuggestionsByEmailWithPhoto() 86 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").company("Google") in testSearchSuggestionsByName() local 88 new SuggestionTesterBuilder(contact).query("D").expectedText1("Deer Dough").expectedText2( in testSearchSuggestionsByName() 93 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").nickname( in testSearchByNickname() local 95 new SuggestionTesterBuilder(contact).query("L").expectedText1("Deer Dough").expectedText2( in testSearchByNickname() [all …]
|
/aosp_15_r20/packages/apps/Contacts/res/values-ro/ |
D | strings.xml | 25 …<string name="shortcutActivityTitle" msgid="5407832911005090417">"Alegeți persoana de contact"</st… 27 …e="contactPickerActivityTitle" msgid="1842634991247618890">"Alegeți o persoană de contact"</string> 29 …"header_entry_contact_list_adapter_header_title" msgid="4098233078586958762">"Contact nou"</string> 40 … <string name="menu_editGroup" msgid="8706562583754054622">"Ștergeți persoane de contact"</string> 48 …gid="4750158900636307469">"Separați această persoană de contact în mai multe persoane de contact?"… 50 …re le-ați făcut deja și să separați această persoană de contact în mai multe persoane de contact?"… 52 …pe care le-ați făcut deja și să asociați această persoană cu persoana de contact selectată?"</stri… 59 …name="titleJoinContactDataWith" msgid="7342386037654890242">"Asociați persoane de contact"</string> 60 …<string name="blurbJoinContactDataWith" msgid="132105056919797709">"Alegeți persoana de contact pe… 64 …<string name="contactsJoinedMessage" msgid="7605856897709458707">"Persoanele de contact au fost as… [all …]
|