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:alternation
(Results
1 - 3
of
3
) sorted by relevance
/third_party/node/deps/v8/src/regexp/
H
A
D
regexp-compiler-tonode.cc
913
// Compile $ in multiline regexps as an
alternation
with a positive
in RationalizeConsecutiveAtoms()
1650
ChoiceNode*
alternation
= zone->New<ChoiceNode>(2, zone);
in RationalizeConsecutiveAtoms()
local
1652
alternation
->AddAlternative(
in RationalizeConsecutiveAtoms()
1654
alternation
->AddAlternative(GuardedAlternative(on_success));
in RationalizeConsecutiveAtoms()
1656
alternation
->AddAlternative(GuardedAlternative(on_success));
in RationalizeConsecutiveAtoms()
1657
alternation
->AddAlternative(
in RationalizeConsecutiveAtoms()
1660
answer =
alternation
;
in RationalizeConsecutiveAtoms()
1662
alternation
->set_not_at_start();
in RationalizeConsecutiveAtoms()
/third_party/rust/crates/regex/regex-syntax/src/hir/
H
A
D
mod.rs
209
/// An
alternation
of expressions. An
alternation
always has at least two
212
/// An
alternation
matches only if at least one of its child expression
488
/// Returns the
alternation
of the given expressions.
490
/// This flattens the
alternation
as appropriate.
491
pub fn
alternation
(mut exprs: Vec<Hir>) -> Hir {
in alternation()
functions
685
///
alternation
of simple literals. This is only
687
/// concatenation of only `Literal`s or an
alternation
of only `Literal`s.
689
/// For example, `f`, `foo`, `a|b|c`, and `foo|bar|baz` are
alternation
H
A
D
translate.rs
180
/// This is pushed whenever an
alternation
is observed. After visiting
181
/// every sub-expression in the
alternation
, the translator's stack is
377
self.push(HirFrame::Expr(Hir::
alternation
(exprs)));
in visit_post()
1267
Hir::
alternation
(alts)
in hir_alt()
Completed in 10 milliseconds