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:RawOsString
(Results
1 - 6
of
6
) sorted by relevance
/third_party/rust/crates/os_str_bytes/tests/
H
A
D
raw_random.rs
4
use os_str_bytes::
RawOsString
;
29
let string =
RawOsString
::new(string);
in test_complex()
30
let suffix =
RawOsString
::new(suffix);
in test_complex()
/third_party/rust/crates/os_str_bytes/src/
H
A
D
raw_str.rs
140
Cow::Owned(string) => Cow::Owned(
RawOsString
(string)),
in new()
906
type Owned =
RawOsString
;
910
RawOsString
(self.0.to_owned())
in to_owned()
984
pub struct
RawOsString
(Vec<u8>);
structure names
986
impl
RawOsString
{
impls
998
/// use os_str_bytes::
RawOsString
;
1001
/// println!("{:?}",
RawOsString
::new(os_string));
1013
/// This method is much more efficient than [`
RawOsString
::new`], since the
1019
/// use os_str_bytes::
RawOsString
;
1022
/// let raw =
RawOsString
[all...]
H
A
D
lib.rs
12
//! In most cases, [`RawOsStr`] and [`
RawOsString
`] should be used.
26
//! [`
RawOsString
::into_os_string`] and similar methods.
81
//! - [`
RawOsString
`]
91
//! - [`
RawOsString
::from_raw_vec`]
99
//! [`
RawOsString
`].
103
//! [`
RawOsString
`].
120
//! take constant time. For example, [`
RawOsString
::into_os_string`] might be
268
pub use raw_str::
RawOsString
;
/third_party/rust/crates/clap/clap_lex/src/
H
A
D
lib.rs
118
pub use os_str_bytes::
RawOsString
;
/third_party/rust/crates/clap/clap_complete/src/
H
A
D
dynamic.rs
513
let raw_file_name = clap_lex::
RawOsString
::new(entry.file_name());
in complete_path()
/third_party/rust/crates/clap/src/parser/
H
A
D
parser.rs
9
use clap_lex::
RawOsString
;
1161
let raw_val =
RawOsString
::new(raw_val);
in react()
Completed in 7 milliseconds