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

1 2

  /external/webkit/Source/WebCore/bindings/js/
JSDataGridColumnListCustom.cpp 48 JSDataGridColumnList* thisObj = static_cast<JSDataGridColumnList*>(asObject(slotBase));
49 return toJS(exec, thisObj->globalObject(), thisObj->impl()->itemWithName(identifierToAtomicString(propertyName)));
JSDOMMimeTypeArrayCustom.cpp 38 JSDOMMimeTypeArray* thisObj = static_cast<JSDOMMimeTypeArray*>(asObject(slotBase));
39 return toJS(exec, thisObj->impl()->namedItem(identifierToAtomicString(propertyName)));
JSDOMPluginArrayCustom.cpp 38 JSDOMPluginArray* thisObj = static_cast<JSDOMPluginArray*>(asObject(slotBase));
39 return toJS(exec, thisObj->impl()->namedItem(identifierToAtomicString(propertyName)));
JSDOMPluginCustom.cpp 37 JSDOMPlugin* thisObj = static_cast<JSDOMPlugin*>(asObject(slotBase));
38 return toJS(exec, thisObj->impl()->namedItem(identifierToAtomicString(propertyName)));
JSHTMLFrameSetElementCustom.cpp 52 JSHTMLElement* thisObj = static_cast<JSHTMLElement*>(asObject(slotBase));
53 HTMLElement* element = toHTMLElement(thisObj->impl());
JSStyleSheetListCustom.cpp 57 JSStyleSheetList* thisObj = static_cast<JSStyleSheetList*>(asObject(slotBase));
58 HTMLStyleElement* element = thisObj->impl()->getNamedItem(identifierToString(propertyName));
JSCSSStyleDeclarationCustom.cpp 152 JSCSSStyleDeclaration* thisObj = static_cast<JSCSSStyleDeclaration*>(asObject(slotBase));
161 RefPtr<CSSValue> v = thisObj->impl()->getPropertyCSSValue(prop);
173 return StringObjectThatMasqueradesAsUndefined::create(exec, stringToUString(thisObj->impl()->getPropertyValue(prop)));
175 return jsString(exec, thisObj->impl()->getPropertyValue(prop));
JSDOMStringMapCustom.cpp 43 JSDOMStringMap* thisObj = static_cast<JSDOMStringMap*>(asObject(slotBase));
44 return jsString(exec, thisObj->impl()->item(identifierToAtomicString(propertyName)));
JSNamedNodeMapCustom.cpp 78 JSNamedNodeMap* thisObj = static_cast<JSNamedNodeMap*>(asObject(slotBase));
79 return toJS(exec, thisObj->impl()->getNamedItem(identifierToString(propertyName)));
JSStorageCustom.cpp 46 JSStorage* thisObj = static_cast<JSStorage*>(asObject(slotBase));
47 return jsStringOrNull(exec, thisObj->impl()->getItem(identifierToString(propertyName)));
JSNodeListCustom.cpp 100 JSNodeList* thisObj = static_cast<JSNodeList*>(asObject(slotBase));
101 return toJS(exec, thisObj->impl()->itemWithName(identifierToAtomicString(propertyName)));
  /external/webkit/Source/JavaScriptCore/runtime/
Lookup.cpp 71 void setUpStaticFunctionSlot(ExecState* exec, const HashEntry* entry, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot)
73 ASSERT(thisObj->structure()->anonymousSlotCount() > 0);
74 ASSERT(thisObj->getAnonymousValue(0).isCell() && asObject(thisObj->getAnonymousValue(0).asCell())->isGlobalObject());
76 WriteBarrierBase<Unknown>* location = thisObj->getDirectLocation(exec->globalData(), propertyName);
80 JSGlobalObject* globalObject = asGlobalObject(thisObj->getAnonymousValue(0).asCell());
88 thisObj->putDirectFunction(exec->globalData(), propertyName, function, entry->attributes());
89 location = thisObj->getDirectLocation(exec->globalData(), propertyName);
92 slot.setValue(thisObj, location->get(), thisObj->offsetForLocation(location))
    [all...]
ArrayPrototype.cpp 172 JSArray* thisObj = asArray(thisValue);
174 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec);
178 StringRecursionChecker checker(exec, thisObj);
193 if (isRealArray && thisObj->canGetIndex(k))
194 element = thisObj->getIndex(k);
196 element = thisObj->get(exec, k);
235 JSObject* thisObj = asArray(thisValue);
237 unsigned length = thisObj->get(exec, exec->propertyNames().length).toUInt32(exec);
241 StringRecursionChecker checker(exec, thisObj);
250 JSValue element = thisObj->get(exec, k)
    [all...]
