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:RE_FLAG_GLOBAL
(Results
1 - 5
of
5
) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H
A
D
ecma-builtin-regexp-prototype.c
253
return ecma_make_boolean_value (flags &
RE_FLAG_GLOBAL
);
in ecma_builtin_regexp_prototype_get_global()
600
if (flags &
RE_FLAG_GLOBAL
)
in ecma_builtin_regexp_prototype_to_string()
/third_party/jerryscript/jerry-core/ecma/operations/
H
A
D
ecma-regexp-object.h
39
RE_FLAG_GLOBAL
= (1u << 1), /**< ECMA-262 v5, 15.10.7.2 */
enumerator
H
A
D
ecma-regexp-object.c
78
flag =
RE_FLAG_GLOBAL
;
in ecma_regexp_parse_flags()
147
prop_value_p->value = ecma_make_boolean_value (flags &
RE_FLAG_GLOBAL
);
in ecma_regexp_create_props()
184
prop_value_p->value = ecma_make_boolean_value (flags &
RE_FLAG_GLOBAL
);
in ecma_regexp_update_props()
1694
if (bc_p->header.status_flags & (
RE_FLAG_GLOBAL
| RE_FLAG_STICKY))
in ecma_regexp_exec_helper()
1795
if (re_ctx.flags &
RE_FLAG_GLOBAL
)
in ecma_regexp_exec_helper()
1845
if (re_ctx.flags & (
RE_FLAG_GLOBAL
| RE_FLAG_STICKY))
in ecma_regexp_exec_helper()
2623
if (!(re_ctx.flags &
RE_FLAG_GLOBAL
))
in ecma_regexp_replace_helper_fast()
/third_party/jerryscript/jerry-core/parser/js/
H
A
D
js-lexer.c
2784
flag =
RE_FLAG_GLOBAL
;
in lexer_construct_regexp_object()
/third_party/jerryscript/jerry-core/api/
H
A
D
jerry.c
85
JERRY_STATIC_ASSERT ((int)
RE_FLAG_GLOBAL
== (int) JERRY_REGEXP_FLAG_GLOBAL
Completed in 13 milliseconds