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:replace_ctx
(Results
1 - 2
of
2
) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H
A
D
ecma-builtin-string-prototype.c
441
ecma_replace_context_t
replace_ctx
;
in ecma_builtin_string_prototype_object_replace()
local
442
replace_ctx
.capture_count = 0;
in ecma_builtin_string_prototype_object_replace()
443
replace_ctx
.u.captures_p = NULL;
in ecma_builtin_string_prototype_object_replace()
445
replace_ctx
.replace_str_p = NULL;
in ecma_builtin_string_prototype_object_replace()
448
replace_ctx
.replace_str_p = ecma_op_to_string (replace_value);
in ecma_builtin_string_prototype_object_replace()
449
if (
replace_ctx
.replace_str_p == NULL)
in ecma_builtin_string_prototype_object_replace()
456
replace_ctx
.string_p = ecma_string_get_chars (input_str_p,
in ecma_builtin_string_prototype_object_replace()
457
&(
replace_ctx
.string_size),
in ecma_builtin_string_prototype_object_replace()
472
if (
replace_ctx
.string_size >= search_size)
in ecma_builtin_string_prototype_object_replace()
474
replace_ctx
in ecma_builtin_string_prototype_object_replace()
[all...]
/third_party/jerryscript/jerry-core/ecma/operations/
H
A
D
ecma-regexp-object.c
2705
ecma_replace_context_t
replace_ctx
;
in ecma_regexp_replace_helper()
local
2706
replace_ctx
.index = 0;
in ecma_regexp_replace_helper()
2718
replace_ctx
.replace_str_p = NULL;
in ecma_regexp_replace_helper()
2721
replace_ctx
.replace_str_p = ecma_op_to_string (replace_arg);
in ecma_regexp_replace_helper()
2723
if (
replace_ctx
.replace_str_p == NULL)
in ecma_regexp_replace_helper()
2775
result = ecma_regexp_replace_helper_fast (&
replace_ctx
,
in ecma_regexp_replace_helper()
2810
result = ecma_op_to_length (lastindex_value, &
replace_ctx
.index);
in ecma_regexp_replace_helper()
2818
if (
replace_ctx
.index > string_length)
in ecma_regexp_replace_helper()
2838
result = ecma_regexp_replace_helper_fast (&
replace_ctx
,
in ecma_regexp_replace_helper()
2964
replace_ctx
in ecma_regexp_replace_helper()
[all...]
Completed in 9 milliseconds