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:limit_match
(Results
1 - 7
of
7
) sorted by relevance
/third_party/pcre2/pcre2/src/
H
A
D
pcre2_jit_match.c
137
arguments.
limit_match
= (mcontext->match_limit < re->
limit_match
)?
in pcre2_jit_match()
138
mcontext->match_limit : re->
limit_match
;
in pcre2_jit_match()
149
arguments.
limit_match
= (MATCH_LIMIT < re->
limit_match
)?
in pcre2_jit_match()
150
MATCH_LIMIT : re->
limit_match
;
in pcre2_jit_match()
H
A
D
pcre2_pattern_info.c
212
*((uint32_t *)where) = re->
limit_match
;
in pcre2_pattern_info()
213
if (re->
limit_match
== UINT32_MAX) return PCRE2_ERROR_UNSET;
in pcre2_pattern_info()
H
A
D
pcre2_intmodedep.h
630
uint32_t
limit_match
; /* Limit set in the pattern */
member
H
A
D
pcre2_dfa_match.c
3470
if (mb->match_limit > re->
limit_match
)
in pcre2_dfa_match()
3471
mb->match_limit = re->
limit_match
;
in pcre2_dfa_match()
H
A
D
pcre2_compile.c
9792
uint32_t
limit_match
= UINT32_MAX; /* Unset match limits */
in pcre2_compile()
local
10002
else if (p->type == PSO_LIMM)
limit_match
= c;
in pcre2_compile()
10277
re->
limit_match
=
limit_match
;
in pcre2_compile()
H
A
D
pcre2_match.c
6821
mb->match_limit = (mcontext->match_limit < re->
limit_match
)?
in pcre2_match()
6822
mcontext->match_limit : re->
limit_match
;
in pcre2_match()
H
A
D
pcre2_jit_compile.c
190
sljit_u32
limit_match
;
member
202
sljit_u32
limit_match
;
member
13938
OP1(SLJIT_MOV_U32, TMP1, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments,
limit_match
));
in jit_compile()
14344
functions->
limit_match
= re->
limit_match
;
in jit_compile()
Completed in 37 milliseconds