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

1 2

  /external/webkit/Source/WebCore/bindings/js/
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)));
JSDataGridColumnListCustom.cpp 48 JSDataGridColumnList* thisObj = static_cast<JSDataGridColumnList*>(asObject(slotBase));
49 return toJS(exec, thisObj->globalObject(), thisObj->impl()->itemWithName(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));
JSDOMStringMapCustom.cpp 43 JSDOMStringMap* thisObj = static_cast<JSDOMStringMap*>(asObject(slotBase));
44 return jsString(exec, thisObj->impl()->item(identifierToAtomicString(propertyName)));
JSHTMLAllCollectionCustom.cpp 67 // Do not use thisObj here. It can be the JSHTMLDocument, in the document.forms(i) case.
118 JSHTMLAllCollection* thisObj = static_cast<JSHTMLAllCollection*>(asObject(slotBase));
119 return getNamedItems(exec, thisObj, propertyName);
JSNamedNodeMapCustom.cpp 78 JSNamedNodeMap* thisObj = static_cast<JSNamedNodeMap*>(asObject(slotBase));
79 return toJS(exec, thisObj->impl()->getNamedItem(identifierToString(propertyName)));
JSNodeListCustom.cpp 100 JSNodeList* thisObj = static_cast<JSNodeList*>(asObject(slotBase));
101 return toJS(exec, thisObj->impl()->itemWithName(identifierToAtomicString(propertyName)));
JSStorageCustom.cpp 46 JSStorage* thisObj = static_cast<JSStorage*>(asObject(slotBase));
47 return jsStringOrNull(exec, thisObj->impl()->getItem(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));
JSHTMLCollectionCustom.cpp 63 // Do not use thisObj here. It can be the JSHTMLDocument, in the document.forms(i) case.
114 JSHTMLCollection* thisObj = static_cast<JSHTMLCollection*>(asObject(slotBase));
115 return getNamedItems(exec, thisObj, propertyName);
JSHTMLDocumentCustom.cpp 61 JSHTMLDocument* thisObj = static_cast<JSHTMLDocument*>(asObject(slotBase));
62 HTMLDocument* document = static_cast<HTMLDocument*>(thisObj->impl());
  /external/webkit/Source/JavaScriptCore/runtime/
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);
ObjectPrototype.cpp 98 JSObject* thisObj = thisValue.toThisObject(exec);
108 if (v == 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/WebCore/bridge/
runtime_method.cpp 56 RuntimeMethod* thisObj = static_cast<RuntimeMethod*>(asObject(slotBase));
64 return jsNumber(thisObj->_methodList->at(0)->numParameters());
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/JavaScriptGlue/
UserObjectImp.cpp 112 UserObjectImp *thisObj = static_cast<UserObjectImp *>(asObject(slotBase));
114 assert(thisObj->fJSUserObject);
117 JSUserObject *jsResult = thisObj->fJSUserObject->CopyProperty(cfPropName);
  /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...]
  /dalvik/vm/reflect/
Proxy.cpp 874 Object* thisObj = (Object*) args[0];
886 handler = dvmGetFieldObject(thisObj, gDvm.offJavaLangReflectProxy_h);
902 thisObj, handler->clazz->descriptor);
    [all...]

Completed in 354 milliseconds

1 2