Home
last modified time | relevance | path

Searched refs:is_writable (Results 1 – 13 of 13) sorted by relevance

/third_party/jerryscript/tests/unit-core/
Dtest-api-property.cpp59 TEST_ASSERT (prop_desc.is_writable == false);
86 TEST_ASSERT (prop_desc.is_writable == false);
122 TEST_ASSERT (prop_desc.is_writable == false);
Dtest-symbol.cpp118 TEST_ASSERT (prop_desc.is_writable == true);
134 prop_desc.is_writable = false;
148 TEST_ASSERT (prop_desc.is_writable == false);
/third_party/node/deps/v8/src/objects/
Dproperty-descriptor-object.tq12 is_writable: bool: 1 bit;
/third_party/python/Modules/
Dmmapmodule.c366 is_writable(mmap_object *self) in is_writable() function
400 if (!is_writable(self)) { in mmap_write_method()
427 if (!is_writable(self)) in mmap_write_byte_method()
675 !is_writable(self)) { in mmap_move_method()
969 if (!is_writable(self)) in mmap_ass_item()
981 if (!is_writable(self)) in mmap_ass_subscript()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-conversion.c745 uint32_t is_writable = (ecma_op_to_boolean (writable_prop_value) ? ECMA_PROP_IS_WRITABLE in ecma_op_to_property_descriptor() local
748 prop_desc.flags |= (uint16_t) (ECMA_PROP_IS_WRITABLE_DEFINED | is_writable); in ecma_op_to_property_descriptor()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers.c1044 bool is_writable) /**< new value for writable flag */ in ecma_set_property_writable_attr() argument
1048 if (is_writable) in ecma_set_property_writable_attr()
Decma-helpers.h468 void ecma_set_property_writable_attr (ecma_property_t *property_p, bool is_writable);
/third_party/python/Tools/c-analyzer/c_common/
Dfsutil.py323 def is_writable(file, *, user=None, check=False): function
/third_party/jerryscript/jerry-core/include/
Djerryscript-core.h178 bool is_writable; member
/third_party/node/src/
Dnode_http2.cc2186 if (!is_writable()) in SubmitResponse()
2393 if (!is_writable() || is_destroyed()) { in DoWrite()
2515 if (amount == 0 && stream->is_writable()) { in OnRead()
2519 if (stream->available_outbound_length_ > 0 || !stream->is_writable()) { in OnRead()
2526 if (stream->available_outbound_length_ == 0 && !stream->is_writable()) { in OnRead()
Dnode_http2.h333 bool is_writable() const { in is_writable() function
/third_party/jerryscript/jerry-core/api/
Djerry.c2571 prop_desc_p->is_writable = false; in jerry_init_property_descriptor_fields()
2641 …flags |= (uint32_t) (ECMA_PROP_IS_WRITABLE_DEFINED | (prop_desc_p->is_writable ? ECMA_PROP_IS_WRIT… in jerry_define_own_property()
2737 …prop_desc_p->is_writable = prop_desc_p->is_writable_defined ? (prop_desc.flags & ECMA_PROP_IS_WRIT… in jerry_get_own_property_descriptor()
/third_party/jerryscript/docs/
D02.API-REFERENCE.md380 bool is_writable;