Home
last modified time | relevance | path

Searched refs:component (Results 1 – 25 of 633) sorted by relevance

12345678910>>...26

/expo/packages/expo-notifications/build/
H A DscheduleNotificationAsync.js168 …DAILY_TRIGGER_EXPECTED_DATE_COMPONENTS.every((component) => component in triggerWithoutChannelId) …
178 …WEEKLY_TRIGGER_EXPECTED_DATE_COMPONENTS.every((component) => component in triggerWithoutChannelId)…
188 …YEARLY_TRIGGER_EXPECTED_DATE_COMPONENTS.every((component) => component in triggerWithoutChannelId)…
206 components.forEach((component) => {
207 if (!(component in anyTriggerType)) {
208 throw new TypeError(`The ${component} parameter needs to be present`);
210 if (typeof anyTriggerType[component] !== 'number') {
211 throw new TypeError(`The ${component} parameter should be a number`);
213 switch (component) {
/expo/packages/expo-notifications/src/
H A DscheduleNotificationAsync.ts214 (component) => component in triggerWithoutChannelId
230 (component) => component in triggerWithoutChannelId
246 (component) => component in triggerWithoutChannelId
274 components.forEach((component) => {
275 if (!(component in anyTriggerType)) {
276 throw new TypeError(`The ${component} parameter needs to be present`);
278 if (typeof anyTriggerType[component] !== 'number') {
279 throw new TypeError(`The ${component} parameter should be a number`);
281 switch (component) {
/expo/apps/test-suite/tests/
H A DSVG.js40 for (const component of components) {
41 t.it(component, async () => {
42 const SVGComponent = Svg[component];
45 <Svg.Svg key={`svg-${component}`}>
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/Libraries/SurfaceHostingComponent/
H A DABI47_0_0RCTSurfaceHostingComponentController.mm27 - (instancetype)initWithComponent:(ABI47_0_0RCTSurfaceHostingComponent *)component
29 if (self = [super initWithComponent:component]) {
30 [self updateSurfaceWithComponent:component];
53 [self updateSurfaceWithComponent:(ABI47_0_0RCTSurfaceHostingComponent *)self.component];
64 - (void)updateSurfaceWithComponent:(ABI47_0_0RCTSurfaceHostingComponent *)component
67 id<ABI47_0_0RCTSurfaceProtocol> const surface = component.surface;
87 [strongSelf.component updateState:^(ABI47_0_0RCTSurfaceHostingComponentState *state) {
103 [strongSelf.component updateState:^(ABI47_0_0RCTSurfaceHostingComponentState *state) {
112 …return ((ABI47_0_0RCTSurfaceHostingComponent *)self.component).options.synchronousStateUpdates && …
119 const CKComponentViewContext &context = [[self component] viewContext];
[all …]
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/SurfaceHostingComponent/
H A DABI49_0_0RCTSurfaceHostingComponentController.mm27 - (instancetype)initWithComponent:(ABI49_0_0RCTSurfaceHostingComponent *)component
29 if (self = [super initWithComponent:component]) {
30 [self updateSurfaceWithComponent:component];
53 [self updateSurfaceWithComponent:(ABI49_0_0RCTSurfaceHostingComponent *)self.component];
64 - (void)updateSurfaceWithComponent:(ABI49_0_0RCTSurfaceHostingComponent *)component
67 id<ABI49_0_0RCTSurfaceProtocol> const surface = component.surface;
87 [strongSelf.component
104 [strongSelf.component
114 …return ((ABI49_0_0RCTSurfaceHostingComponent *)self.component).options.synchronousStateUpdates && …
123 const CKComponentViewContext &context = [[self component] viewContext];
[all …]
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/SurfaceHostingComponent/
H A DABI48_0_0RCTSurfaceHostingComponentController.mm27 - (instancetype)initWithComponent:(ABI48_0_0RCTSurfaceHostingComponent *)component
29 if (self = [super initWithComponent:component]) {
30 [self updateSurfaceWithComponent:component];
53 [self updateSurfaceWithComponent:(ABI48_0_0RCTSurfaceHostingComponent *)self.component];
64 - (void)updateSurfaceWithComponent:(ABI48_0_0RCTSurfaceHostingComponent *)component
67 id<ABI48_0_0RCTSurfaceProtocol> const surface = component.surface;
87 [strongSelf.component
104 [strongSelf.component
114 …return ((ABI48_0_0RCTSurfaceHostingComponent *)self.component).options.synchronousStateUpdates && …
123 const CKComponentViewContext &context = [[self component] viewContext];
[all …]
/expo/packages/html-elements/
H A Dbabel.js74 const component = elementToComponent[name];
76 if (!component) {
79 const prefixedComponent = component;
105 state.replacedComponents.forEach((component) => {
109 .some((specifier) => specifier.get('local').isIdentifier({ name: component }))
115 t.importSpecifier(t.identifier(component), t.identifier(component))
/expo/docs/components/
H A DPermalink.tsx12 component: any;
66 const PermalinkBase = ({ component, children, className, ...rest }: BaseProps) =>
68 component,
70 className: [className, component.props.className || ''].join(' '),
80 const component = props.children as JSX.Element;
81 const children = component.props.children || '';
95 <PermalinkBase component={component} style={props.additionalProps?.style}>
/expo/docs/pages/ui-programming/
H A Dimage-background.mdx2 title: Set a component's background image
3 description: Learn how to use ImageBackground component to set a component's background image.
9 The `ImageBackground` component lets you display an image as the background of another component in…
11 This component is conceptually similar to CSS's `background-image` stylesheet property and the `bac…
15 The `ImageBackground` component accepts mostly the same props as the `Image` component with a few d…
19 <SnackInline label="Using ImageBackground component">
31 /* @info Nest your content inside of the ImageBackground component */
/expo/packages/expo-dev-launcher/bundle/
H A DApp.tsx36 <Stack.Screen name="Main" component={Main} options={{ headerShown: false }} />
40 component={UserProfileScreen}
44 <Stack.Screen name="Crash Report" component={CrashReportScreen} />
57 component={HomeScreen}
65 component={ExtensionsStack}
74 component={SettingsScreen}
83 component={KitchenSinkScreen}
/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkUnPreMultiply.h45 static U8CPU ApplyScale(Scale scale, U8CPU component) { in ApplyScale() argument
46 SkASSERT(component <= 255); in ApplyScale()
47 return (scale * component + (1 << 23)) >> 24; in ApplyScale()
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkUnPreMultiply.h45 static U8CPU ApplyScale(Scale scale, U8CPU component) { in ApplyScale() argument
46 SkASSERT(component <= 255); in ApplyScale()
47 return (scale * component + (1 << 23)) >> 24; in ApplyScale()
/expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkUnPreMultiply.h45 static U8CPU ApplyScale(Scale scale, U8CPU component) { in ApplyScale() argument
46 SkASSERT(component <= 255); in ApplyScale()
47 return (scale * component + (1 << 23)) >> 24; in ApplyScale()
/expo/ios/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkUnPreMultiply.h45 static U8CPU ApplyScale(Scale scale, U8CPU component) { in ApplyScale() argument
46 SkASSERT(component <= 255); in ApplyScale()
47 return (scale * component + (1 << 23)) >> 24; in ApplyScale()
/expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkUnPreMultiply.h45 static U8CPU ApplyScale(Scale scale, U8CPU component) { in ApplyScale() argument
46 SkASSERT(component <= 255); in ApplyScale()
47 return (scale * component + (1 << 23)) >> 24; in ApplyScale()
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkUnPreMultiply.h45 static U8CPU ApplyScale(Scale scale, U8CPU component) { in ApplyScale() argument
46 SkASSERT(component <= 255); in ApplyScale()
47 return (scale * component + (1 << 23)) >> 24; in ApplyScale()
/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkUnPreMultiply.h45 static U8CPU ApplyScale(Scale scale, U8CPU component) { in ApplyScale() argument
46 SkASSERT(component <= 255); in ApplyScale()
47 return (scale * component + (1 << 23)) >> 24; in ApplyScale()
/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkUnPreMultiply.h45 static U8CPU ApplyScale(Scale scale, U8CPU component) { in ApplyScale() argument
46 SkASSERT(component <= 255); in ApplyScale()
47 return (scale * component + (1 << 23)) >> 24; in ApplyScale()
/expo/packages/expo/build/launch/
H A DregisterRootComponent.js3 export default function registerRootComponent(component) { argument
4 let qualifiedComponent = component;
7 qualifiedComponent = withDevTools(component);
/expo/.github/workflows/
H A Dnative-component-list.yml7 - .github/workflows/native-component-list.yml
8 - apps/native-component-list/**
15 - .github/workflows/native-component-list.yml
16 - apps/native-component-list/**
48 working-directory: apps/native-component-list
51 working-directory: apps/native-component-list
/expo/home/navigation/
H A DNavigation.tsx57 component={HomeScreen}
64 component={ProjectsListScreen}
71 component={SnacksListScreen}
78 component={ProjectScreen}
85 component={BranchListScreen}
92 component={BranchDetailsScreen}
112 component={DeleteAccountScreen}
131 component={HomeStackScreen}
141 component={DiagnosticsStackScreen}
150 component={SettingsStackScreen}
[all …]
/expo/packages/expo-status-bar/src/
H A DExpoStatusBar.tsx5 * A component that allows you to configure your status bar without directly calling imperative
10 * The props of each `StatusBar` component will be merged in the order that they were mounted.
11 * This component is built on top of the [StatusBar](https://reactnative.dev/docs/statusbar)
12 * component exported from React Native, and it provides defaults that work better for Expo users.
/expo/ios/versioned-react-native/ABI48_0_0/Expo/ExpoKit/Core/Api/Components/Picker/
H A DABI48_0_0RNCPicker.m74 numberOfRowsInComponent:(__unused NSInteger)component
83 forComponent:(__unused NSInteger)component
88 …ckerView:(__unused UIPickerView *)pickerView rowHeightForComponent:(__unused NSInteger) component {
94 forComponent:(NSInteger)component
98 CGFloat rowHeight = [pickerView rowSizeForComponent:component].height;
99 CGFloat rowWidth = [pickerView rowSizeForComponent:component].width;
117 label.text = [self pickerView:pickerView titleForRow:row forComponent:component];
129 didSelectRow:(NSInteger)row inComponent:(__unused NSInteger)component
/expo/ios/versioned-react-native/ABI47_0_0/Expo/ExpoKit/Core/Api/Components/Picker/
H A DABI47_0_0RNCPicker.m74 numberOfRowsInComponent:(__unused NSInteger)component
83 forComponent:(__unused NSInteger)component
88 …ckerView:(__unused UIPickerView *)pickerView rowHeightForComponent:(__unused NSInteger) component {
94 forComponent:(NSInteger)component
98 CGFloat rowHeight = [pickerView rowSizeForComponent:component].height;
99 CGFloat rowWidth = [pickerView rowSizeForComponent:component].width;
117 label.text = [self pickerView:pickerView titleForRow:row forComponent:component];
129 didSelectRow:(NSInteger)row inComponent:(__unused NSInteger)component
/expo/ios/versioned-react-native/ABI49_0_0/Expo/ExpoKit/Core/Api/Components/Picker/
H A DABI49_0_0RNCPicker.m75 numberOfRowsInComponent:(__unused NSInteger)component
84 forComponent:(__unused NSInteger)component
89 …ckerView:(__unused UIPickerView *)pickerView rowHeightForComponent:(__unused NSInteger) component {
95 forComponent:(NSInteger)component
99 CGFloat rowHeight = [pickerView rowSizeForComponent:component].height;
100 CGFloat rowWidth = [pickerView rowSizeForComponent:component].width;
124 label.text = [self pickerView:pickerView titleForRow:row forComponent:component];
136 didSelectRow:(NSInteger)row inComponent:(__unused NSInteger)component

12345678910>>...26