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:swap_greed
(Results
1 - 5
of
5
) sorted by relevance
/third_party/rust/crates/regex/src/
H
A
D
re_builder.rs
12
pub
swap_greed
: bool,
28
swap_greed
: false,
in default()
120
pub fn
swap_greed
(&mut self, yes: bool) -> &mut RegexBuilder {
in swap_greed()
functions
121
self.0.
swap_greed
= yes;
in swap_greed()
310
pub fn
swap_greed
(
in swap_greed()
functions
314
self.0.
swap_greed
= yes;
in swap_greed()
H
A
D
exec.rs
243
.
swap_greed
(self.options.
swap_greed
)
in parse()
/third_party/rust/crates/regex/regex-syntax/src/
H
A
D
parser.rs
141
pub fn
swap_greed
(&mut self, yes: bool) -> &mut ParserBuilder {
in swap_greed()
functions
142
self.hir.
swap_greed
(yes);
in swap_greed()
/third_party/rust/crates/regex/regex-syntax/src/hir/
H
A
D
translate.rs
84
pub fn
swap_greed
(&mut self, yes: bool) -> &mut TranslatorBuilder {
in swap_greed()
functions
85
self.flags.
swap_greed
= if yes { Some(true) } else { None };
in swap_greed()
804
if self.flags().
swap_greed
() { !rep.greedy } else { rep.greedy };
in hir_repetition()
1011
swap_greed
: Option<bool>,
1036
flags.
swap_greed
= Some(enable);
in from_ast()
1057
if self.
swap_greed
.is_none() {
in merge()
1058
self.
swap_greed
= previous.
swap_greed
;
in merge()
1077
fn
swap_greed
(&self) -> bool {
in swap_greed()
functions
1078
self.
swap_greed
in swap_greed()
[all...]
/third_party/rust/crates/regex/regex-capi/src/
H
A
D
rure.rs
123
builder.
swap_greed
(flags & RURE_FLAG_SWAP_GREED > 0);
in rure_compile()
509
builder.
swap_greed
(flags & RURE_FLAG_SWAP_GREED > 0);
in rure_compile_set()
Completed in 6 milliseconds