Home
last modified time | relevance | path

Searched refs:HasProperty (Results 1 – 13 of 13) sorted by relevance

/third_party/node/deps/npm/node_modules/es-abstract/operations/
D2015.js46 HasProperty: 'https://ecma-international.org/ecma-262/6.0/#sec-hasproperty', property
D2016.js47 HasProperty: 'https://ecma-international.org/ecma-262/7.0/#sec-hasproperty', property
D2017.js48 HasProperty: 'https://ecma-international.org/ecma-262/8.0/#sec-hasproperty', property
/third_party/node/deps/npm/node_modules/typedarray/
Dindex.js16 HasProperty: function(o, p) { return p in o; },
65 …if (ECMAScript.HasProperty(desc, 'get') && Object.prototype.__defineGetter__) { Object.prototype._…
66 …if (ECMAScript.HasProperty(desc, 'set') && Object.prototype.__defineSetter__) { Object.prototype._…
67 if (ECMAScript.HasProperty(desc, 'value')) { o[p] = desc.value; }
/third_party/node/test/js-native-api/test_object/
Dtest_null.c89 static napi_value HasProperty(napi_env env, napi_callback_info info) { in HasProperty() function
373 DECLARE_NAPI_PROPERTY("hasProperty", HasProperty), in init_test_null()
/third_party/node/deps/npm/node_modules/es-abstract/
Des2015.js419 HasProperty: function HasProperty(O, P) {
DCHANGELOG.md45 …* [New] ES2015+: add `CompletePropertyDescriptor`, `Set`, `HasOwnProperty`, `HasProperty`, `IsConc…
/third_party/node/deps/npm/node_modules/es-abstract/test/
Dtests.js996 function () { ES.HasProperty(primitive, 'key'); },
1004 function () { ES.HasProperty({}, nonKey); },
1010 t.equal(ES.HasProperty({}, 'nope'), false, 'object does not have nonexistent properties');
1011 t.equal(ES.HasProperty({}, 'toString'), true, 'object has inherited properties');
1013 ES.HasProperty({ toString: 1 }, 'toString'),
1017 t.equal(ES.HasProperty({ a: 1 }, 'a'), true, 'object has own properties');
/third_party/ffmpeg/libavcodec/
Damfenc.c733 if (data->pVtbl->HasProperty(data, L"av_frame_ref")) { in ff_amf_receive_packet()
/third_party/node/tools/gyp/pylib/gyp/
Dxcodeproj_file.py864 def HasProperty(self, key): member in XCObject
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dxcodeproj_file.py816 def HasProperty(self, key): member in XCObject
/third_party/node/tools/
Dlint-md.mjs27505 HasProperty: function(o, p) { return p in o; },
27554 …if (ECMAScript.HasProperty(desc, 'get') && Object.prototype.__defineGetter__) { Object.prototype._…
27555 …if (ECMAScript.HasProperty(desc, 'set') && Object.prototype.__defineSetter__) { Object.prototype._…
27556 if (ECMAScript.HasProperty(desc, 'value')) { o[p] = desc.value; }
/third_party/chromium/patch/
D0001-cve.patch150704 - if (node->op()->HasProperty(Operator::kPure)) {
150706 - if (node_input->op()->HasProperty(Operator::kPure)) return true;