HomeSort by relevance Sort by last modified time
    Searched full:hasproperty (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/webkit/WebCore/bindings/js/
JSHTMLCanvasElementCustom.cpp 64 if (jsAttrs->hasProperty(exec, alpha))
67 if (jsAttrs->hasProperty(exec, depth))
70 if (jsAttrs->hasProperty(exec, stencil))
73 if (jsAttrs->hasProperty(exec, antialias))
76 if (jsAttrs->hasProperty(exec, premultipliedAlpha))
JSStorageCustom.cpp 53 // Since hasProperty() would end up calling canGetItemsForName() and be fooled, we need to check
60 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
79 // Since hasProperty() would end up calling canGetItemsForName() and be fooled, we need to check
86 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
JSPluginElementFunctions.cpp 83 if (!runtimeObject->hasProperty(exec, propertyName))
94 if (!runtimeObject->hasProperty(exec, propertyName))
110 if (!runtimeObject->hasProperty(exec, propertyName))
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/
LSDocumentBuilderFactory.java 362 private boolean hasProperty(String parameter) {
378 return!hasProperty("cdata-sections");
386 return!hasProperty("entities");
395 return!hasProperty("element-content-whitespace");
403 return hasProperty("namespaces");
411 return hasProperty("validate");
  /external/webkit/WebCore/bridge/
NP_jsobject.cpp 257 if (o->_class->hasProperty && o->_class->getProperty) {
258 if (o->_class->hasProperty(o, propertyName))
307 if (!obj->imp->hasProperty(exec, identifierFromNPIdentifier(i->string()))) {
312 if (!obj->imp->hasProperty(exec, i->number())) {
343 bool result = obj->imp->hasProperty(exec, identifierFromNPIdentifier(i->string()));
348 bool result = obj->imp->hasProperty(exec, i->number());
353 if (o->_class->hasProperty)
354 return o->_class->hasProperty(o, propertyName);
  /external/webkit/WebCore/bridge/c/
c_class.cpp 107 if (_isa->hasProperty && _isa->hasProperty(obj, ident)){
  /external/webkit/JavaScriptCore/API/
JSCallbackObjectFunctions.h 118 if (JSObjectHasPropertyCallback hasProperty = jsClass->hasProperty) {
122 if (hasProperty(ctx, thisRef, propertyNameRef.get())) {
600 return throwError(exec, ReferenceError, "hasProperty callback returned true for a property that doesn't exist.");
JSClassRef.h 98 JSObjectHasPropertyCallback hasProperty;
JSClassRef.cpp 63 , hasProperty(definition->hasProperty)
JSObjectRef.cpp 249 return jsObject->hasProperty(exec, propertyName->identifier(&exec->globalData()));
277 if (attributes && !jsObject->hasProperty(exec, name))
JSObjectRef.h 119 @discussion If you named your function HasProperty, you would declare it like this:
121 bool HasProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
123 If this function returns false, the hasProperty request forwards to object's statically declared properties, then its parent class chain (which includes the default object class), then its prototype chain.
127 If this callback is NULL, the getProperty callback will be used to service hasProperty requests.
321 @field hasProperty The callback invoked when determining whether an object has a property. If this field is NULL, getProperty is called instead. The hasProperty callback enables optimization in cases where only a property's existence needs to be known, not its value, and computing its value is expensive.
341 A NULL callback specifies that the default object callback should substitute, except in the case of hasProperty, where it specifies that getProperty should substitute.
355 JSObjectHasPropertyCallback hasProperty;
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSPropertyNameIterator.cpp 98 if (!base->hasProperty(exec, Identifier(exec, asString(identifier)->value(exec))))
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.4-1.js 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
10.1.4-10.js 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
10.1.4-2.js 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
10.1.4-3.js 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
10.1.4-4.js 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
10.1.4-5.js 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
10.1.4-6.js 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
10.1.4-7.js 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
10.1.4-8.js 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
10.1.4-9.js 44 2. Call the [[HasProperty]] method of Result(l), passing the Identifier as
  /external/webkit/WebCore/bindings/v8/
V8NPObject.cpp 177 if (npObject->_class->hasProperty && npObject->_class->hasProperty(npObject, identifier)
246 if (npObject->_class->hasProperty && npObject->_class->hasProperty(npObject, identifier)
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.h 128 bool hasProperty(uint32_t objectID, const JSC::Identifier& propertyName);
129 bool hasProperty(uint32_t objectID, unsigned propertyName);
  /external/webkit/WebCore/
ChangeLog-2005-08-23     [all...]

Completed in 1593 milliseconds

1 2 3