HomeSort by relevance Sort by last modified time
    Searched refs:hasProperty (Results 1 - 25 of 28) sorted by null

1 2

  /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))
  /external/webkit/WebCore/bridge/c/
c_class.cpp 107 if (_isa->hasProperty && _isa->hasProperty(obj, ident)){
  /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);
npruntime.h 282 NPHasPropertyFunctionPtr hasProperty;
  /external/webkit/JavaScriptCore/API/
JSClassRef.h 98 JSObjectHasPropertyCallback hasProperty;
JSClassRef.cpp 63 , hasProperty(definition->hasProperty)
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.");
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...]
JSObjectRef.cpp 249 return jsObject->hasProperty(exec, propertyName->identifier(&exec->globalData()));
277 if (attributes && !jsObject->hasProperty(exec, name))
  /external/webkit/JavaScriptCore/runtime/
JSPropertyNameIterator.cpp 98 if (!base->hasProperty(exec, Identifier(exec, asString(identifier)->value(exec))))
JSObject.cpp 188 bool JSObject::hasProperty(ExecState* exec, const Identifier& propertyName) const
194 bool JSObject::hasProperty(ExecState* exec, unsigned propertyName) const
JSObject.h 114 bool hasProperty(ExecState*, const Identifier& propertyName) const;
115 bool hasProperty(ExecState*, unsigned propertyName) const;
JSONObject.cpp 335 if (!value.isObject() || !asObject(value)->hasProperty(m_exec, m_exec->globalData().propertyNames->toJSON))
  /external/webkit/WebKit/chromium/public/
WebBindings.h 79 WEBKIT_API static bool hasProperty(NPP, NPObject*, NPIdentifier propertyName);
  /external/webkit/WebCore/bindings/v8/
NPV8Object.cpp 307 if (npObject->_class->hasProperty && npObject->_class->getProperty) {
308 if (npObject->_class->hasProperty(npObject, propertyName))
382 if (npObject->_class->hasProperty)
383 return npObject->_class->hasProperty(npObject, propertyName);
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);
NetscapePluginInstanceProxy.mm     [all...]
NetscapePluginHostProxy.mm 806 returnValue = instanceProxy->hasProperty(objectID, propertyNameIdentifier);
808 returnValue = instanceProxy->hasProperty(objectID, identifier->number());
    [all...]
  /external/webkit/JavaScriptGlue/
JSUtils.cpp 331 if (object->hasProperty(exec, propName))
  /external/webkit/WebKit/chromium/src/
WebBindings.cpp 115 bool WebBindings::hasProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName)
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 502 if (!exception->hasProperty(callFrame, Identifier(callFrame, "line")) &&
503 !exception->hasProperty(callFrame, Identifier(callFrame, "sourceId")) &&
504 !exception->hasProperty(callFrame, Identifier(callFrame, "sourceURL")) &&
505 !exception->hasProperty(callFrame, Identifier(callFrame, expressionBeginOffsetPropertyName)) &&
506 !exception->hasProperty(callFrame, Identifier(callFrame, expressionCaretOffsetPropertyName)) &&
507 !exception->hasProperty(callFrame, Identifier(callFrame, expressionEndOffsetPropertyName))) {
    [all...]

Completed in 681 milliseconds

1 2