Home
last modified time | relevance | path

Searched refs:input (Results 1 – 25 of 443) sorted by relevance

12345678910>>...18

/expo/packages/expo-notifications/src/__tests__/
H A DNotifications-test.ts12 const input = { constant
19 input.content,
28 const input = { constant
35 input.content,
49 const input = { constant
57 input.content,
72 const input = { constant
96 const input = { constant
233 ...input,
272 ...input,
[all …]
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Base/
H A DABI49_0_0RCTParserUtils.m16 if (**input == c) {
17 (*input)++;
31 *input += i;
37 while (isspace(**input)) {
38 (*input)++;
54 const char *start = *input;
60 (*input)++;
63 (*input)++;
77 const char *start = *input;
81 (*input)++;
[all …]
H A DABI49_0_0RCTParserUtils.h17 ABI49_0_0RCT_EXTERN BOOL ABI49_0_0RCTReadChar(const char **input, char c);
18 ABI49_0_0RCT_EXTERN BOOL ABI49_0_0RCTReadString(const char **input, const char *string);
19 ABI49_0_0RCT_EXTERN void ABI49_0_0RCTSkipWhitespace(const char **input);
20 ABI49_0_0RCT_EXTERN BOOL ABI49_0_0RCTParseSelectorIdentifier(const char **input, NSString **string);
21 ABI49_0_0RCT_EXTERN BOOL ABI49_0_0RCTParseArgumentIdentifier(const char **input, NSString **string);
28 ABI49_0_0RCT_EXTERN NSString *ABI49_0_0RCTParseType(const char **input);
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Base/
H A DABI48_0_0RCTParserUtils.m16 if (**input == c) {
17 (*input)++;
31 *input += i;
37 while (isspace(**input)) {
38 (*input)++;
54 const char *start = *input;
60 (*input)++;
63 (*input)++;
77 const char *start = *input;
81 (*input)++;
[all …]
H A DABI48_0_0RCTParserUtils.h17 ABI48_0_0RCT_EXTERN BOOL ABI48_0_0RCTReadChar(const char **input, char c);
18 ABI48_0_0RCT_EXTERN BOOL ABI48_0_0RCTReadString(const char **input, const char *string);
19 ABI48_0_0RCT_EXTERN void ABI48_0_0RCTSkipWhitespace(const char **input);
20 ABI48_0_0RCT_EXTERN BOOL ABI48_0_0RCTParseSelectorIdentifier(const char **input, NSString **string);
21 ABI48_0_0RCT_EXTERN BOOL ABI48_0_0RCTParseArgumentIdentifier(const char **input, NSString **string);
28 ABI48_0_0RCT_EXTERN NSString *ABI48_0_0RCTParseType(const char **input);
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Base/
H A DABI47_0_0RCTParserUtils.m16 if (**input == c) {
17 (*input)++;
31 *input += i;
37 while (isspace(**input)) {
38 (*input)++;
54 const char *start = *input;
60 (*input)++;
63 (*input)++;
77 const char *start = *input;
81 (*input)++;
[all …]
H A DABI47_0_0RCTParserUtils.h17 ABI47_0_0RCT_EXTERN BOOL ABI47_0_0RCTReadChar(const char **input, char c);
18 ABI47_0_0RCT_EXTERN BOOL ABI47_0_0RCTReadString(const char **input, const char *string);
19 ABI47_0_0RCT_EXTERN void ABI47_0_0RCTSkipWhitespace(const char **input);
20 ABI47_0_0RCT_EXTERN BOOL ABI47_0_0RCTParseSelectorIdentifier(const char **input, NSString **string);
21 ABI47_0_0RCT_EXTERN BOOL ABI47_0_0RCTParseArgumentIdentifier(const char **input, NSString **string);
28 ABI47_0_0RCT_EXTERN NSString *ABI47_0_0RCTParseType(const char **input);
/expo/packages/@expo/cli/src/api/rest/__tests__/
H A DwrapFetchWithBaseUrl-test.ts7 const input = jest.fn(); constant
8 const next = wrapFetchWithBaseUrl(input, 'https://example.com/v2/');
10 expect(input).toBeCalledWith('https://example.com/v2/test', {});
13 const input = jest.fn(); constant
14 const next = wrapFetchWithBaseUrl(input, 'https://example.com/v2/');
16 expect(input).toBeCalledWith('https://example.com/v2/test', {});
19 const input = jest.fn(); constant
20 const next = wrapFetchWithBaseUrl(input, 'https://example.com/v2');
22 expect(input).toBeCalledWith('https://expo.dev/', {});
25 const input = jest.fn(); constant
[all …]
H A DwrapFetchWithOffline-test.ts6 const input = jest.fn(); constant
7 const next = wrapFetchWithOffline(input);
9 expect(input).toBeCalledWith('https://example.com/', {});
13 const input = jest.fn(); constant
14 const next = wrapFetchWithOffline(input);
16 expect(input).toBeCalledWith('https://example.com/', { timeout: 1 });
/expo/packages/create-expo-module/src/
H A Dprompts.ts21 validate: (input) =>
22 validateNpmPackage(input).validForNewPackages || 'Must be a valid npm package name',
34 validate: (input) =>
35 validateNpmPackage(input).validForNewPackages || 'Must be a valid npm package name',
51 validate: (input) => !!input || 'The native module name cannot be empty',
58 validate: (input) => !!input || 'The description cannot be empty',
71 validate: (input) => !!input || 'The Android package name cannot be empty',
78 validate: (input) => !!input || 'Cannot be empty',
98 validate: (input) => /^https?:\/\//.test(input) || 'Must be a valid URL',
117 validate: (input) => !!input || 'The native module name cannot be empty',
[all …]
/expo/packages/expo-document-picker/build/
H A DExpoDocumentPicker.web.js11 const input = document.createElement('input'); constant
12 input.style.display = 'none';
13 input.setAttribute('type', 'file');
15 input.setAttribute('id', String(Math.random()));
17 input.setAttribute('multiple', 'multiple');
19 document.body.appendChild(input);
21 input.addEventListener('change', async () => {
22 if (input.files) {
24 for (let i = 0; i < input.files.length; i++) {
38 document.body.removeChild(input);
[all …]
/expo/packages/expo-document-picker/src/
H A DExpoDocumentPicker.web.ts19 const input = document.createElement('input'); constant
20 input.style.display = 'none';
21 input.setAttribute('type', 'file');
23 input.setAttribute('id', String(Math.random()));
25 input.setAttribute('multiple', 'multiple');
28 document.body.appendChild(input);
31 input.addEventListener('change', async () => {
32 if (input.files) {
34 for (let i = 0; i < input.files.length; i++) {
47 document.body.removeChild(input);
[all …]
/expo/packages/expo-structured-headers/android/src/main/java/expo/modules/structuredheaders/
H A DParseException.java25 public ParseException(String message, String input, int position, Throwable cause) { in ParseException() argument
28 this.data = input; in ParseException()
41 public ParseException(String message, String input, int position) { in ParseException() argument
42 this(message, input, position, null); in ParseException()
55 public ParseException(String message, CharBuffer input, Throwable cause) { in ParseException() argument
56 this(message, asString(input), input.position(), cause); in ParseException()
67 public ParseException(String message, CharBuffer input) { in ParseException() argument
68 this(message, asString(input), input.position(), null); in ParseException()
113 private static String asString(CharBuffer input) { in asString() argument
115 for (int i = 0; i < input.position() + input.remaining(); i++) { in asString()
[all …]
H A DParser.java22 private final CharBuffer input; field in Parser
33 public Parser(String input) { in Parser() argument
45 public Parser(String... input) { in Parser() argument
46 this(Arrays.asList(input)); in Parser()
500 Parser p = new Parser(input); in parseInteger()
834 input.position(1 + input.position()); in advance()
838 input.position(-1 + input.position()); in backout()
850 return input.get(); in get()
858 return input.hasRemaining(); in hasRemaining()
862 return input.length(); in length()
[all …]
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/structuredheaders/
H A DParseException.java25 public ParseException(String message, String input, int position, Throwable cause) { in ParseException() argument
28 this.data = input; in ParseException()
41 public ParseException(String message, String input, int position) { in ParseException() argument
42 this(message, input, position, null); in ParseException()
55 public ParseException(String message, CharBuffer input, Throwable cause) { in ParseException() argument
56 this(message, asString(input), input.position(), cause); in ParseException()
67 public ParseException(String message, CharBuffer input) { in ParseException() argument
68 this(message, asString(input), input.position(), null); in ParseException()
113 private static String asString(CharBuffer input) { in asString() argument
115 for (int i = 0; i < input.position() + input.remaining(); i++) { in asString()
[all …]
H A DParser.java22 private final CharBuffer input; field in Parser
33 public Parser(String input) { in Parser() argument
45 public Parser(String... input) { in Parser() argument
46 this(Arrays.asList(input)); in Parser()
500 Parser p = new Parser(input); in parseInteger()
834 input.position(1 + input.position()); in advance()
838 input.position(-1 + input.position()); in backout()
850 return input.get(); in get()
858 return input.hasRemaining(); in hasRemaining()
862 return input.length(); in length()
[all …]
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/structuredheaders/
H A DParseException.java25 public ParseException(String message, String input, int position, Throwable cause) { in ParseException() argument
28 this.data = input; in ParseException()
41 public ParseException(String message, String input, int position) { in ParseException() argument
42 this(message, input, position, null); in ParseException()
55 public ParseException(String message, CharBuffer input, Throwable cause) { in ParseException() argument
56 this(message, asString(input), input.position(), cause); in ParseException()
67 public ParseException(String message, CharBuffer input) { in ParseException() argument
68 this(message, asString(input), input.position(), null); in ParseException()
113 private static String asString(CharBuffer input) { in asString() argument
115 for (int i = 0; i < input.position() + input.remaining(); i++) { in asString()
[all …]
H A DParser.java22 private final CharBuffer input; field in Parser
33 public Parser(String input) { in Parser() argument
45 public Parser(String... input) { in Parser() argument
46 this(Arrays.asList(input)); in Parser()
500 Parser p = new Parser(input); in parseInteger()
834 input.position(1 + input.position()); in advance()
838 input.position(-1 + input.position()); in backout()
850 return input.get(); in get()
858 return input.hasRemaining(); in hasRemaining()
862 return input.length(); in length()
[all …]
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/structuredheaders/
H A DParseException.java25 public ParseException(String message, String input, int position, Throwable cause) { in ParseException() argument
28 this.data = input; in ParseException()
41 public ParseException(String message, String input, int position) { in ParseException() argument
42 this(message, input, position, null); in ParseException()
55 public ParseException(String message, CharBuffer input, Throwable cause) { in ParseException() argument
56 this(message, asString(input), input.position(), cause); in ParseException()
67 public ParseException(String message, CharBuffer input) { in ParseException() argument
68 this(message, asString(input), input.position(), null); in ParseException()
113 private static String asString(CharBuffer input) { in asString() argument
115 for (int i = 0; i < input.position() + input.remaining(); i++) { in asString()
[all …]
H A DParser.java22 private final CharBuffer input; field in Parser
33 public Parser(String input) { in Parser() argument
45 public Parser(String... input) { in Parser() argument
46 this(Arrays.asList(input)); in Parser()
500 Parser p = new Parser(input); in parseInteger()
834 input.position(1 + input.position()); in advance()
838 input.position(-1 + input.position()); in backout()
850 return input.get(); in get()
858 return input.hasRemaining(); in hasRemaining()
862 return input.length(); in length()
[all …]
/expo/packages/create-expo-module/build/
H A Dprompts.js23 …validate: (input) => (0, validate_npm_package_name_1.default)(input).validForNewPackages || 'Must …
34 …validate: (input) => (0, validate_npm_package_name_1.default)(input).validForNewPackages || 'Must …
50 validate: (input) => !!input || 'The native module name cannot be empty',
57 validate: (input) => !!input || 'The description cannot be empty',
70 validate: (input) => !!input || 'The Android package name cannot be empty',
77 validate: (input) => !!input || 'Cannot be empty',
96 validate: (input) => /^https?:\/\//.test(input) || 'Must be a valid URL',
113 validate: (input) => !!input || 'The native module name cannot be empty',
126 validate: (input) => !!input || 'The Android package name cannot be empty',
/expo/packages/expo-camera/src/
H A DWebCapabilityUtils.ts4 export function convertFlashModeJSONToNative(input: string): boolean {
5 switch (input) {
16 export function convertWhiteBalanceJSONToNative(input: string): MeteringMode | undefined {
17 switch (input) {
30 export function convertAutoFocusJSONToNative(input: string): MeteringMode | undefined {
31 switch (input) {
/expo/packages/expo-camera/build/
H A DWebCapabilityUtils.js4 export function convertFlashModeJSONToNative(input) { argument
5 switch (input) {
15 export function convertWhiteBalanceJSONToNative(input) { argument
16 switch (input) {
28 export function convertAutoFocusJSONToNative(input) { argument
29 switch (input) {
/expo/packages/expo-image-picker/build/
H A DExponentImagePicker.web.js65 const input = document.createElement('input');
66 input.style.display = 'none';
67 input.setAttribute('type', 'file');
68 input.setAttribute('accept', mediaTypeFormat);
71 input.setAttribute('multiple', 'multiple');
74 input.setAttribute('capture', 'camera');
76 document.body.appendChild(input);
79 if (input.files) {
80 const files = allowsMultipleSelection ? input.files : [input.files[0]];
87 document.body.removeChild(input);
[all …]
/expo/packages/expo-image-picker/src/
H A DExponentImagePicker.web.ts93 const input = document.createElement('input'); constant
94 input.style.display = 'none';
95 input.setAttribute('type', 'file');
96 input.setAttribute('accept', mediaTypeFormat);
99 input.setAttribute('multiple', 'multiple');
102 input.setAttribute('capture', 'camera');
104 document.body.appendChild(input);
108 if (input.files) {
109 const files = allowsMultipleSelection ? input.files : [input.files[0]]; constant
118 document.body.removeChild(input);
[all …]

12345678910>>...18