Home
last modified time | relevance | path

Searched refs:item (Results 1 – 25 of 548) sorted by relevance

12345678910>>...22

/expo/packages/@expo/cli/src/run/ios/options/
H A DpromptDevice.ts9 function isConnectedDevice(item: AnyDevice): item is ConnectedDevice {
10 return 'deviceType' in item;
13 function isSimControlDevice(item: AnyDevice): item is SimControl.Device {
14 return 'state' in item;
18 export function formatDeviceChoice(item: AnyDevice): { title: string; value: string } {
19 const isConnected = isConnectedDevice(item) && item.deviceType === 'device';
20 const isActive = isSimControlDevice(item) && item.state === 'Booted';
24 title: `${symbol}${format(item.name)}${
25 item.osVersion ? chalk.dim(` (${item.osVersion})`) : ''
27 value: item.udid,
[all …]
/expo/docs/ui/components/CommandMenu/Items/
H A DRNDocsItem.tsx10 item: AlgoliaItemType;
14 export const RNDocsItem = ({ item, onSelect }: Props) => {
15 const { lvl0, lvl1, lvl2, lvl3, lvl4 } = item.hierarchy;
18 value={`rn-${item.objectID}`}
19 url={item.url}
30 <FootnoteSection item={item} levelKey="lvl1" />
31 <FootnoteSection item={item} levelKey="lvl2" />
32 <FootnoteSection item={item} levelKey="lvl3" />
41 <FootnoteSection item={item} levelKey="lvl1" />
42 <FootnoteSection item={item} levelKey="lvl2" />
[all …]
H A DExpoDocsItem.tsx29 item: AlgoliaItemType;
109 value={`expodocs-${item.objectID}`}
111 url={transformUrl(item.url)}
123 <FootnoteSection item={item} levelKey="lvl2" />
124 <FootnoteSection item={item} levelKey="lvl3" />
125 <FootnoteSection item={item} levelKey="lvl4" />
137 <FootnoteSection item={item} levelKey="lvl2" />
138 <FootnoteSection item={item} levelKey="lvl3" />
150 <FootnoteSection item={item} levelKey="lvl2" />
169 <ItemFootnotePrefix url={item.url} />
[all …]
/expo/ios/vendored/sdk47/@stripe/stripe-react-native/ios/
H A DApplePayUtils.swift16 let label = item["label"] as? String ?? "" in createDeferredPaymentSummaryItem()
32 let label = item["label"] as? String ?? "" in createRecurringPaymentSummaryItem()
71 let label = item["label"] as? String ?? "" in createImmediatePaymentSummaryItem()
85 for item in items { in buildPaymentSummaryItems()
86 let paymentSummaryItem = try buildPaymentSummaryItem(item: item) in buildPaymentSummaryItems()
95 switch item["paymentType"] as? String { in buildPaymentSummaryItem()
98 return try createDeferredPaymentSummaryItem(item: item) in buildPaymentSummaryItem()
100 return createImmediatePaymentSummaryItem(item: item) in buildPaymentSummaryItem()
104 return try createRecurringPaymentSummaryItem(item: item) in buildPaymentSummaryItem()
106 return createImmediatePaymentSummaryItem(item: item) in buildPaymentSummaryItem()
[all …]
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/debug/tests/
H A DABI47_0_0DebugStringConvertibleTest.cpp20 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
21 ASSERT_STREQ(item->getDebugValue().c_str(), "hello"); in TEST()
32 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
33 ASSERT_STREQ(item->getDebugValue().c_str(), "hello"); in TEST()
44 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
45 ASSERT_STREQ(item->getDebugValue().c_str(), "hello"); in TEST()
47 item->getDebugDescription().c_str(), in TEST()
60 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
63 item->getDebugDescription().c_str(), in TEST()
79 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
[all …]
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/debug/tests/
H A DABI49_0_0DebugStringConvertibleTest.cpp20 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
21 ASSERT_STREQ(item->getDebugValue().c_str(), "hello"); in TEST()
32 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
33 ASSERT_STREQ(item->getDebugValue().c_str(), "hello"); in TEST()
44 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
45 ASSERT_STREQ(item->getDebugValue().c_str(), "hello"); in TEST()
47 item->getDebugDescription().c_str(), in TEST()
60 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
63 item->getDebugDescription().c_str(), in TEST()
79 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
[all …]
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/debug/tests/
H A DABI48_0_0DebugStringConvertibleTest.cpp20 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
21 ASSERT_STREQ(item->getDebugValue().c_str(), "hello"); in TEST()
32 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
33 ASSERT_STREQ(item->getDebugValue().c_str(), "hello"); in TEST()
44 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
45 ASSERT_STREQ(item->getDebugValue().c_str(), "hello"); in TEST()
47 item->getDebugDescription().c_str(), in TEST()
60 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
63 item->getDebugDescription().c_str(), in TEST()
79 ASSERT_STREQ(item->getDebugName().c_str(), "View"); in TEST()
[all …]
/expo/ios/vendored/sdk48/@stripe/stripe-react-native/ios/
H A DApplePayUtils.swift192 for item in items { in buildPaymentSummaryItems()
193 let paymentSummaryItem = try buildPaymentSummaryItem(item: item) in buildPaymentSummaryItems()
205 return try createDeferredPaymentSummaryItem(item: item) in buildPaymentSummaryItem()
207 return createImmediatePaymentSummaryItem(item: item) in buildPaymentSummaryItem()
211 return try createRecurringPaymentSummaryItem(item: item) in buildPaymentSummaryItem()
213 return createImmediatePaymentSummaryItem(item: item) in buildPaymentSummaryItem()
216 return createImmediatePaymentSummaryItem(item: item) in buildPaymentSummaryItem()
225 for item in items { in buildShippingMethods()
226 let shippingMethod = buildShippingMethod(item: item) in buildShippingMethods()
246 … if let startDate = item["startDate"] as? Double, let endDate = item["endDate"] as? Double { in buildShippingMethod()
[all …]
/expo/packages/expo-dev-launcher/bundle/functions/
H A DcreateAsyncStack.ts76 item.data = data;
79 lookup[key] = item;
83 return item;
102 return item;
112 if (item) {
126 items.push(item);
143 if (item && (item.status === 'settled' || item.status === 'pushing')) {
153 if (item) {
167 items.push(item);
185 item.status = 'popped';
[all …]
/expo/packages/@expo/cli/src/run/ios/codeSigning/
H A DxcodeCodeSigning.ts27 ([, item]: IOSConfig.XcodeUtils.ConfigurationSectionEntry) =>
28 item.buildSettings.PRODUCT_NAME
78 ([, item]: IOSConfig.XcodeUtils.ConfigurationSectionEntry) =>
79 item.buildSettings.PRODUCT_NAME
82 item.buildSettings.DEVELOPMENT_TEAM = quotedAppleTeamId;
83 item.buildSettings.CODE_SIGN_IDENTITY = '"Apple Development"';
84 item.buildSettings.CODE_SIGN_STYLE = 'Automatic';
90 if (!item.attributes.TargetAttributes) {
91 item.attributes.TargetAttributes = {};
94 if (!item.attributes.TargetAttributes[nativeTargetId]) {
[all …]
/expo/packages/@expo/config-plugins/src/ios/
H A DProvisioningProfile.ts40 .filter(([, item]: ConfigurationSectionEntry) => trimQuotes(item.name) === buildConfiguration)
41 .forEach(([, item]: ConfigurationSectionEntry) => {
42 item.buildSettings.PROVISIONING_PROFILE_SPECIFIER = `"${profileName}"`;
43 item.buildSettings.DEVELOPMENT_TEAM = quotedAppleTeamId;
44 item.buildSettings.CODE_SIGN_IDENTITY = '"iPhone Distribution"';
45 item.buildSettings.CODE_SIGN_STYLE = 'Manual';
50 .forEach(([, item]: ProjectSectionEntry) => {
51 if (!item.attributes.TargetAttributes[nativeTargetId]) {
52 item.attributes.TargetAttributes[nativeTargetId] = {};
54 item.attributes.TargetAttributes[nativeTargetId].DevelopmentTeam = quotedAppleTeamId;
[all …]
/expo/ios/vendored/sdk49/@stripe/stripe-react-native/ios/
H A DApplePayUtils.swift144 for item in items { in buildPaymentTokenContexts()
257 for item in items { in buildPaymentSummaryItems()
258 let paymentSummaryItem = try buildPaymentSummaryItem(item: item) in buildPaymentSummaryItems()
270 return try createDeferredPaymentSummaryItem(item: item) in buildPaymentSummaryItem()
272 return createImmediatePaymentSummaryItem(item: item) in buildPaymentSummaryItem()
276 return try createRecurringPaymentSummaryItem(item: item) in buildPaymentSummaryItem()
278 return createImmediatePaymentSummaryItem(item: item) in buildPaymentSummaryItem()
281 return createImmediatePaymentSummaryItem(item: item) in buildPaymentSummaryItem()
290 for item in items { in buildShippingMethods()
291 let shippingMethod = buildShippingMethod(item: item) in buildShippingMethods()
[all …]
/expo/ios/vendored/unversioned/@stripe/stripe-react-native/ios/
H A DApplePayUtils.swift144 for item in items { in buildPaymentTokenContexts()
257 for item in items { in buildPaymentSummaryItems()
258 let paymentSummaryItem = try buildPaymentSummaryItem(item: item) in buildPaymentSummaryItems()
270 return try createDeferredPaymentSummaryItem(item: item) in buildPaymentSummaryItem()
272 return createImmediatePaymentSummaryItem(item: item) in buildPaymentSummaryItem()
276 return try createRecurringPaymentSummaryItem(item: item) in buildPaymentSummaryItem()
278 return createImmediatePaymentSummaryItem(item: item) in buildPaymentSummaryItem()
281 return createImmediatePaymentSummaryItem(item: item) in buildPaymentSummaryItem()
290 for item in items { in buildShippingMethods()
291 let shippingMethod = buildShippingMethod(item: item) in buildShippingMethods()
[all …]
/expo/packages/@expo/config-plugins/src/android/
H A DStyles.ts67 if (appTheme.item) {
79 item,
83 item: ResourceItemXML;
96 if (appTheme.item) {
97 const existingItem = appTheme.item.filter(({ $: head }) => head.name === item.$.name)[0];
101 existingItem._ = item._;
102 existingItem.$ = item.$;
104 appTheme.item.push(item);
107 appTheme.item = [item];
123 if (appTheme?.item) {
[all …]
/expo/packages/expo-structured-headers/android/src/test/java/expo/modules/structuredheaders/
H A DItemAPITests.java32 IntegerItem item = IntegerItem.valueOf(l); in testInteger() local
33 assertEquals(Long.valueOf(l), item.get()); in testInteger()
34 assertEquals(l, item.getAsLong()); in testInteger()
36 assertEquals(1, item.getDivisor()); in testInteger()
62 assertEquals(l, item.getAsLong()); in testDecimal()
63 assertEquals(1000, item.getDivisor()); in testDecimal()
86 StringItem item = StringItem.valueOf(s); in testString() local
87 assertEquals(s, item.get()); in testString()
113 TokenItem item = TokenItem.valueOf(s); in testToken() local
114 assertEquals(s, item.get()); in testToken()
[all …]
/expo/packages/@expo/config-plugins/build/android/
H A DStyles.js69 if (appTheme.item) {
70 const existingItem = appTheme.item.filter(({
82 item, field
92 if (appTheme.item) {
95 }) => head.name === item.$.name)[0];
99 existingItem._ = item._;
100 existingItem.$ = item.$;
102 appTheme.item.push(item);
105 appTheme.item = [item];
117 const index = appTheme.item.findIndex(({
[all …]
/expo/packages/@expo/config-plugins/build/ios/
H A DProvisioningProfile.js46 …ildConfigurationList).filter(([, item]) => (0, _string().trimQuotes)(item.name) === buildConfigura…
47 item.buildSettings.PROVISIONING_PROFILE_SPECIFIER = `"${profileName}"`;
48 item.buildSettings.DEVELOPMENT_TEAM = quotedAppleTeamId;
49 item.buildSettings.CODE_SIGN_IDENTITY = '"iPhone Distribution"';
50 item.buildSettings.CODE_SIGN_STYLE = 'Manual';
52 …_Xcodeproj().getProjectSection)(project)).filter(_Xcodeproj().isNotComment).forEach(([, item]) => {
53 if (!item.attributes.TargetAttributes[nativeTargetId]) {
54 item.attributes.TargetAttributes[nativeTargetId] = {};
56 item.attributes.TargetAttributes[nativeTargetId].DevelopmentTeam = quotedAppleTeamId;
57 item.attributes.TargetAttributes[nativeTargetId].ProvisioningStyle = 'Manual';
/expo/packages/expo-updates/ios/EXUpdates/ASN1Decoder/
H A DX509ExtensionAltName.swift45 for item in block.sub?.last?.sub?.last?.sub ?? [] {
46 guard let name = generalName(of: item) else {
54 func generalName(of item: ASN1Object) -> String? { in generalName()
55 guard let nameType = item.identifier?.tagNumber().rawValue else { in generalName()
60 if let name = item.sub?.last?.sub?.last?.value as? String { in generalName()
64 if let name = item.value as? String { in generalName()
68 if let sequence = item.sub(0) { in generalName()
72 if let ip = item.value as? Data { in generalName()
76 if let value = item.value as? String, var data = value.data(using: .utf8) { in generalName()
/expo/packages/@expo/cli/src/start/server/metro/inspector-proxy/handlers/
H A DVscodeRuntimeGetProperties.ts41 for (const item of message.result.result ?? []) { constant
43 if (item.value) {
44 item.value.description = item.value.description ?? '';
50 if (item.value?.type === 'symbol' && item.value.objectId) {
51 delete item.value.objectId;
/expo/apps/native-component-list/src/screens/Reanimated/
H A DReanimatedSwipeable.tsx67 renderItem={({ item }) => <ListItem item={item} onRemove={onRemove} />}
68 keyExtractor={(item) => item.id}
94 item: Data;
159 <View style={s.item}>
162 <ListItemContent item={item} />
165 <Button item={removeButton} />
178 function Button({ item }: { item: ButtonData }) {
182 <Text style={{ color: item.color }}>{item.title}</Text>
188 function ListItemContent({ item }: { item: Data }) {
194 <Text style={s.title}>{item.title}</Text>
[all …]
/expo/packages/expo-maps/android/src/main/java/expo/modules/maps/googleMaps/
H A DGoogleMapsClusters.kt128 .position(LatLng(item.latitude, item.longitude)) in <lambda>()
129 .title(item.markerTitle) in <lambda>()
130 .snippet(item.markerSnippet) in <lambda>()
131 .anchor((item.anchorU ?: 0.5).toFloat(), (item.anchorV ?: 1).toFloat()) in <lambda>()
132 .alpha(item.opacity.toFloat()) in <lambda>()
133 .icon(provideDescriptor(localUri, item.color)) in <lambda>()
138 marker.position = LatLng(item.latitude, item.longitude) in <lambda>()
139 marker.title = item.markerTitle in <lambda>()
140 marker.snippet = item.markerSnippet in <lambda>()
141 marker.setAnchor((item.anchorU ?: 0.5).toFloat(), (item.anchorV ?: 1).toFloat()) in <lambda>()
[all …]
/expo/packages/expo-branch/android/src/main/java/io/branch/rnbranch/
H A DAgingHash.java25 AgingItem<ValueType> item = new AgingItem<>(value); in put() local
26 mHash.put(key, item); in put()
30 AgingItem<ValueType> item = mHash.get(key); in get() local
31 if (item == null) return null; in get()
33 return item.get(); in get()
46 AgingItem<ValueType> item = (AgingItem<ValueType>) pair.getValue(); in ageItems() local
47 if (now - item.getAccessTime() >= mTtlMillis) { in ageItems()
/expo/packages/@expo/cli/src/start/platforms/android/
H A DpromptAndroidDevice.ts29 choices: devices.map((item) => {
30 const format = nameStyleForDevice(item);
31 const type = item.isAuthorized ? item.type : 'unauthorized';
33 title: `${format(item.name)} ${chalk.dim(`(${type})`)}`,
34 value: item.name,
/expo/packages/expo-dev-menu-interface/ios/MenuItems/
H A DDevMenuItemsContainer.swift15 for item in items { in getAllItems()
16 result.append(item) in getAllItems()
17 if let container = item as? DevMenuItemsContainerProtocol { in getAllItems()
25 public func addItem(_ item: DevMenuScreenItem) { in addItem()
26 items.append(item) in addItem()
/expo/packages/@expo/config-plugins/src/utils/
H A Dhistory.ts20 item: Omit<PluginHistoryItem, 'version'> & { version?: string }
29 if (!item.version) {
30 item.version = 'UNVERSIONED';
33 config._internal.pluginHistory[item.name] = item;

12345678910>>...22