Home
last modified time | relevance | path

Searched refs:groups (Results 1 – 25 of 66) sorted by relevance

123

/expo/apps/test-suite/tests/
H A DContacts.js465 let groups;
468 firstGroup = groups[0];
486 let groups;
488 groups = await Contacts.getGroupsAsync({
491 testGroups = groups;
503 for (const group of groups) {
512 let groups;
515 groups = await Contacts.getGroupsAsync({
537 expect(Array.isArray(groups)).toBe(true);
538 expect(groups.length).toBe(1);
[all …]
/expo/packages/expo-modules-autolinking/scripts/ios/
H A Dreact_import_patcher.rb49groups = project.groups.select { |group| !(['Dependencies', 'Frameworks', 'Products'].include? gro…
50 groups.each do |group|
/expo/packages/expo-notifications/build/
H A DgetNotificationChannelGroupsAsync.js.map1 … channel groups.\n * @return A Promise which resoles to an array of channel groups. On platforms t…
/expo/apps/native-component-list/src/screens/Contacts/
H A DContactUtils.ts78 const groups = await Contacts.getGroupsAsync({ groupName }); constant
79 if (groups && groups.length > 0) {
80 return groups[0];
/expo/packages/@expo/server/src/
H A Denvironment.ts56 if (match?.groups) {
57 for (const [key, value] of Object.entries(match.groups)) {
H A Dindex.ts97 if (match?.groups) {
98 for (const [key, value] of Object.entries(match.groups)) {
/expo/packages/expo-router/src/__tests__/
H A DgetServerManifest.test.node.ts126 expect(getNamedMatcher('./post/[my_lil-id].tsx').exec('/post/123')?.groups).toEqual({
139 expect(matched?.groups).toEqual({
159 expect(matched?.groups).toEqual({
/expo/packages/@expo/server/build/
H A Denvironment.js42 if (match?.groups) {
43 for (const [key, value] of Object.entries(match.groups)) {
H A Dindex.js70 if (match?.groups) {
71 for (const [key, value] of Object.entries(match.groups)) {
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/
H A Dlint-java.js129 const groups = [];
139 groups.push(group);
145 return groups.map(x => ({
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/
H A Dlint-java.js129 const groups = [];
139 groups.push(group);
145 return groups.map(x => ({
/expo/packages/@expo/cli/src/export/
H A DexportStaticAsync.ts289 const groups = head.slice(1, -1).split(','); constant
291 if (groups.length > 1) {
292 for (const group of groups) {
299 generateVariations(rest, current ? `${current}/(${groups[0]})` : `(${groups[0]})`);
/expo/packages/expo-router/build/
H A DgetRoutes.js170 const groups = match?.split(',');
171 const groupsSet = new Set(groups);
172 if (groupsSet.size !== groups.length) {
173 …throw new Error(`Array syntax cannot contain duplicate group name "${groups}" in "${contextKey}".`…
175 if (groups.length === 1) {
179 for (const group of groups) {
H A DgetServerManifest.d.ts17 groups: { property
/expo/packages/expo-router/src/
H A DgetRoutes.ts231 const groups = match?.split(','); constant
232 const groupsSet = new Set(groups);
234 if (groupsSet.size !== groups.length) {
236 `Array syntax cannot contain duplicate group name "${groups}" in "${contextKey}".`
240 if (groups.length === 1) {
245 for (const group of groups) {
/expo/packages/eslint-config-universe/shared/
H A Dcore.js151 groups: [['builtin', 'external'], 'internal', ['parent', 'index', 'sibling']], property
/expo/docs/pages/router/advanced/
H A Dshared-routes.mdx11 To match the same URL with different layouts, use [**groups**](/routing/layouts#groups) with overla…
/expo/docs/ui/components/Sidebar/
H A DSidebar.tsx49 page: null, // Pages are rendered inside groups and should not be rendered directly
/expo/docs/pages/versions/v46.0.0/sdk/
H A Dcontacts.mdx411 Add a contact as a member to a group. A contact can be a member of multiple groups.
459 Query and return a list of system groups.
465 | query | `GroupQuery` | Information regarding which groups you want to get. |
471 | groups | `Group[]` | Collection of groups that fit query. |
476 const groups = await Contacts.getGroupsAsync({ groupName: 'sailor moon' });
575 A parent to contacts. A contact can belong to multiple groups.
593 A parent to contacts and groups. You can query the default container with `getDefaultContainerIdAsy…
743 Used to query native contact groups.
747 | groupName | `string` | Query all groups matching a name. |
749 | containerId | `string` | Query all groups that belong to a certain container. |
/expo/ios/versioned/sdk47/EXContacts/EXContacts/
H A DABI47_0_0EXContacts.m477 if (groups) {
478 [response addObjectsFromArray:groups];
482 if (!groups) return;
483 for (CNGroup *group in groups) {
1061 NSArray<CNGroup *> *groups = [contactStore groupsMatchingPredicate:predicate error:&error];
1066 return groups;
1074 if (error || groups.count == 0) {
1078 return groups[0];
1084 NSArray<CNGroup *> *groups = [contactStore groupsMatchingPredicate:nil error:&error];
1088 } else if (groups.count == 0) {
[all …]
/expo/packages/expo-contacts/ios/EXContacts/
H A DEXContacts.m477 if (groups) {
478 [response addObjectsFromArray:groups];
482 if (!groups) return;
483 for (CNGroup *group in groups) {
1063 [EXContacts rejectWithError:@"Failed to get groups" error:error rejecter:reject];
1066 return groups;
1074 if (error || groups.count == 0) {
1078 return groups[0];
1084 NSArray<CNGroup *> *groups = [contactStore groupsMatchingPredicate:nil error:&error];
1088 } else if (groups.count == 0) {
[all …]
/expo/ios/versioned/sdk49/EXContacts/EXContacts/
H A DABI49_0_0EXContacts.m477 if (groups) {
478 [response addObjectsFromArray:groups];
482 if (!groups) return;
483 for (CNGroup *group in groups) {
1061 NSArray<CNGroup *> *groups = [contactStore groupsMatchingPredicate:predicate error:&error];
1066 return groups;
1074 if (error || groups.count == 0) {
1078 return groups[0];
1084 NSArray<CNGroup *> *groups = [contactStore groupsMatchingPredicate:nil error:&error];
1088 } else if (groups.count == 0) {
[all …]
/expo/ios/versioned/sdk48/EXContacts/EXContacts/
H A DABI48_0_0EXContacts.m477 if (groups) {
478 [response addObjectsFromArray:groups];
482 if (!groups) return;
483 for (CNGroup *group in groups) {
1061 NSArray<CNGroup *> *groups = [contactStore groupsMatchingPredicate:predicate error:&error];
1066 return groups;
1074 if (error || groups.count == 0) {
1078 return groups[0];
1084 NSArray<CNGroup *> *groups = [contactStore groupsMatchingPredicate:nil error:&error];
1088 } else if (groups.count == 0) {
[all …]
/expo/docs/pages/routing/
H A Dlayouts.mdx61 If you want multiple layout routes without modifying the URL, you can use [groups](#groups).
70 …ding layouts without adding additional segments to the URL. You can add as many groups as you want.
/expo/packages/expo-dev-menu/assets/
H A DEXDevMenuApp.ios.js571groups:["CSS Charsets"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@cha… property
572groups:["CSS Variables"],initial:"seeProse",appliesto:"allElements",computed:"asSpecifiedWithVarsS… property

123