/third_party/jerryscript/jerry-core/ecma/operations/ |
H A 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/ |
H A 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/ |
H A D | test_object.c | 304 bool has_property; in Has() local 305 NODE_API_CALL(env, napi_has_property(env, args[0], args[1], &has_property)); in Has() 308 NODE_API_CALL(env, napi_get_boolean(env, has_property, &ret)); in Has() 340 bool has_property; in HasNamed() local 341 NODE_API_CALL(env, napi_has_named_property(env, args[0], key, &has_property)); in HasNamed() 344 NODE_API_CALL(env, napi_get_boolean(env, has_property, &ret)); in HasNamed() 368 bool has_property; in HasOwn() local 369 NODE_API_CALL(env, napi_has_own_property(env, args[0], args[1], &has_property)); in HasOwn() 372 NODE_API_CALL(env, napi_get_boolean(env, has_property, &ret)); in HasOwn()
|
/third_party/jerryscript/tests/unit-core/ |
H A D | test-objects-foreach.cpp | 172 bool has_property = (!jerry_value_is_error (result) && jerry_get_boolean_value (result)); in find_test_object_by_property() local 175 if (has_property) in find_test_object_by_property() 183 return !has_property; in find_test_object_by_property()
|
/third_party/node/deps/v8/src/objects/ |
H A D | property-descriptor.cc | 27 Maybe<bool> has_property = JSReceiver::HasProperty(&it); in GetPropertyIfPresent() local 29 if (has_property.IsNothing()) return false; in GetPropertyIfPresent() 31 if (has_property.FromJust() == true) { in GetPropertyIfPresent()
|
H A D | lookup.h | 224 bool has_property);
|
H A D | lookup.cc | 50 PropertyDetails details, bool has_property) in LookupIterator() 53 has_property_(has_property), in LookupIterator() 48 LookupIterator(Isolate* isolate, Handle<Object> receiver, Handle<Name> name, Handle<Map> transition_map, PropertyDetails details, bool has_property) LookupIterator() argument
|
/third_party/jerryscript/jerry-ext/module/ |
H A 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/libinput/src/ |
H A D | quirks.c | 160 bool has_property; /* to check for empty sections */ member 675 s->has_property = true; in parse_model() 868 s->has_property = true; in parse_attr() 1010 (!section->has_match || !section->has_property)) { in parse_file() 1069 if ((!section->has_match || !section->has_property)) { in parse_file()
|
/third_party/protobuf/php/ext/google/protobuf/ |
H A D | message.c | 940 h->has_property = Message_has_property; in Message_ModuleInit()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-js.cc | 1050 Local<String> property, bool* has_property, in GetOptionalIntegerProperty() 1061 if (has_property != nullptr) *has_property = false; in GetOptionalIntegerProperty() 1065 if (has_property != nullptr) *has_property = true; in GetOptionalIntegerProperty() 1047 GetOptionalIntegerProperty(v8::Isolate* isolate, ErrorThrower* thrower, Local<Context> context, Local<v8::Object> object, Local<String> property, bool* has_property, int64_t* result, int64_t lower_bound, uint64_t upper_bound) GetOptionalIntegerProperty() argument
|