Home
last modified time | relevance | path

Searched refs:has_property (Results 1 – 15 of 15) sorted by relevance

/third_party/boost/tools/build/test/
DTestToolset.py36 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/
Decma-get-put-value.c258 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/
Dhandler-register.c181 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/
Dtest_object.c194 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/
Dtest-objects-foreach.c169 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/
Dmodule.c129 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/
Dgnetworkmonitornm.c302 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/
Dproperty.hpp258 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/
Dquirks.c147 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/
Dmessage.c940 h->has_property = Message_has_property; in Message_ModuleInit()
/third_party/quickjs/
Dquickjs.h464 int (*has_property)(JSContext *ctx, JSValueConst obj, JSAtom atom); member
Dquickjs.c7809 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/
Dadjacency_matrix.hpp472 typename mpl::if_< typename has_property< edge_property_type >::type,
/third_party/boost/boost/graph/detail/
Dadjacency_list.hpp2301 typedef typename has_property< EdgeProperty >::type has_edge_property;
/third_party/jerryscript/docs/
D02.API-REFERENCE.md6635 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);