HomeSort by relevance Sort by last modified time
    Searched defs:hasProperty (Results 1 - 7 of 7) sorted by null

  /external/webkit/JavaScriptCore/API/
JSClassRef.h 98 JSObjectHasPropertyCallback hasProperty;
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/WebKit/chromium/src/
WebBindings.cpp 115 bool WebBindings::hasProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName)
  /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/JavaScriptCore/runtime/
JSObject.cpp 188 bool JSObject::hasProperty(ExecState* exec, const Identifier& propertyName) const
194 bool JSObject::hasProperty(ExecState* exec, unsigned propertyName) const
  /external/webkit/WebCore/bridge/
npruntime.h 282 NPHasPropertyFunctionPtr hasProperty;
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 322 milliseconds