Home
last modified time | relevance | path

Searched refs:into (Results 101 - 125 of 348) sorted by relevance

12345678910>>...14

/third_party/rust/crates/os_str_bytes/src/
H A Dlib.rs317 match string.into() { in from_raw_bytes()
326 Cow::Owned(string) => Cow::Owned(string.into()), in cow_os_str_into_path()
337 /// Converts a byte string into an equivalent platform-native string.
370 /// Converts a byte string into an equivalent platform-native string. in assert_from_raw_bytes()
405 /// Converts a platform-native string into an equivalent byte string.
479 /// Converts a byte string into an equivalent platform-native string. in to_raw_bytes()
510 /// Converts a byte string into an equivalent platform-native string. in to_raw_bytes()
543 /// Converts a platform-native string into an equivalent byte string. in to_raw_bytes()
555 /// let os_string: OsString = string.clone().into(); in to_raw_bytes()
584 OsString::assert_from_raw_vec(string).into() in assert_from_raw_vec()
[all...]
/third_party/rust/crates/serde/test_suite/tests/ui/type-attribute/
H A Dinto.rs4 #[serde(into = "Option<T")]
/third_party/rust/crates/serde/test_suite/tests/ui/transparent/
H A Dwith_into.rs4 #[serde(transparent, into = "u64")]
/third_party/ffmpeg/libavcodec/x86/
H A Dvideodsp.asm123 ; - if (%2 & 8) fills 8 bytes into xmm$next
124 ; - if (%2 & 4) fills 4 bytes into xmm$next
127 ; - if (%2 & 4) fills 4 bytes into mm$next
247 ; they read a fixed number of pixels into set registers, and write
248 ; those out into the destination buffer
/third_party/rust/crates/bindgen/bindgen/ir/
H A Dfunction.rs531 args.insert(0, (Some("this".into()), ptr)); in from_ty()
536 args.insert(0, (Some("this".into()), ptr)); in from_ty()
753 tracer.visit_kind(self.return_type().into(), EdgeKind::FunctionReturn); in trace()
756 tracer.visit_kind(ty.into(), EdgeKind::FunctionParameter); in trace()
/third_party/rust/crates/clap/src/builder/
H A Darg_predicate.rs17 Self::Equals(other.into()) in from()
/third_party/rust/crates/nix/src/
H A Dunistd.rs333 let res = unsafe { libc::setpgid(pid.into(), pgid.into()) }; in setpgid()
338 let res = unsafe { libc::getpgid(pid.unwrap_or(Pid(0)).into()) }; in getpgid()
357 let res = unsafe { libc::getsid(pid.unwrap_or(Pid(0)).into()) }; in getsid()
381 let res = unsafe { libc::tcsetpgrp(fd, pgrp.into()) }; in tcsetpgrp()
702 let uid = owner.map(Into::into) in chown_raw_ids()
704 let gid = group.map(Into::into) in chown_raw_ids()
1116 /// or equal to offset. If offset points into the middle of a hole, then
1447 let res = unsafe { libc::seteuid(euid.into()) }; in seteuid()
1457 let res = unsafe { libc::setegid(egid.into()) }; in setegid()
[all...]
H A Dsched.rs265 pid.into(), in sched_setaffinity()
300 pid.into(), in sched_getaffinity()
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/
H A DTemplate.pm553 # install the variables into the specified package,
690 parts of the program into the template. That prevents code bloat and
725 template into the example result, and prints it out:
795 so the C<\n> really does turn into a newline. See the note at the end
803 statement is a string, which is interpolated into the template in
807 fragments will persist into later fragments:
822 The value of C<$x> set in the first line will persist into the next
825 into the last line. The output will look something like this:
838 into the template, and you want the template to generate a bulleted
1058 back into th
[all...]
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/
H A DTemplate.pm553 # install the variables into the specified package,
690 parts of the program into the template. That prevents code bloat and
725 template into the example result, and prints it out:
795 so the C<\n> really does turn into a newline. See the note at the end
803 statement is a string, which is interpolated into the template in
807 fragments will persist into later fragments:
822 The value of C<$x> set in the first line will persist into the next
825 into the last line. The output will look something like this:
838 into the template, and you want the template to generate a bulleted
1058 back into th
[all...]
/third_party/rust/crates/proc-macro2/src/
H A Dlib.rs66 //! To opt into the additional APIs available in the most recent nightly
180 /// collecting token trees into one stream.
206 inner: inner.into(), in _new_fallback()
230 /// Attempts to break the string into tokens and parse those tokens into a token
237 /// reserve the right to change these errors into `LexError`s later.
254 TokenStream::_new(inner.into()) in from()
262 inner.inner.into() in from()
285 /// Collects a number of token trees into a single stream.
298 /// convertible back into th
[all...]
/third_party/rust/crates/nix/test/
H A Dtest_unistd.rs50 let child_raw: ::libc::pid_t = child.into(); in test_fork_and_waitpid()
208 let pid: ::libc::pid_t = getpid().into(); in test_getpid()
209 let ppid: ::libc::pid_t = getppid().into(); in test_getpid()
217 let none_sid: ::libc::pid_t = getsid(None).unwrap().into(); in test_getsid()
218 let pid_sid: ::libc::pid_t = getsid(Some(getpid())).unwrap().into(); in test_getsid()
229 let tid: ::libc::pid_t = gettid().into(); in test_gettid()
1189 let pwd: libc::passwd = nobody.into(); in test_user_into_passwd()
1190 let _: User = (&pwd).into(); in test_user_into_passwd()
/third_party/rust/crates/clap/tests/derive/
H A Ddeny_warnings.rs20 Ok(s.into()) in try_str()
/third_party/openssl/doc/life-cycles/
H A DMakefile9 @echo into the man pages.
/third_party/rust/crates/nix/src/sys/
H A Dpthread.rs36 let sig = match signal.into() { in pthread_kill()
/third_party/rust/crates/rustix/examples/
H A Dhello.rs33 Err(err) => return Err(err.into()), in main()
/third_party/rust/crates/os_str_bytes/src/wasm/
H A Draw.rs28 ch.into()
/third_party/rust/crates/rust-openssl/openssl-macros/src/
H A Dlib.rs31 out.into() in corresponds()
/third_party/rust/crates/clap/clap_lex/src/
H A Dlib.rs42 //! Err(format!("Invalid value for `--color`, {:?}", invalid).into())
69 //! return Err(format!("`--verbose` does not take a value, got `{:?}`", value).into());
78 //! format!("Unexpected flag: --{}", arg.display()).into()
93 //! return Err(format!("Unexpected flag: -{}", c).into());
96 //! return Err(format!("Unexpected flag: -{}", e.to_str_lossy()).into());
241 insert_items.into_iter().map(Into::into), in insert()
258 items: val.map(|x| x.into()).collect(), in from()
/third_party/rust/crates/rustix/src/backend/linux_raw/net/
H A Dread_sockaddr.rs61 match read_ss_family(storage).into() {
133 match read_ss_family(storage).into() {
/third_party/node/test/parallel/
H A Dtest-timers-max-duration-warning.js19 assert.strictEqual(lines[0], `${OVERFLOW} does not fit into a 32-bit signed` +
/third_party/rust/crates/codespan/codespan-reporting/src/
H A Dterm.rs45 /// let writer = StandardStream::stderr(opts.color.into());
76 fn into(self) -> ColorChoice { in into() functions
/third_party/rust/crates/regex/tests/
H A Dapi_str.rs33 assert_eq!(caps.get(0).map(Into::into), Some("foo")); in match_as_str()
/third_party/rust/crates/syn/codegen/src/
H A Dcfg.rs15 match (cfg, overriding_cfg.into()) { in features()
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dtests.rs97 io::copy(&mut stdout, &mut output).expect("Should copy stdout into vec OK"); in rustfmt()
255 Err(_) => ("/* error generating bindings */\n".into(), "".to_string()), in compare_generated_header()
309 flags.insert(0, "bindgen".into()); in into_builder()
368 flags.push("--".into()); in create_bindgen_builder()
370 flags.push("--target=x86_64-unknown-linux".into()); in create_bindgen_builder()
373 // Fool builder_from_flags() into believing it has real env::args_os... in create_bindgen_builder()
720 // TODO: If another such feature is added, convert this test into a more generic in test_wrap_static_fns()

Completed in 14 milliseconds

12345678910>>...14