Home
last modified time | relevance | path

Searched refs:Shell (Results 1 - 23 of 23) sorted by relevance

/third_party/rust/crates/clap/clap_complete/src/shells/
H A Dshell.rs11 /// Shell with auto-generated completion script available.
14 pub enum Shell { enum
27 impl Display for Shell {
36 impl FromStr for Shell { in fmt()
50 impl ValueEnum for Shell {
53 Shell::Bash, in value_variants()
54 Shell::Elvish, in value_variants()
55 Shell::Fish, in value_variants()
56 Shell::PowerShell, in value_variants()
57 Shell in value_variants()
94 impl Shell { global() impls
[all...]
H A Dmod.rs0 //! Shell-specific generators
14 pub use shell::Shell;
/third_party/node/deps/v8/src/d8/
H A Dd8.cc460 CounterMap* Shell::counter_map_;
461 base::SharedMutex Shell::counter_mutex_;
462 base::OS::MemoryMappedFile* Shell::counters_file_ = nullptr;
463 CounterCollection Shell::local_counters_;
464 CounterCollection* Shell::counters_ = &local_counters_;
465 base::LazyMutex Shell::context_mutex_;
466 const base::TimeTicks Shell::kInitialTicks = base::TimeTicks::Now();
467 Global<Function> Shell::stringify_function_;
468 base::LazyMutex Shell::workers_mutex_;
469 bool Shell
[all...]
H A Dd8-posix.cc414 void Shell::System(const v8::FunctionCallbackInfo<v8::Value>& args) { in System()
489 void Shell::ChangeDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) { in ChangeDirectory()
506 void Shell::SetUMask(const v8::FunctionCallbackInfo<v8::Value>& args) { in SetUMask()
563 void Shell::MakeDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) { in MakeDirectory()
587 void Shell::RemoveDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) { in RemoveDirectory()
601 void Shell::SetEnvironment(const v8::FunctionCallbackInfo<v8::Value>& args) { in SetEnvironment()
621 void Shell::UnsetEnvironment(const v8::FunctionCallbackInfo<v8::Value>& args) { in UnsetEnvironment()
635 char* Shell::ReadCharsFromTcpPort(const char* name, int* size_out) { in ReadCharsFromTcpPort()
636 DCHECK_GE(Shell::options.read_from_tcp_port, 0); in ReadCharsFromTcpPort()
650 serv_addr.sin_port = htons(Shell in ReadCharsFromTcpPort()
[all...]
H A Dd8-windows.cc9 void Shell::AddOSMethods(Isolate* isolate, Local<ObjectTemplate> os_templ) {} in AddOSMethods()
11 char* Shell::ReadCharsFromTcpPort(const char* name, int* size_out) { in ReadCharsFromTcpPort()
H A Dd8-js.cc7 const char* v8::Shell::stringify_source_ = R"D8(
H A Dd8.h328 friend class Shell;
480 class Shell : public i::AllStatic { class
H A Dasync-hooks-wrapper.cc232 if (try_catch.HasCaught()) Shell::ReportException(isolate, &try_catch); in ShellPromiseHook()
H A Dd8-test.cc725 Local<FunctionTemplate> Shell::CreateTestFastCApiTemplate(Isolate* isolate) { in CreateTestFastCApiTemplate()
936 Local<FunctionTemplate> Shell::CreateLeafInterfaceTypeTemplate( in CreateLeafInterfaceTypeTemplate()
/third_party/skia/third_party/externals/swiftshader/tests/regres/git/
H A Dgit.go61 if err := shell.Shell(gitTimeout, exe, wd, "add", file); err != nil {
83 return shell.Shell(gitTimeout, exe, wd, args...)
111 return shell.Shell(gitTimeout, exe, wd, args...)
126 if err := shell.Shell(gitTimeout, exe, path, cmds...); err != nil {
147 if err := shell.Shell(gitTimeout, exe, path, cmds...); err != nil {
158 return shell.Shell(gitTimeout, exe, path, "checkout", commit.String())
163 return shell.Shell(gitTimeout, exe, dir, "apply", patch)
/third_party/rust/crates/clap/clap_complete/examples/
H A Dcompletion.rs16 use clap_complete::{generate, Generator, Shell};
92 .value_parser(value_parser!(Shell)), in build_cli()
104 if let Some(generator) = matches.get_one::<Shell>("generator") { in main()
H A Dcompletion-derive.rs16 use clap_complete::{generate, Generator, Shell};
26 generator: Option<Shell>,
/third_party/rust/crates/once_cell/xtask/src/
H A Dtidy.rs1 use xshell::{cmd, Shell};
5 let sh = Shell::new().unwrap(); in test_formatting()
H A Dmain.rs6 use xshell::{cmd, Shell};
11 let sh = Shell::new()?; in main()
91 sh: &'a xshell::Shell, in push_toolchain()
/third_party/node/deps/v8/tools/testrunner/local/
H A Dandroid.py100 self.device.adb.Shell('mkdir -p %s' % folder_on_device)
101 self.device.adb.Shell('cp %s %s' % (file_on_device_tmp, file_on_device))
/third_party/rust/crates/clap/clap_complete/src/
H A Dlib.rs19 //! [`Shell`] is a convenience `enum` for an argument value type that implements `Generator`
26 //! use clap_complete::{generate, Generator, Shell};
39 //! .value_parser(value_parser!(Shell)),
50 //! if let Some(generator) = matches.get_one::<Shell>("generator").copied() {
71 pub use shells::Shell;
/third_party/skia/third_party/externals/swiftshader/tests/regres/shell/
H A Dshell.go30 // Shell runs the executable exe with the given arguments, in the working
33 func Shell(timeout time.Duration, exe, wd string, args ...string) error {
/third_party/skia/third_party/externals/oboe/apps/OboeTester/
H A Dgradlew.bat66 @rem Get arguments from the 4NT Shell from JP Software
/third_party/skia/third_party/externals/oboe/samples/
H A Dgradlew.bat66 @rem Get arguments from the 4NT Shell from JP Software
/third_party/lzma/CPP/7zip/Bundles/SFXWin/
H A Dmakefile46 $O\Shell.obj \
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/regres/
H A Dmain.go504 if err := shell.Shell(buildTimeout, r.python, cacheDir, "external/fetch_sources.py"); err != nil {
521 if err := shell.Shell(buildTimeout, r.cmake, buildDir,
528 if err := shell.Shell(buildTimeout, r.make, buildDir,
1259 if err := shell.Shell(buildTimeout, t.r.make, t.buildDir, fmt.Sprintf("-j%d", runtime.NumCPU())); err != nil {
/third_party/lzma/CPP/7zip/
H A D7zip_gcc.mak364 $O/Shell.o: ../../../Windows/Shell.cpp
/third_party/python/Lib/tkinter/
H A Dtix.py1373 class Shell(TixWidget): class
1389 # FIXME: It should inherit from Shell

Completed in 22 milliseconds