Lookup.h 190 inline bool getStaticPropertySlot(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertySlot& slot)
195 return thisObj->ParentImp::getOwnPropertySlot(exec, propertyName, slot);
198 setUpStaticFunctionSlot(exec, entry, thisObj, propertyName, slot);
200 slot.setCacheableCustom(thisObj, entry->propertyGetter());
206 inline bool getStaticPropertyDescriptor(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertyDescriptor& descriptor)
211 return thisObj->ParentImp::getOwnPropertyDescriptor(exec, propertyName, descriptor);
215 setUpStaticFunctionSlot(exec, entry, thisObj, propertyName, slot);
217 slot.setCustom(thisObj, entry->propertyGetter());
229 inline bool getStaticFunctionSlot(ExecState* exec, const HashTable* table, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot)
231 if (static_cast<ParentImp*>(thisObj)->ParentImp::getOwnPropertySlot(exec, propertyName, slot)
    [all...]
ErrorPrototype.cpp 49 JSObject* thisObj = exec->hostThisValue().toThisObject(exec);
51 StringRecursionChecker checker(exec, thisObj);
55 JSValue name = thisObj->get(exec, exec->propertyNames().name);
56 JSValue message = thisObj->get(exec, exec->propertyNames().message);
Completion.cpp 62 JSObject* thisObj = (!thisValue || thisValue.isUndefinedOrNull()) ? exec->dynamicGlobalObject() : thisValue.toObject(exec);
64 JSValue result = exec->interpreter()->execute(program, exec, scopeChain, thisObj);
JSFunction.cpp 162 JSFunction* thisObj = asFunction(slotBase);
163 ASSERT(!thisObj->isHostFunction());
164 return exec->interpreter()->retrieveArguments(exec, thisObj);
169 JSFunction* thisObj = asFunction(slotBase);
170 ASSERT(!thisObj->isHostFunction());
171 return exec->interpreter()->retrieveCaller(exec, thisObj);
176 JSFunction* thisObj = asFunction(slotBase);
177 ASSERT(!thisObj->isHostFunction());
178 return jsNumber(thisObj->jsExecutable()->parameterCount());
  /external/webkit/Source/JavaScriptGlue/
JSValueWrapper.h 53 static JSObjectRef JSObjectCallFunction(void *data, JSObjectRef thisObj, CFArrayRef args);
JSObject.h 47 JSUserObject* CallFunction(JSUserObject* thisObj, CFArrayRef args);
JSObject.cpp 91 JSUserObject* JSUserObject::CallFunction(JSUserObject* thisObj, CFArrayRef args)
96 result = (JSUserObject*)fCallBacks.callFunction(fData, (JSObjectRef)thisObj, args);
JavaScriptGlue.h 60 typedef JSObjectRef (*JSObjectCallFunctionProcPtr)(void *data, JSObjectRef thisObj, CFArrayRef args) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
94 JSObjectRef JSObjectCallFunction(JSObjectRef ref, JSObjectRef thisObj, CFArrayRef args) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
  /external/webkit/Source/WebCore/bridge/
runtime_array.cpp 56 RuntimeArray* thisObj = static_cast<RuntimeArray*>(asObject(slotBase));
57 return jsNumber(thisObj->getLength());
62 RuntimeArray* thisObj = static_cast<RuntimeArray*>(asObject(slotBase));
63 return thisObj->getConcreteArray()->valueAt(exec, index);
runtime_object.cpp 62 RuntimeObject* thisObj = static_cast<RuntimeObject*>(asObject(slotBase));
63 RefPtr<Instance> instance = thisObj->m_instance;
80 RuntimeObject* thisObj = static_cast<RuntimeObject*>(asObject(slotBase));
81 RefPtr<Instance> instance = thisObj->m_instance;
99 RuntimeObject* thisObj = static_cast<RuntimeObject*>(asObject(slotBase));
100 RefPtr<Instance> instance = thisObj->m_instance;
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPObject.cpp 366 JSNPObject* thisObj = static_cast<JSNPObject*>(asObject(slotBase));
368 if (!thisObj->m_npObject)
371 if (!thisObj->m_npObject->_class->getProperty)
380 NPRuntimeObjectMap::PluginProtector protector(thisObj->m_objectMap);
386 returnValue = thisObj->m_npObject->_class->getProperty(thisObj->m_npObject, npIdentifier, &result);
394 JSValue propertyValue = thisObj->m_objectMap->convertNPVariantToJSValue(exec, thisObj->globalObject(), result);
401 JSNPObject* thisObj = static_cast<JSNPObject*>(asObject(slotBase));
403 if (!thisObj->m_npObject
    [all...]
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackObjectFunctions.h 520 JSCallbackObject* thisObj = asCallbackObject(slotBase);
522 JSObjectRef thisRef = toRef(thisObj);
525 for (JSClassRef jsClass = thisObj->classRef(); jsClass; jsClass = jsClass->parentClass)
551 JSCallbackObject* thisObj = asCallbackObject(slotBase);
554 PropertySlot slot2(thisObj);
555 if (thisObj->Base::getOwnPropertySlot(exec, propertyName, slot2))
558 for (JSClassRef jsClass = thisObj->classRef(); jsClass; jsClass = jsClass->parentClass) {
563 JSObject* o = new (exec) JSCallbackFunction(exec, asGlobalObject(thisObj->getAnonymousValue(0)), callAsFunction, propertyName);
564 thisObj->putDirect(exec->globalData(), propertyName, o, entry->attributes);
577 JSCallbackObject* thisObj = asCallbackObject(slotBase)
    [all...]

Completed in 790 milliseconds

1 2