/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-proxy-object.c | 722 ecma_property_descriptor_t target_desc; in ecma_proxy_object_get_own_property_descriptor() local 723 …rget_status = ecma_op_object_get_own_property_descriptor (target_obj_p, prop_name_p, &target_desc); in ecma_proxy_object_get_own_property_descriptor() 741 if (!(target_desc.flags & ECMA_PROP_IS_CONFIGURABLE)) in ecma_proxy_object_get_own_property_descriptor() 743 ecma_free_property_descriptor (&target_desc); in ecma_proxy_object_get_own_property_descriptor() 749 ecma_free_property_descriptor (&target_desc); in ecma_proxy_object_get_own_property_descriptor() 779 ecma_free_property_descriptor (&target_desc); in ecma_proxy_object_get_own_property_descriptor() 796 ecma_free_property_descriptor (&target_desc); in ecma_proxy_object_get_own_property_descriptor() 805 … (ecma_is_value_true (target_status) ? &target_desc : NULL), in ecma_proxy_object_get_own_property_descriptor() 813 target_is_configurable = ((target_desc.flags & ECMA_PROP_IS_CONFIGURABLE) != 0); in ecma_proxy_object_get_own_property_descriptor() 814 ecma_free_property_descriptor (&target_desc); in ecma_proxy_object_get_own_property_descriptor() [all …]
|
/third_party/skia/third_party/externals/angle2/scripts/ |
D | gen_angle_gn_info_json.py | 77 target_desc = get_json_description(gn_out, target) 78 if (target in target_desc and target not in json_descriptions): 79 json_descriptions[target] = target_desc[target] 80 load_json_deps(target_desc, gn_out, target, json_descriptions)
|
/third_party/python/Lib/distutils/ |
D | cygwinccompiler.py | 172 def link(self, target_desc, objects, output_filename, output_dir=None, argument 188 (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")): 241 UnixCCompiler.link(self, target_desc, objects, output_filename,
|
D | msvc9compiler.py | 566 target_desc, argument 598 if target_desc == CCompiler.EXECUTABLE: 648 mfinfo = self.manifest_get_embed_info(target_desc, ld_args) 672 def manifest_get_embed_info(self, target_desc, ld_args): argument 684 if target_desc == CCompiler.EXECUTABLE:
|
D | unixccompiler.py | 148 def link(self, target_desc, objects, argument 176 if target_desc == CCompiler.EXECUTABLE:
|
D | bcppcompiler.py | 172 target_desc, argument 203 if target_desc == CCompiler.EXECUTABLE:
|
D | _msvccompiler.py | 435 target_desc, argument 467 ldflags = self._ldflags[target_desc, debug]
|
D | msvccompiler.py | 454 target_desc, argument 486 if target_desc == CCompiler.EXECUTABLE:
|
D | ccompiler.py | 618 target_desc, argument
|
/third_party/node/deps/v8/src/objects/ |
D | objects.cc | 1246 PropertyDescriptor target_desc; in CheckGetSetTrapResult() local 1248 JSReceiver::GetOwnPropertyDescriptor(isolate, target, name, &target_desc); in CheckGetSetTrapResult() 1256 bool inconsistent = PropertyDescriptor::IsDataDescriptor(&target_desc) && in CheckGetSetTrapResult() 1257 !target_desc.configurable() && in CheckGetSetTrapResult() 1258 !target_desc.writable() && in CheckGetSetTrapResult() 1259 !trap_result->SameValue(*target_desc.value()); in CheckGetSetTrapResult() 1265 target_desc.value(), trap_result), in CheckGetSetTrapResult() 1277 inconsistent = PropertyDescriptor::IsAccessorDescriptor(&target_desc) && in CheckGetSetTrapResult() 1278 !target_desc.configurable() && in CheckGetSetTrapResult() 1279 target_desc.get()->IsUndefined(isolate) && in CheckGetSetTrapResult() [all …]
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 911 @@ -214,28 +217,21 @@ def link(self, target_desc, objects, output_filename, output_dir=None, 932 # (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")): 945 UnixCCompiler.link(self, target_desc, objects, output_filename,
|
/third_party/python/Doc/distutils/ |
D | apiref.rst | 651 ….. method:: CCompiler.link(target_desc, objects, output_filename[, output_dir=None, libraries=None…
|