Home
last modified time | relevance | path

Searched refs:firstName (Results 1 – 25 of 26) sorted by relevance

12

/expo/home/graphql/fragments/
H A DCurrentUserActorData.fragment.graphql5 firstName
15 firstName
/expo/packages/@expo/cli/src/api/user/__tests__/
H A Duser-test.ts66 firstName: 'GLaDOS',
196 expect(getActorDisplayName(robotStub)).toBe(`${robotStub.firstName} (robot)`);
200 expect(getActorDisplayName({ ...robotStub, firstName: undefined })).toBe('robot');
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/contacts/
H A DContact.java58 protected String firstName = ""; field in Contact
165 boolean hasFirstName = firstName != null && !firstName.equals(""); in fromCursor()
179 if (firstName == null) { in getFirstName()
182 return firstName; in getFirstName()
194 if (displayName == null && firstName != null) { in getDisplayName()
195 return lastName == null ? firstName : String.format("%s %s", firstName, lastName).trim(); in getDisplayName()
223 .withValue(StructuredName.GIVEN_NAME, firstName) in toInsertOperationList()
282 .withValue(StructuredName.GIVEN_NAME, firstName) in toUpdateOperationList()
345 if (!TextUtils.isEmpty(firstName)) in toMap()
346 contact.putString("firstName", firstName); in toMap()
[all …]
H A DContactsModule.java373 contact.firstName = (String) data.get("firstName"); in mutateContact()
/expo/packages/expo-contacts/android/src/main/java/expo/modules/contacts/
H A DContact.java58 protected String firstName = ""; field in Contact
165 boolean hasFirstName = firstName != null && !firstName.equals(""); in fromCursor()
179 if (firstName == null) { in getFirstName()
182 return firstName; in getFirstName()
194 if (displayName == null && firstName != null) { in getDisplayName()
195 return lastName == null ? firstName : String.format("%s %s", firstName, lastName).trim(); in getDisplayName()
223 .withValue(StructuredName.GIVEN_NAME, firstName) in toInsertOperationList()
282 .withValue(StructuredName.GIVEN_NAME, firstName) in toUpdateOperationList()
345 if (!TextUtils.isEmpty(firstName)) in toMap()
346 contact.putString("firstName", firstName); in toMap()
[all …]
H A DContactsModule.java373 contact.firstName = (String) data.get("firstName"); in mutateContact()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/contacts/
H A DContact.java58 protected String firstName = ""; field in Contact
165 boolean hasFirstName = firstName != null && !firstName.equals(""); in fromCursor()
179 if (firstName == null) { in getFirstName()
182 return firstName; in getFirstName()
194 if (displayName == null && firstName != null) { in getDisplayName()
195 return lastName == null ? firstName : String.format("%s %s", firstName, lastName).trim(); in getDisplayName()
223 .withValue(StructuredName.GIVEN_NAME, firstName) in toInsertOperationList()
282 .withValue(StructuredName.GIVEN_NAME, firstName) in toUpdateOperationList()
345 if (!TextUtils.isEmpty(firstName)) in toMap()
346 contact.putString("firstName", firstName); in toMap()
[all …]
H A DContactsModule.java373 contact.firstName = (String) data.get("firstName"); in mutateContact()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/contacts/
H A DContact.java58 protected String firstName = ""; field in Contact
165 boolean hasFirstName = firstName != null && !firstName.equals(""); in fromCursor()
179 if (firstName == null) { in getFirstName()
182 return firstName; in getFirstName()
194 if (displayName == null && firstName != null) { in getDisplayName()
195 return lastName == null ? firstName : String.format("%s %s", firstName, lastName).trim(); in getDisplayName()
223 .withValue(StructuredName.GIVEN_NAME, firstName) in toInsertOperationList()
282 .withValue(StructuredName.GIVEN_NAME, firstName) in toUpdateOperationList()
345 if (!TextUtils.isEmpty(firstName)) in toMap()
346 contact.putString("firstName", firstName); in toMap()
[all …]
/expo/home/graphql/queries/
H A DProfileDataQuery.query.graphql5 firstName
/expo/packages/@expo/cli/src/api/user/
H A Duser.ts34 return user.firstName ? `${user.firstName} (robot)` : 'robot';
/expo/android/app/src/androidTest/java/host/exp/exponent/utils/
H A DTestContacts.kt22 firstName: String, in addContact()
43 .withValue(ContactsContract.CommonDataKinds.StructuredName.GIVEN_NAME, firstName) in addContact()
/expo/home/graphql/
H A Dtypes.ts616 firstName?: Maybe<Scalars['String']>;
3974 firstName?: Maybe<Scalars['String']>;
4278 firstName?: Maybe<Scalars['String']>;
4338 firstName?: InputMaybe<Scalars['String']>;
5022 firstName?: Maybe<Scalars['String']>;
5119 firstName?: Maybe<Scalars['String']>;
5198 firstName?: InputMaybe<Scalars['String']>;
5435firstName?: string | null, lastName?: string | null, profilePhoto: string, accounts: Array<{ __typ…
5437firstName?: string | null, lastName?: string | null, profilePhoto: string, accounts: Array<{ __typ…
5474firstName?: string | null, lastName?: string | null, profilePhoto: string, accounts: Array<{ __typ…
[all …]
/expo/packages/expo-contacts/build/
H A DContacts.d.ts243 firstName?: string;
H A DContacts.js.map1firstName?: string;\n /**\n * Middle name\n */\n middleName?: string;\n /**\n * Last name…
/expo/apps/test-suite/tests/
H A DContacts.js124 async function createSimpleContact(firstName, lastName) { argument
126 [Contacts.Fields.FirstName]: firstName,
/expo/packages/@expo/cli/src/graphql/
H A Dgenerated.ts899 firstName?: InputMaybe<Scalars['String']>;
1079 firstName?: InputMaybe<Scalars['String']>;
1116 …serQuery = { __typename?: 'RootQuery', meActor?: { __typename: 'Robot', firstName?: string | null,…
/expo/packages/expo-contacts/src/
H A DContacts.ts261 firstName?: string;
/expo/docs/pages/versions/v46.0.0/sdk/
H A Dcontacts.mdx538 | firstName | `string` | Given name. …
786 | FirstName | `'firstName'` | ✅ | ✅ |
850 | FirstName | `'firstName'` | Sort by first name in ascending order | ✅ | ✅ |
/expo/docs/pages/eas/metadata/
H A Dschema.mdx786 "firstName": "John",
804 "firstName": "John",
822 name: 'firstName',
/expo/packages/expo-contacts/
H A DCHANGELOG.md195 - Fixed bug, where sorting contacts by `firstName` or `lastName` could cause crash on Android. ([#9…
/expo/ios/versioned/sdk47/EXContacts/EXContacts/
H A DABI47_0_0EXContacts.m41 static NSString *const ABI47_0_0EXContactsKeyFirstName = @"firstName";
901 @"firstName": CNContactGivenNameKey,
1003 @"firstName": @(CNContactSortOrderGivenName),
/expo/packages/expo-contacts/ios/EXContacts/
H A DEXContacts.m41 static NSString *const EXContactsKeyFirstName = @"firstName";
901 @"firstName": CNContactGivenNameKey,
1003 @"firstName": @(CNContactSortOrderGivenName),
/expo/ios/versioned/sdk49/EXContacts/EXContacts/
H A DABI49_0_0EXContacts.m41 static NSString *const ABI49_0_0EXContactsKeyFirstName = @"firstName";
901 @"firstName": CNContactGivenNameKey,
1003 @"firstName": @(CNContactSortOrderGivenName),
/expo/ios/versioned/sdk48/EXContacts/EXContacts/
H A DABI48_0_0EXContacts.m41 static NSString *const ABI48_0_0EXContactsKeyFirstName = @"firstName";
901 @"firstName": CNContactGivenNameKey,
1003 @"firstName": @(CNContactSortOrderGivenName),

12