Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:pin_mut
(Results
1 - 5
of
5
) sorted by relevance
/third_party/rust/crates/pin-utils/tests/
H
A
D
stack_pin.rs
1
#![forbid(unsafe_code)] //
pin_mut
! is completely safe.
3
use pin_utils::
pin_mut
;
10
pin_mut
!(foo);
in stack_pin()
15
pin_mut
!(
in stack_pin()
H
A
D
projection.rs
1
use pin_utils::{unsafe_pinned, unsafe_unpinned,
pin_mut
};
20
pin_mut
!(foo);
in projection()
/third_party/rust/crates/cxx/tests/
H
A
D
test.rs
158
assert_eq!(vector.
pin_mut
().pop(), Some(9));
in test_c_take()
161
vector.
pin_mut
().push(9.0);
in test_c_take()
164
vector.
pin_mut
().push(ffi::Shared { z: 9 });
in test_c_take()
255
assert_eq!(2021, unique_ptr.
pin_mut
().set(2021));
in test_c_method_calls()
259
assert_eq!(2021, *unique_ptr.
pin_mut
().getMut());
in test_c_method_calls()
260
assert_eq!(2022, unique_ptr.
pin_mut
().set_succeed(2022).unwrap());
in test_c_method_calls()
261
assert!(unique_ptr.
pin_mut
().get_fail().is_err());
in test_c_method_calls()
358
check!(e.
pin_mut
().c_take_opaque_mut_ref_method());
in test_extern_opaque()
370
assert_eq!(2023, c_unique.
pin_mut
().set_succeed(2023).unwrap());
in test_raw_ptr()
/third_party/rust/crates/pin-utils/src/
H
A
D
stack_pin.rs
6
/// # use pin_utils::
pin_mut
;
10
///
pin_mut
!(foo);
14
macro_rules!
pin_mut
{
macros
/third_party/rust/crates/cxx/src/
H
A
D
unique_ptr.rs
77
pub fn
pin_mut
(&mut self) -> Pin<&mut T> {
in pin_mut()
functions
81
"called
pin_mut
on a null UniquePtr<{}>",
in pin_mut()
Completed in 2 milliseconds