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:is_alphanumeric
(Results
1 - 8
of
8
) sorted by relevance
/third_party/rust/crates/nom/src/character/
H
A
D
mod.rs
75
/// # use nom::character::
is_alphanumeric
;
76
/// assert_eq!(
is_alphanumeric
(b'-'), false);
77
/// assert_eq!(
is_alphanumeric
(b'a'), true);
78
/// assert_eq!(
is_alphanumeric
(b'9'), true);
79
/// assert_eq!(
is_alphanumeric
(b'A'), true);
82
pub fn
is_alphanumeric
(chr: u8) -> bool {
in is_alphanumeric()
functions
/third_party/rust/crates/bindgen/bindgen-tests/
H
A
D
build.rs
33
.replace(|c| !char::
is_alphanumeric
(c), "_")
in main()
/third_party/qrcodegen/python/
H
A
D
qrcodegen.py
707
if not QrSegment.
is_alphanumeric
(text):
729
elif QrSegment.
is_alphanumeric
(text):
766
def
is_alphanumeric
(text: str) -> bool:
member in QrSegment
/third_party/skia/third_party/externals/spirv-cross/
H
A
D
spirv_cross_parsed_ir.cpp
153
static bool
is_alphanumeric
(char c)
in is_alphanumeric()
function
167
if (!
is_alphanumeric
(c) && c != '_')
in is_valid_identifier()
289
if (!
is_alphanumeric
(c) && c != '_')
in ensure_valid_identifier()
/third_party/qrcodegen/rust/src/
H
A
D
lib.rs
1047
} else if QrSegment::
is_alphanumeric
(text) {
in make_segments()
1141
pub fn
is_alphanumeric
(text: &str) -> bool {
in is_alphanumeric()
functions
/third_party/rust/crates/nom/src/bytes/
H
A
D
tests.rs
549
use crate::character::
is_alphanumeric
;
in recognize_take_while()
553
take_while(
is_alphanumeric
)(i)
in recognize_take_while()
/third_party/qrcodegen/rust-no-heap/src/
H
A
D
lib.rs
180
} else if QrSegment::
is_alphanumeric
(text) && QrSegment::calc_buffer_size(Alphanumeric, textlen).map_or(false, |x| x <= buflen) {
1280
pub fn
is_alphanumeric
(text: &str) -> bool {
in is_alphanumeric()
functions
/third_party/rust/crates/bindgen/bindgen/ir/
H
A
D
ty.rs
869
c.
is_alphanumeric
() || c == '_'
in from_clang_ty()
Completed in 10 milliseconds