/third_party/boost/tools/build/test/ |
D | TestToolset.py | 36 def has_property(name, properties): function 49 if not has_property("variant", properties): 51 if not has_property("threading", properties): 53 if not has_property("exception-handling", properties): 55 if not has_property("link", properties): 57 if not has_property("rtti", properties): 59 if not has_property("runtime-link", properties): 61 if not has_property("strip", properties): 63 if not has_property("target-os", properties): 73 if has_property("address-model", properties): [all …]
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-get-put-value.c | 258 ecma_value_t has_property = ecma_op_object_has_property (binding_obj_p, name_p); in ecma_op_put_value_lex_env_base() local 261 if (ECMA_IS_VALUE_ERROR (has_property)) in ecma_op_put_value_lex_env_base() 263 return has_property; in ecma_op_put_value_lex_env_base() 267 if (ecma_is_value_true (has_property)) in ecma_op_put_value_lex_env_base()
|
/third_party/jerryscript/jerry-ext/handler/ |
D | handler-register.c | 181 bool has_property = false; in jerryx_has_property_str() local 188 has_property = jerry_get_boolean_value (has_prop_val); in jerryx_has_property_str() 194 return has_property; in jerryx_has_property_str()
|
/third_party/node/test/js-native-api/test_object/ |
D | test_object.c | 194 bool has_property; in Has() local 195 NAPI_CALL(env, napi_has_property(env, args[0], args[1], &has_property)); in Has() 198 NAPI_CALL(env, napi_get_boolean(env, has_property, &ret)); in Has() 230 bool has_property; in HasNamed() local 231 NAPI_CALL(env, napi_has_named_property(env, args[0], key, &has_property)); in HasNamed() 234 NAPI_CALL(env, napi_get_boolean(env, has_property, &ret)); in HasNamed() 258 bool has_property; in HasOwn() local 259 NAPI_CALL(env, napi_has_own_property(env, args[0], args[1], &has_property)); in HasOwn() 262 NAPI_CALL(env, napi_get_boolean(env, has_property, &ret)); in HasOwn()
|
/third_party/jerryscript/tests/unit-core/ |
D | test-objects-foreach.c | 169 bool has_property = (!jerry_value_is_error (result) && jerry_get_boolean_value (result)); in find_test_object_by_property() local 172 if (has_property) in find_test_object_by_property() 180 return !has_property; in find_test_object_by_property()
|
/third_party/jerryscript/jerry-ext/module/ |
D | module.c | 129 bool has_property = jerry_get_boolean_value (js_has_property); in jerryx_module_check_cache() local 132 if (has_property) in jerryx_module_check_cache()
|
/third_party/glib/gio/ |
D | gnetworkmonitornm.c | 302 has_property (GDBusProxy *proxy, in has_property() function 356 if (!has_property (proxy, "Connectivity")) in g_network_monitor_nm_initable_init()
|
/third_party/boost/boost/pending/ |
D | property.hpp | 258 template < class P > struct has_property : boost::mpl::true_ struct 261 template <> struct has_property< no_property > : boost::mpl::false_ struct
|
/third_party/libinput/src/ |
D | quirks.c | 147 bool has_property; /* to check for empty sections */ member 595 s->has_property = true; in parse_model() 762 s->has_property = true; in parse_attr() 907 (!section->has_match || !section->has_property)) { in parse_file() 966 if ((!section->has_match || !section->has_property)) { in parse_file()
|
/third_party/protobuf/php/ext/google/protobuf/ |
D | message.c | 940 h->has_property = Message_has_property; in Message_ModuleInit()
|
/third_party/quickjs/ |
D | quickjs.h | 464 int (*has_property)(JSContext *ctx, JSValueConst obj, JSAtom atom); member
|
D | quickjs.c | 7809 if (em && em->has_property) { in JS_HasProperty() 7812 ret = em->has_property(ctx, obj1, prop); in JS_HasProperty() 27662 .has_property = js_module_ns_has, 45157 .has_property = js_proxy_has,
|
/third_party/boost/boost/graph/ |
D | adjacency_matrix.hpp | 472 typename mpl::if_< typename has_property< edge_property_type >::type,
|
/third_party/boost/boost/graph/detail/ |
D | adjacency_list.hpp | 2301 typedef typename has_property< EdgeProperty >::type has_edge_property;
|
/third_party/jerryscript/docs/ |
D | 02.API-REFERENCE.md | 6635 jerry_value_t has_property = jerry_has_property (candidate, info_p->property_name); 6636 bool object_found = jerry_get_boolean_value (has_property); 6644 jerry_release_value (has_property);
|