Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 2155) sorted by relevance

12345678910>>...87

/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/components/view/
H A DABI49_0_0PointerEvent.cpp20 DebugStringConvertibleOptions options) { in getDebugProps() argument
23 {"pressure", getDebugDescription(pointerEvent.pressure, options)}, in getDebugProps()
28 {"width", getDebugDescription(pointerEvent.width, options)}, in getDebugProps()
29 {"height", getDebugDescription(pointerEvent.height, options)}, in getDebugProps()
30 {"tiltX", getDebugDescription(pointerEvent.tiltX, options)}, in getDebugProps()
31 {"tiltY", getDebugDescription(pointerEvent.tiltY, options)}, in getDebugProps()
32 {"detail", getDebugDescription(pointerEvent.detail, options)}, in getDebugProps()
33 {"buttons", getDebugDescription(pointerEvent.buttons, options)}, in getDebugProps()
36 {"twist", getDebugDescription(pointerEvent.twist, options)}, in getDebugProps()
39 {"altKey", getDebugDescription(pointerEvent.altKey, options)}, in getDebugProps()
[all …]
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/components/view/
H A DABI48_0_0PointerEvent.cpp20 DebugStringConvertibleOptions options) { in getDebugProps() argument
23 {"pressure", getDebugDescription(pointerEvent.pressure, options)}, in getDebugProps()
28 {"width", getDebugDescription(pointerEvent.width, options)}, in getDebugProps()
29 {"height", getDebugDescription(pointerEvent.height, options)}, in getDebugProps()
30 {"tiltX", getDebugDescription(pointerEvent.tiltX, options)}, in getDebugProps()
31 {"tiltY", getDebugDescription(pointerEvent.tiltY, options)}, in getDebugProps()
32 {"detail", getDebugDescription(pointerEvent.detail, options)}, in getDebugProps()
33 {"buttons", getDebugDescription(pointerEvent.buttons, options)}, in getDebugProps()
36 {"twist", getDebugDescription(pointerEvent.twist, options)}, in getDebugProps()
39 {"altKey", getDebugDescription(pointerEvent.altKey, options)}, in getDebugProps()
[all …]
/expo/packages/expo-speech/src/Speech/
H A DSpeech.ts29 const options = _CALLBACKS[id]; constant
30 if (options && options.onStart) {
31 options.onStart();
36 if (options && options.onBoundary) {
37 options.onBoundary({
45 if (options && options.onDone) {
46 options.onDone();
53 if (options && options.onStopped) {
54 options.onStopped();
61 if (options && options.onError) {
[all …]
/expo/packages/expo-speech/build/
H A DSpeech.js24 const options = _CALLBACKS[id];
25 if (options && options.onStart) {
26 options.onStart();
31 if (options && options.onBoundary) {
32 options.onBoundary({
40 if (options && options.onDone) {
41 options.onDone();
48 if (options && options.onStopped) {
49 options.onStopped();
56 if (options && options.onError) {
[all …]
H A DExponentSpeech.web.js24 async speak(id, text, options) {
29 if (typeof options.rate === 'number') {
30 message.rate = options.rate;
32 if (typeof options.pitch === 'number') {
33 message.pitch = options.pitch;
36 message.lang = options.language;
39 message.volume = options.volume;
41 if ('_voiceIndex' in options && options._voiceIndex != null) {
45 if (typeof options.voice === 'string') {
51 message.onresume = options.onResume;
[all …]
/expo/packages/@expo/cli/src/prebuild/
H A DprebuildAsync.ts42 options: {
65 if (options.clean) {
79 options.platforms = ensureValidPlatforms(options.platforms);
81 assertPlatforms(options.platforms);
92 template: options.template != null ? resolveTemplateOption(options.template) : undefined,
93 platforms: options.platforms,
99 if (options.install) {
117 platforms: options.platforms,
128 if (options.platforms.includes('ios') && options.install && needsPodInstall) {
137 nodeInstall: !!options.install,
[all …]
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/components/view/
H A DABI47_0_0PointerEvent.cpp21 DebugStringConvertibleOptions options) { in getDebugProps() argument
23 {"pointerId", getDebugDescription(pointerEvent.pointerId, options)}, in getDebugProps()
24 {"pressure", getDebugDescription(pointerEvent.pressure, options)}, in getDebugProps()
29 {"width", getDebugDescription(pointerEvent.width, options)}, in getDebugProps()
30 {"height", getDebugDescription(pointerEvent.height, options)}, in getDebugProps()
31 {"tiltX", getDebugDescription(pointerEvent.tiltX, options)}, in getDebugProps()
32 {"tiltY", getDebugDescription(pointerEvent.tiltY, options)}, in getDebugProps()
33 {"detail", getDebugDescription(pointerEvent.detail, options)}, in getDebugProps()
34 {"buttons", getDebugDescription(pointerEvent.buttons, options)}, in getDebugProps()
36 getDebugDescription(pointerEvent.tangentialPressure, options)}, in getDebugProps()
[all …]
/expo/packages/@expo/cli/src/export/embed/
H A DexportEmbedAsync.ts15 setNodeEnv(options.dev ? 'development' : 'production');
21 maxWorkers: options.maxWorkers,
22 resetCache: options.resetCache,
23 config: options.config,
34 let sourceMapUrl = options.sourcemapOutput;
41 entryFile: options.entryFile,
43 dev: options.dev,
44 minify: !!options.minify,
45 platform: options.platform,
63 await output.save(bundle, options, Log.log);
[all …]
/expo/ios/versioned/sdk47/ExpoModulesCore/ios/Swift/Records/
H A DFieldExtensions.swift9 convenience init(wrappedValue: Type = 0, _ options: FieldOption...) {
10 self.init(wrappedValue: wrappedValue, options)
22 convenience init(wrappedValue: Type = 0.0, _ options: FieldOption...) {
23 self.init(wrappedValue: wrappedValue, options)
36 self.init(wrappedValue: wrappedValue, options)
48 convenience init(wrappedValue: Type = "", _ options: FieldOption...) {
49 self.init(wrappedValue: wrappedValue, options)
61 convenience init(wrappedValue: Type = [], _ options: FieldOption...) {
62 self.init(wrappedValue: wrappedValue, options)
75 self.init(wrappedValue: wrappedValue, options)
[all …]
/expo/packages/expo-modules-core/ios/Swift/Records/
H A DFieldExtensions.swift9 convenience init(wrappedValue: Type = 0, _ options: FieldOption...) {
10 self.init(wrappedValue: wrappedValue, options)
22 convenience init(wrappedValue: Type = 0.0, _ options: FieldOption...) {
23 self.init(wrappedValue: wrappedValue, options)
36 self.init(wrappedValue: wrappedValue, options)
48 convenience init(wrappedValue: Type = "", _ options: FieldOption...) {
49 self.init(wrappedValue: wrappedValue, options)
61 convenience init(wrappedValue: Type = [], _ options: FieldOption...) {
62 self.init(wrappedValue: wrappedValue, options)
75 self.init(wrappedValue: wrappedValue, options)
[all …]
/expo/ios/versioned/sdk48/ExpoModulesCore/ios/Swift/Records/
H A DFieldExtensions.swift9 convenience init(wrappedValue: Type = 0, _ options: FieldOption...) {
10 self.init(wrappedValue: wrappedValue, options)
22 convenience init(wrappedValue: Type = 0.0, _ options: FieldOption...) {
23 self.init(wrappedValue: wrappedValue, options)
36 self.init(wrappedValue: wrappedValue, options)
48 convenience init(wrappedValue: Type = "", _ options: FieldOption...) {
49 self.init(wrappedValue: wrappedValue, options)
61 convenience init(wrappedValue: Type = [], _ options: FieldOption...) {
62 self.init(wrappedValue: wrappedValue, options)
75 self.init(wrappedValue: wrappedValue, options)
[all …]
/expo/ios/versioned/sdk49/ExpoModulesCore/ios/Swift/Records/
H A DFieldExtensions.swift9 convenience init(wrappedValue: Type = 0, _ options: FieldOption...) {
10 self.init(wrappedValue: wrappedValue, options)
22 convenience init(wrappedValue: Type = 0.0, _ options: FieldOption...) {
23 self.init(wrappedValue: wrappedValue, options)
36 self.init(wrappedValue: wrappedValue, options)
48 convenience init(wrappedValue: Type = "", _ options: FieldOption...) {
49 self.init(wrappedValue: wrappedValue, options)
61 convenience init(wrappedValue: Type = [], _ options: FieldOption...) {
62 self.init(wrappedValue: wrappedValue, options)
75 self.init(wrappedValue: wrappedValue, options)
[all …]
/expo/packages/@expo/fingerprint/src/sourcer/
H A DSourcer.ts24 options: NormalizedOptions
30 profile(getExpoConfigSourcesAsync)(projectRoot, options),
31 profile(getEasBuildSourcesAsync)(projectRoot, options),
34 profile(getGitIgnoreSourcesAsync)(projectRoot, options),
38 profile(getBareAndroidSourcesAsync)(projectRoot, options),
39 profile(getBareIosSourcesAsync)(projectRoot, options),
42 profile(getRncliAutolinkingSourcesAsync)(projectRoot, options),
45 profile(getPatchPackageSourcesAsync)(projectRoot, options),
49 if (options.extraSources) {
50 for (const source of options.extraSources) {
[all …]
/expo/packages/@expo/cli/src/start/server/
H A DUrlCreator.ts75 ...options,
92 protocol: options.scheme ?? 'http',
104 if (options.hostType === 'tunnel') {
110 } else if (options.hostType === 'localhost' && !options.hostname) {
111 options.hostname = 'localhost';
115 hostname: getDefaultHostname(options),
117 protocol: options.scheme ?? 'http',
123 options: Pick<CreateURLOptions, 'scheme'>,
127 let protocol = options.scheme ?? 'http';
147 } else if (options.hostname === 'localhost') {
[all …]
/expo/ios/versioned/sdk49/ExpoImagePicker/
H A DImagePickerModule.swift14 let options: ImagePickerOptions variable
61 self.launchImagePicker(sourceType: .camera, options: options, promise: promise) in definition()
66 self.launchImagePicker(sourceType: .photoLibrary, options: options, promise: promise) in definition()
91 options: options, in launchImagePicker()
102 let options = pickingContext.options in launchLegacyImagePicker() variable
124 if options.allowsEditing { in launchLegacyImagePicker()
140 let options = pickingContext.options in launchMultiSelectPicker() variable
179 guard let options = self.currentPickingContext?.options, in didPickMultipleMedia() variable
189 options: options) in didPickMultipleMedia()
203 guard let options = self.currentPickingContext?.options, in didPickMedia() variable
[all …]
/expo/packages/expo-secure-store/ios/
H A DSecureStoreModule.swift24 let data = try searchKeyChain(with: key, options: options) in definition()
38 return try set(value: value, with: key, options: options) in definition()
42 let searchDictionary = query(with: key, options: options) in definition()
48 var query = query(with: key, options: options) in set()
53 let accessibility = attributeWith(options: options) in set()
55 if !options.requireAuthentication { in set()
71 return try update(value: value, with: key, options: options) in set()
78 var query = query(with: key, options: options) in update()
97 var query = query(with: key, options: options) in searchKeyChain()
123 let service = options.keychainService ?? "app" in query()
[all …]
/expo/ios/versioned/sdk49/ExpoSecureStore/
H A DSecureStoreModule.swift24 let data = try searchKeyChain(with: key, options: options) in definition()
38 return try set(value: value, with: key, options: options) in definition()
42 let searchDictionary = query(with: key, options: options) in definition()
48 var query = query(with: key, options: options) in set()
53 let accessibility = attributeWith(options: options) in set()
55 if !options.requireAuthentication { in set()
71 return try update(value: value, with: key, options: options) in set()
78 var query = query(with: key, options: options) in update()
97 var query = query(with: key, options: options) in searchKeyChain()
123 let service = options.keychainService ?? "app" in query()
[all …]
/expo/ios/versioned/sdk48/ExpoImagePicker/
H A DImagePickerModule.swift14 let options: ImagePickerOptions variable
61 self.launchImagePicker(sourceType: .camera, options: options, promise: promise) in definition()
66 self.launchImagePicker(sourceType: .photoLibrary, options: options, promise: promise) in definition()
91 options: options, in launchImagePicker()
102 let options = pickingContext.options in launchLegacyImagePicker() variable
124 if options.allowsEditing { in launchLegacyImagePicker()
140 let options = pickingContext.options in launchMultiSelectPicker() variable
176 guard let options = self.currentPickingContext?.options, in didPickMultipleMedia() variable
186 options: options) in didPickMultipleMedia()
200 guard let options = self.currentPickingContext?.options, in didPickMedia() variable
[all …]
/expo/ios/versioned/sdk47/ExpoImagePicker/
H A DImagePickerModule.swift14 let options: ImagePickerOptions variable
61 self.launchImagePicker(sourceType: .camera, options: options, promise: promise) in definition()
66 self.launchImagePicker(sourceType: .photoLibrary, options: options, promise: promise) in definition()
91 options: options, in launchImagePicker()
102 let options = pickingContext.options in launchLegacyImagePicker() variable
124 if options.allowsEditing { in launchLegacyImagePicker()
140 let options = pickingContext.options in launchMultiSelectPicker() variable
176 guard let options = self.currentPickingContext?.options, in didPickMultipleMedia() variable
186 options: options) in didPickMultipleMedia()
200 guard let options = self.currentPickingContext?.options, in didPickMedia() variable
[all …]
/expo/tools/src/commands/
H A DAddChangelog.ts31 if (options.packageNames.length === 0) {
43 if (options.pullRequest === true) {
57 if (!options.author.length) {
71 if (!options.entry) {
80 if (!options.type) {
91 return { ...options, ...promptAnswer };
113 options.packageNames = packageNames;
116 options = await checkOrAskForOptions(options);
121 if (!options.author.length || !options.entry || !options.type || options.pullRequest === true) {
140 const message = options.entry.slice(-1) === '.' ? options.entry : `${options.entry}.`;
[all …]
/expo/packages/expo-print/build/
H A DPrint.js24 export async function printAsync(options) { argument
26 return await ExponentPrint.print(options);
28 if (!options.uri && !options.html && Platform.OS === 'ios' && !options.markupFormatterIOS) {
31 if (options.uri && options.html) {
34 if (options.markupFormatterIOS !== undefined) {
42 return await ExponentPrint.print(options);
66 export async function printToFileAsync(options = {}) { argument
67 return await ExponentPrint.printToFileAsync(options);
/expo/packages/@expo/cli/src/run/
H A DresolveBundlerProps.ts14 options: {
19 options.bundler = options.bundler ?? true;
23 !options.bundler &&
24 options.port
30 let port = options.bundler
31 ? await resolvePortAsync(projectRoot, { reuseExistingPort: true, defaultPort: options.port })
35 options.bundler = !!port;
40 Log.debug(`Resolved port: ${port}, start dev server: ${options.bundler}`);
43 shouldStartBundler: !!options.bundler,
/expo/packages/expo-image-picker/ios/
H A DImagePickerModule.swift14 let options: ImagePickerOptions variable
61 self.launchImagePicker(sourceType: .camera, options: options, promise: promise) in definition()
66 self.launchImagePicker(sourceType: .photoLibrary, options: options, promise: promise) in definition()
91 options: options, in launchImagePicker()
102 let options = pickingContext.options in launchLegacyImagePicker() variable
125 if options.allowsEditing { in launchLegacyImagePicker()
141 let options = pickingContext.options in launchMultiSelectPicker() variable
180 guard let options = self.currentPickingContext?.options, in didPickMultipleMedia() variable
190 options: options) in didPickMultipleMedia()
204 guard let options = self.currentPickingContext?.options, in didPickMedia() variable
[all …]
/expo/packages/@expo/cli/src/start/
H A DresolveOptions.ts95 if (typeof options.scheme === 'string') {
97 return options.scheme ?? null;
110 export function resolveHostType(options: {
118 [options.offline, options.host, options.lan, options.localhost, options.tunnel].filter((i) => i)
127 if (options.offline) {
130 } else if (options.host) {
133 } else if (options.tunnel) {
135 } else if (options.lan) {
137 } else if (options.localhost) {
153 defaultPort: options.port,
[all …]
/expo/packages/expo-print/ios/
H A DExpoPrintWithPrinter.swift15 if let uri = options.uri { in startPrint()
18 self.printWithData(printingData: printingData, options: options, promise: promise) in startPrint()
27 guard let htmlString = options.markupFormatterIOS ?? options.html else { in startPrint()
32 if !options.useMarkupFormatter { in startPrint()
33 … printFromHtmlWithoutMarkupFormatter(htmlString: htmlString, options: options, promise: promise) in startPrint()
35 printFromHtmlWithMarkupFormatter(htmlString: htmlString, options: options, promise: promise) in startPrint()
52 self.printWithData(printingData: pdfData, options: options, promise: promise) in printFromHtmlWithoutMarkupFormatter()
68 self.printWithData(printingData: pdfData, options: options, promise: promise) in printFromHtmlWithMarkupFormatter()
84 let printInteractionController = makePrintInteractionController(options: options) in printWithData()
124 let uri = options.uri ?? "" in makePrintInteractionController()
[all …]

12345678910>>...87