Home
last modified time | relevance | path

Searched refs:Image (Results 1 – 25 of 393) sorted by relevance

12345678910>>...16

/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/Libraries/Image/__tests__/__snapshots__/
H A DImage-test.js.snap3 exports[`<Image /> should render as <Image> when mocked 1`] = `
4 <Image
13 exports[`<Image /> should render as <RCTImageView> when not mocked 1`] = `
34 exports[`<Image /> should shallow render as <ForwardRef(Image)> when not mocked 1`] = `
35 <Image
44 exports[`<Image /> should shallow render as <Image> when mocked 1`] = `
45 <Image
H A DassetRelativePathInSnapshot-test.js.snap5 <Image
8 "testUri": "../Libraries/Image/__tests__/img/img1.png",
12 <Image
15 "testUri": "../Libraries/Image/__tests__/img/img2.png",
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/Image/__tests__/__snapshots__/
H A DImage-test.js.snap3 exports[`<Image /> should render as <Image> when mocked 1`] = `
4 <Image
13 exports[`<Image /> should render as <RCTImageView> when not mocked 1`] = `
43 exports[`<Image /> should shallow render as <ForwardRef(Image)> when not mocked 1`] = `
44 <Image
53 exports[`<Image /> should shallow render as <Image> when mocked 1`] = `
54 <Image
H A DassetRelativePathInSnapshot-test.js.snap5 <Image
8 "testUri": "../Libraries/Image/__tests__/img/img1.png",
12 <Image
15 "testUri": "../Libraries/Image/__tests__/img/img2.png",
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/Image/__tests__/__snapshots__/
H A DImage-test.js.snap3 exports[`<Image /> should render as <Image> when mocked 1`] = `
4 <Image
13 exports[`<Image /> should render as <RCTImageView> when not mocked 1`] = `
43 exports[`<Image /> should shallow render as <ForwardRef(Image)> when not mocked 1`] = `
44 <Image
53 exports[`<Image /> should shallow render as <Image> when mocked 1`] = `
54 <Image
H A DassetRelativePathInSnapshot-test.js.snap5 <Image
8 "testUri": "../Libraries/Image/__tests__/img/img1.png",
12 <Image
15 "testUri": "../Libraries/Image/__tests__/img/img2.png",
/expo/apps/test-suite/tests/
H A DImage.js3 import { Image } from 'expo-image';
21 await mountAndWaitFor(<Image source={REMOTE_SOURCE} />, 'onLoadStart', setPortalChild);
26 <Image source={NON_EXISTENT_SOURCE} />,
35 await mountAndWaitFor(<Image source={REMOTE_SOURCE} />, 'onLoad', setPortalChild);
41 <Image source={NON_EXISTENT_SOURCE} />,
56 await mountAndWaitFor(<Image source={NON_EXISTENT_SOURCE} />, 'onError', setPortalChild);
62 <Image source={REMOTE_SOURCE} />,
77 await mountAndWaitFor(<Image source={REMOTE_SOURCE} />, 'onLoadEnd', setPortalChild);
81 await mountAndWaitFor(<Image source={NON_EXISTENT_SOURCE} />, 'onLoadEnd', setPortalChild);
/expo/packages/expo-dev-client-components/src/icons/
H A DRunIcon.tsx3 import { Image } from '../Image';
7 export function RunIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8 return <Image source={icon} {...props} />;
H A DPerformanceIcon.tsx3 import { Image } from '../Image';
7 export function PerformanceIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8 return <Image source={icon} {...props} />;
H A DTerminalIcon.tsx3 import { Image } from '../Image';
7 export function TerminalIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8 return <Image source={icon} {...props} />;
H A DRefreshIcon.tsx3 import { Image } from '../Image';
7 export function RefreshIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8 return <Image source={icon} {...props} />;
H A DDebugIcon.tsx3 import { Image } from '../Image';
7 export function DebugIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8 return <Image source={icon} {...props} />;
H A DExpoLogoIcon.tsx3 import { Image } from '../Image';
7 export function ExpoLogoIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8 return <Image {...props} source={icon} />;
H A DClipboardIcon.tsx3 import { Image } from '../Image';
7 export function ClipboardIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8 return <Image source={icon} {...props} />;
H A DBuildingIcon.tsx3 import { Image } from '../Image';
7 export function BuildingIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8 return <Image source={icon} {...props} />;
H A DChevronRightIcon.tsx3 import { Image } from '../Image';
7 export function ChevronRightIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8 return <Image source={icon} {...props} />;
H A DLoadingIndicatorIcon.tsx3 import { Image } from '../Image';
7 export function LoadingIndicatorIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8 return <Image source={icon} {...props} />;
H A DToolbarOverlayIcon.tsx3 import { Image } from '../Image';
7 export function ToolbarOverlayIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8 return <Image source={icon} {...props} />;
H A DQuestionMarkIcon.tsx3 import { Image } from '../Image';
7 export function QuestionMarkIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8 return <Image source={icon} {...props} />;
H A DInspectElementIcon.tsx3 import { Image } from '../Image';
7 export function InspectElementIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8 return <Image source={icon} {...props} />;
H A DUpdateIcon.tsx3 import { Image } from '../Image';
9 export function UpdateIcon(props: Partial<React.ComponentProps<typeof Image>>) {
13 return <Image source={themedIcon} {...props} />;
H A DExtensionsIcon.tsx3 import { Image } from '../Image';
9 export function ExtensionsIcon(props: Partial<React.ComponentProps<typeof Image>>) {
13 return <Image source={themedIcon} {...props} />;
/expo/packages/expo-asset/src/__tests__/
H A DImageAssets-test.ts30 originalImage = global.Image;
31 globalThis.Image = jest.fn();
35 globalThis.Image = originalImage;
40 expect((Image as jest.Mock<HTMLImageElement>).mock.instances.length).toBe(1);
41 const mockImage = (Image as jest.Mock<HTMLImageElement>).mock.instances[0];
47 const mockImage = (Image as jest.Mock<HTMLImageElement>).mock.instances[0];
67 const mockImage = (Image as jest.Mock<HTMLImageElement>).mock.instances[0];
/expo/packages/html-elements/build/primitives/
H A DImage.js1 import { Image as NativeImage } from 'react-native';
3 const Image = NativeImage; constant
4 export default createSafeStyledView(Image);
/expo/packages/expo-image/src/
H A DImageBackground.tsx4 import { Image } from './Image';
5 import { ImageBackgroundProps } from './Image.types';
13 <Image {...props} style={[StyleSheet.absoluteFill, imageStyle]} />

12345678910>>...16