Searched refs:enumerable (Results 1 - 16 of 16) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DPropertyDescriptor.cpp44 bool PropertyDescriptor::enumerable() const function in class:JSC::PropertyDescriptor
138 void PropertyDescriptor::setEnumerable(bool enumerable) argument
140 if (enumerable)
H A DPropertyDescriptor.h45 JS_EXPORT_PRIVATE bool enumerable() const;
H A DCommonIdentifiers.h76 macro(enumerable) \
H A DObjectConstructor.cpp172 description->putDirect(exec->vm(), exec->propertyNames().enumerable, jsBoolean(descriptor.enumerable()), 0);
216 if (description->getPropertySlot(exec, exec->propertyNames().enumerable, enumerableSlot)) {
217 desc.setEnumerable(enumerableSlot.getValue(exec, exec->propertyNames().enumerable).toBoolean(exec));
H A DStringObject.cpp107 if (descriptor.enumerablePresent() && descriptor.enumerable()) {
109 throwError(exec, createTypeError(exec, ASCIILiteral("Attempting to change enumerable attribute of unconfigurable property.")));
H A DRegExpObject.cpp146 if (descriptor.enumerablePresent() && descriptor.enumerable())
147 return reject(exec, shouldThrow, "Attempting to change enumerable attribute of unconfigurable property.");
H A DJSFunction.cpp438 if (descriptor.enumerablePresent() && descriptor.enumerable()) {
440 throwError(exec, createTypeError(exec, ASCIILiteral("Attempting to change enumerable attribute of unconfigurable property.")));
H A DJSObject.cpp1430 return descriptor.enumerable();
1763 if (descriptor.enumerablePresent() && current.enumerable() != descriptor.enumerable())
1764 return reject(exec, throwException, "Attempting to change enumerable attribute of unconfigurable property.");
2571 if (descriptor.enumerablePresent() && descriptor.enumerable() != current.enumerable()) {
2573 throwError(exec, createTypeError(exec, ASCIILiteral("Attempting to change enumerable attribute of unconfigurable property.")));
H A DJSArray.cpp89 if (descriptor.enumerablePresent() && descriptor.enumerable())
90 return reject(exec, throwException, "Attempting to change enumerable attribute of unconfigurable property.");
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DRemoteObject.js454 this.enumerable = descriptor ? !!descriptor.enumerable : true;
H A DObjectPropertiesSection.js212 if (!this.property.enumerable)
H A DDOMAgent.js1317 Object.defineProperty(recepients[j], touchEvents[i], { value: null, writable: true, configurable: true, enumerable: true });
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInjectedScriptSource.js305 if (!("enumerable" in descriptor))
306 descriptor.enumerable = false;
403 descriptor = { name: name, value: object[name], writable: false, configurable: false, enumerable: false};
425 descriptors.push({ name: "__proto__", value: object.__proto__, writable: true, configurable: true, enumerable: false, isOwn: true});
996 if (!("value" in descriptor) || !descriptor.enumerable) {
H A DInjectedScriptCanvasModuleSource.js793 enumerable: false,
843 enumerable: true
/macosx-10.9.5/ruby-104/ruby/
H A Denum.c731 * Returns the first element, or the first +n+ elements, of the enumerable.
732 * If the enumerable is empty, the first form returns <code>nil</code>, and the
1378 * maximum value in the enumerable. The first form assumes all
2371 VALUE enumerable; local
2375 enumerable = rb_ivar_get(enumerator, rb_intern("chunk_enumerable"));
2385 rb_block_call(enumerable, id_each, 0, 0, chunk_ii, arg);
2487 enum_chunk(int argc, VALUE *argv, VALUE enumerable) argument
2497 rb_ivar_set(enumerator, rb_intern("chunk_enumerable"), enumerable);
2545 VALUE enumerable; local
2549 enumerable
2704 enum_slice_before(int argc, VALUE *argv, VALUE enumerable) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/openssl/
H A Dossl_asn1.c22 static VALUE join_der(VALUE enumerable);
745 join_der(VALUE enumerable) argument
748 rb_block_call(enumerable, rb_intern("each"), 0, 0, join_der_i, str);

Completed in 349 milliseconds