Home
last modified time | relevance | path

Searched refs:target_desc (Results 1 – 12 of 12) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-proxy-object.c722 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/flutter/skia/third_party/externals/angle2/scripts/
Dgen_angle_gn_info_json.py77 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/skia/third_party/externals/angle2/scripts/
Dgen_angle_gn_info_json.py77 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/
Dcygwinccompiler.py172 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,
Dmsvc9compiler.py566 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:
Dunixccompiler.py148 def link(self, target_desc, objects, argument
176 if target_desc == CCompiler.EXECUTABLE:
Dbcppcompiler.py172 target_desc, argument
203 if target_desc == CCompiler.EXECUTABLE:
D_msvccompiler.py435 target_desc, argument
467 ldflags = self._ldflags[target_desc, debug]
Dmsvccompiler.py454 target_desc, argument
486 if target_desc == CCompiler.EXECUTABLE:
Dccompiler.py618 target_desc, argument
/third_party/python/Doc/distutils/
Dapiref.rst651 ….. method:: CCompiler.link(target_desc, objects, output_filename[, output_dir=None, libraries=None…
/third_party/quickjs/
Dquickjs.c44702 JSPropertyDescriptor result_desc, target_desc; in js_proxy_get_own_property() local
44726 target_desc_ret = JS_GetOwnPropertyInternal(ctx, &target_desc, p, prop); in js_proxy_get_own_property()
44732 js_free_desc(ctx, &target_desc); in js_proxy_get_own_property()
44735 if (!(target_desc.flags & JS_PROP_CONFIGURABLE) || !p->extensible) in js_proxy_get_own_property()
44760 if (!check_define_prop_flags(target_desc.flags, flags1)) in js_proxy_get_own_property()
44767 if (!target_desc_ret || (target_desc.flags & JS_PROP_CONFIGURABLE)) in js_proxy_get_own_property()
44772 (target_desc.flags & JS_PROP_WRITABLE) != 0) { in js_proxy_get_own_property()