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:UnicodeWidthChar
(Results
1 - 4
of
4
) sorted by relevance
/third_party/rust/crates/unicode-width/src/
H
A
D
tests.rs
16
use super::{
UnicodeWidthChar
, UnicodeWidthStr};
27
test::black_box(
UnicodeWidthChar
::width(c));
in cargo()
82
UnicodeWidthChar
::width(c)
in simple_width_if()
93
_ =>
UnicodeWidthChar
::width(c)
in simple_width_match()
139
use super::
UnicodeWidthChar
;
in test_char()
143
assert_eq!(
UnicodeWidthChar
::width('h'), Some(2));
in test_char()
145
assert_eq!(
UnicodeWidthChar
::width('\x00'), Some(0));
in test_char()
147
assert_eq!(
UnicodeWidthChar
::width('\x01'), None);
in test_char()
149
assert_eq!(
UnicodeWidthChar
::width('\u{2081}'), Some(1));
in test_char()
155
use super::
UnicodeWidthChar
;
in test_char2()
[all...]
H
A
D
lib.rs
70
pub trait
UnicodeWidthChar
{
traits
90
impl
UnicodeWidthChar
for char {
/third_party/rust/crates/clap/src/output/textwrap/
H
A
D
core.rs
78
unicode_width::
UnicodeWidthChar
::width(ch).unwrap_or(0)
in ch_width()
91
use unicode_width::
UnicodeWidthChar
;
/third_party/rust/crates/codespan/codespan-reporting/src/term/
H
A
D
renderer.rs
670
use unicode_width::
UnicodeWidthChar
;
in char_metrics()
Completed in 3 milliseconds