| /expo/packages/expo-module-scripts/bin/ |
| H A D | expo-module.js | 9 .command('configure', `Generate common configuration files`) 10 .command('readme', `Generate README`) 11 .command( 17 .command('test', `Run unit tests with an interactive watcher`) 18 .command('clean', `Removes compiled files`) 21 .command('prepare', `Scripts to run during the "prepare" phase`) 22 .command('prepublishOnly', `Scripts to run during the "prepublishOnly" phase`) 25 .command('babel', `Runs Babel CLI with the given arguments`) 26 .command('eslint', `Runs ESLint with the given arguments`) 27 .command('jest', `Runs Jest with the given arguments`) [all …]
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/templateprocessor/ |
| H A D | ABI48_0_0UITemplateProcessor.cpp | 35 const folly::dynamic &command, in runCommand() argument 42 const std::string &opcode = command[0].asString(); in runCommand() 46 Tag tag = static_cast<Tag>(command[1].asInt()); in runCommand() 47 const auto &type = command[2].asString(); in runCommand() 48 const auto parentTag = command[3].asInt(); in runCommand() 49 const auto &props = command[4]; in runCommand() 63 return nodes[static_cast<Tag>(command[1].asInt())]; in runCommand() 66 std::string param = command[4][0].asString(); in runCommand() 85 conditionDynamic.asBool() ? command[2] : command[3]; in runCommand() 126 for (const auto &command : commands) { in buildShadowTree() local [all …]
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/templateprocessor/ |
| H A D | ABI49_0_0UITemplateProcessor.cpp | 35 const folly::dynamic &command, in runCommand() argument 42 const std::string &opcode = command[0].asString(); in runCommand() 46 Tag tag = static_cast<Tag>(command[1].asInt()); in runCommand() 47 const auto &type = command[2].asString(); in runCommand() 48 const auto parentTag = command[3].asInt(); in runCommand() 49 const auto &props = command[4]; in runCommand() 63 return nodes[static_cast<Tag>(command[1].asInt())]; in runCommand() 66 std::string param = command[4][0].asString(); in runCommand() 85 conditionDynamic.asBool() ? command[2] : command[3]; in runCommand() 126 for (const auto &command : commands) { in buildShadowTree() local [all …]
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/templateprocessor/ |
| H A D | ABI47_0_0UITemplateProcessor.cpp | 36 const folly::dynamic &command, in runCommand() argument 43 const std::string &opcode = command[0].asString(); in runCommand() 47 Tag tag = static_cast<Tag>(command[1].asInt()); in runCommand() 48 const auto &type = command[2].asString(); in runCommand() 49 const auto parentTag = command[3].asInt(); in runCommand() 50 const auto &props = command[4]; in runCommand() 64 return nodes[static_cast<Tag>(command[1].asInt())]; in runCommand() 67 std::string param = command[4][0].asString(); in runCommand() 86 conditionDynamic.asBool() ? command[2] : command[3]; in runCommand() 127 for (const auto &command : commands) { in buildShadowTree() local [all …]
|
| /expo/packages/expo-updates/cli/ |
| H A D | cli.ts | 9 const commands: { [command: string]: () => Promise<Command> } = { 30 const command = args._[0]; constant 34 if ((args['--help'] && !command) || !command) { 62 commands[command]().then((exec) => exec(commandArgs));
|
| /expo/packages/expo-modules-test-core/src/ |
| H A D | index.ts | 4 const command = process.argv[2]; constant 6 if (command === 'generate-js-mocks') { 9 } else if (command === 'get-mocks-structure') {
|
| /expo/packages/expo-modules-test-core/build/ |
| H A D | index.js | 5 const command = process.argv[2]; constant 6 if (command === 'generate-js-mocks') { 10 else if (command === 'get-mocks-structure') {
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/scripts/cocoapods/__tests__/test_utils/ |
| H A D | systemUtils.rb | 8 def system(command) argument 9 $collected_commands.push(command)
|
| H A D | Open3Mock.rb | 13 def self.capture2e(command, chdir: ".") argument 14 @@collected_commands.push(command)
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/cocoapods/__tests__/test_utils/ |
| H A D | systemUtils.rb | 8 def system(command) argument 9 $collected_commands.push(command)
|
| H A D | Open3Mock.rb | 13 def self.capture2e(command, chdir: ".") argument 14 @@collected_commands.push(command)
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/cocoapods/__tests__/test_utils/ |
| H A D | systemUtils.rb | 8 def system(command) argument 9 $collected_commands.push(command)
|
| H A D | Open3Mock.rb | 13 def self.capture2e(command, chdir: ".") argument 14 @@collected_commands.push(command)
|
| /expo/packages/@expo/cli/src/utils/__tests__/ |
| H A D | port.test.ts | 24 command: 'npx expo', 33 command: 'npx expo', 52 command: 'npx expo', 64 command: 'npx expo', 76 command: 'npx expo',
|
| /expo/tools/bin/ |
| H A D | expotools.js | 37 command: createLogModifier((chalk) => chalk.cyan.italic), property 162 for (const command of program.commands) { 163 const names = [command._name]; 165 if (command._aliases) { 166 names.push(...command._aliases); 194 function spawnAsync(command, args, options) { argument 197 command, 250 `${LogModifiers.command(subCommandName)} is not an expotools command.` 253 `Run ${LogModifiers.command('et --help')} to see a list of available commands.\n`
|
| /expo/packages/expo-dev-menu/ios/ |
| H A D | DevMenuPackagerConnectionHandler.swift | 37 let command = params["name"] as? String, in sendDevCommandNotificationHandler() variable 45 switch command { in sendDevCommandNotificationHandler() 61 NSLog("Unknown command from packager: %@", command) in sendDevCommandNotificationHandler()
|
| /expo/packages/expo-test-runner/src/ |
| H A D | index.ts | 7 [CreateProject, RunTest].forEach((command) => command(program));
|
| /expo/packages/@expo/cli/src/utils/ |
| H A D | getRunningProcess.ts | 61 command: string; 73 const command = getProcessCommand(pid, directory); constant 75 return { pid, directory, command };
|
| /expo/packages/@expo/package-manager/build/utils/ |
| H A D | spawn.js | 37 async function spawnSudoAsync(command, spawnOptions) { argument 41 sudo_prompt_1.default.exec(command.join(' '), { name: 'pod install' }, (error) => { 53 await (0, spawn_async_1.default)('sudo', command, spawnOptions);
|
| /expo/ios/Exponent/Kernel/DevSupport/ |
| H A D | EXKernelDevKeyCommands.m | 141 // method gets called repeatedly if the command key is held down. 145 if ([command.keyCommand.input isEqualToString:key.input] && 146 command.keyCommand.modifierFlags == key.modifierFlags) { 147 if (command.block) { 148 command.block(key); 304 UIKeyCommand *command = [UIKeyCommand keyCommandWithInput:input 318 for (EXKeyCommand *command in _commands.allObjects) { 319 if ([command matchesInput:input flags:flags]) { 320 [_commands removeObject:command]; 331 for (EXKeyCommand *command in _commands) { [all …]
|
| /expo/packages/@expo/package-manager/src/utils/ |
| H A D | spawn.ts | 51 export async function spawnSudoAsync(command: string[], spawnOptions: SpawnOptions): Promise<void> { 55 sudo.exec(command.join(' '), { name: 'pod install' }, (error) => { 68 await spawnAsync('sudo', command, spawnOptions);
|
| /expo/tools/src/ |
| H A D | EASCLI.ts | 12 command: string, 20 const result = await spawnAsync('eas', [command, ...args], {
|
| /expo/packages/expo-test-runner/build/ |
| H A D | index.js | 10 [CreateProject_1.default, RunTest_1.default].forEach((command) => command(program));
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Base/ |
| H A D | ABI49_0_0RCTKeyCommands.m | 71 // We consider the key command a match if the modifier flags match 160 for (ABI49_0_0RCTKeyCommand *command in [ABI49_0_0RCTKeyCommands sharedInstance].commands) { 161 if ([command matchesInput:input flags:modifierFlags]) { 162 if (command.block) { 163 command.block(nil); 203 for (ABI49_0_0RCTKeyCommand *command in _commands.allObjects) { 204 if ([command matchesInput:input flags:flags]) { 205 [_commands removeObject:command]; 215 for (ABI49_0_0RCTKeyCommand *command in _commands) { 216 if ([command matchesInput:input flags:flags]) {
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Base/ |
| H A D | ABI48_0_0RCTKeyCommands.m | 71 // We consider the key command a match if the modifier flags match 160 for (ABI48_0_0RCTKeyCommand *command in [ABI48_0_0RCTKeyCommands sharedInstance].commands) { 161 if ([command matchesInput:input flags:modifierFlags]) { 162 if (command.block) { 163 command.block(nil); 203 for (ABI48_0_0RCTKeyCommand *command in _commands.allObjects) { 204 if ([command matchesInput:input flags:flags]) { 205 [_commands removeObject:command]; 215 for (ABI48_0_0RCTKeyCommand *command in _commands) { 216 if ([command matchesInput:input flags:flags]) {
|