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:is_configurable
(Results
1 - 9
of
9
) sorted by relevance
/third_party/jerryscript/tests/unit-core/
H
A
D
test-api-property.cpp
63
TEST_ASSERT (prop_desc.
is_configurable
== false);
in HWTEST_F()
88
TEST_ASSERT (prop_desc.
is_configurable
== false);
in HWTEST_F()
124
TEST_ASSERT (prop_desc.
is_configurable
== false);
in HWTEST_F()
H
A
D
test-symbol.cpp
120
TEST_ASSERT (prop_desc.
is_configurable
== true);
in HWTEST_F()
138
prop_desc.
is_configurable
= false;
in HWTEST_F()
152
TEST_ASSERT (prop_desc.
is_configurable
== false);
in HWTEST_F()
/third_party/jerryscript/jerry-core/ecma/operations/
H
A
D
ecma-conversion.c
707
uint32_t
is_configurable
= (ecma_op_to_boolean (configurable_prop_value) ? ECMA_PROP_IS_CONFIGURABLE
in ecma_op_to_property_descriptor()
local
710
prop_desc.flags |= (uint16_t) (ECMA_PROP_IS_CONFIGURABLE_DEFINED |
is_configurable
);
in ecma_op_to_property_descriptor()
/third_party/jerryscript/tests/unit-ext/
H
A
D
test-ext-method-register.c
49
prop_desc.
is_configurable
= false;
in freeze_property()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H
A
D
ecma-builtin-object.c
655
bool
is_configurable
= (prop_desc.flags & ECMA_PROP_IS_CONFIGURABLE);
in ecma_builtin_object_test_integrity_level()
local
662
||
is_configurable
)
in ecma_builtin_object_test_integrity_level()
/third_party/jerryscript/jerry-core/include/
H
A
D
jerryscript-core.h
190
bool
is_configurable
;
member
/third_party/jerryscript/jerry-core/ecma/base/
H
A
D
ecma-helpers.c
1120
bool
is_configurable
) /**< new value for configurable flag */
in ecma_set_property_configurable_attr()
1125
if (
is_configurable
)
in ecma_set_property_configurable_attr()
1119
ecma_set_property_configurable_attr(ecma_property_t *property_p, bool
is_configurable
)
ecma_set_property_configurable_attr()
argument
H
A
D
ecma-helpers.h
472
void ecma_set_property_configurable_attr (ecma_property_t *property_p, bool
is_configurable
);
/third_party/jerryscript/jerry-core/api/
H
A
D
jerry.c
2575
prop_desc_p->
is_configurable
= false;
in jerry_init_property_descriptor_fields()
2622
flags |= (uint32_t) (ECMA_PROP_IS_CONFIGURABLE_DEFINED | (prop_desc_p->
is_configurable
? ECMA_PROP_IS_CONFIGURABLE
in jerry_define_own_property()
2732
prop_desc_p->
is_configurable
= (prop_desc.flags & ECMA_PROP_IS_CONFIGURABLE) != 0;
in jerry_get_own_property_descriptor()
Completed in 12 milliseconds