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

12

  /external/webkit/Source/WebCore/bridge/
runtime_method.cpp 56 RuntimeMethod* thisObj = static_cast<RuntimeMethod*>(asObject(slotBase));
64 return jsNumber(thisObj->_methodList->at(0)->numParameters());
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.h 97 JSValue execute(ProgramExecutable*, CallFrame*, ScopeChainNode*, JSObject* thisObj);
100 JSValue execute(EvalExecutable* evalNode, CallFrame* exec, JSObject* thisObj, ScopeChainNode* scopeChain);
Interpreter.cpp 728 JSValue Interpreter::execute(ProgramExecutable* program, CallFrame* callFrame, ScopeChainNode* scopeChain, JSObject* thisObj)
754 newCallFrame->uncheckedR(newCallFrame->hostThisRegister()) = JSValue(thisObj);
    [all...]
  /external/webkit/Source/JavaScriptGlue/
JSValueWrapper.cpp 142 JSObjectRef JSValueWrapper::JSObjectCallFunction(void *data, JSObjectRef thisObj, CFArrayRef args)
152 JSValue value = JSObjectKJSValue((JSUserObject*)thisObj);
UserObjectImp.cpp 112 UserObjectImp *thisObj = static_cast<UserObjectImp *>(asObject(slotBase));
114 assert(thisObj->fJSUserObject);
117 JSUserObject *jsResult = thisObj->fJSUserObject->CopyProperty(cfPropName);
JavaScriptGlue.cpp 227 JSObjectRef JSObjectCallFunction(JSObjectRef ref, JSObjectRef thisObj, CFArrayRef args)
233 result = (JSObjectRef)ptr->CallFunction((JSUserObject*)thisObj, args);
  /external/webkit/Source/WebCore/bindings/js/
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);
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());
JSDOMWindowCustom.cpp 124 JSDOMWindowBase* thisObj = static_cast<JSDOMWindow*>(asObject(slotBase));
125 Document* document = thisObj->impl()->frame()->document();
127 ASSERT(thisObj->allowsAccessFrom(exec));
  /external/webkit/Source/JavaScriptCore/runtime/
ObjectPrototype.cpp 98 JSObject* thisObj = thisValue.toThisObject(exec);
108 if (v == thisObj)
JSONObject.cpp 618 JSValue callReviver(JSObject* thisObj, JSValue property, JSValue unfiltered)
622 return call(m_exec, m_function.get(), m_callType, m_callData, thisObj, argList);
JSObject.h 79 friend void setUpStaticFunctionSlot(ExecState* exec, const HashEntry* entry, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot);
    [all...]
  /dalvik/vm/
Debugger.cpp     [all...]
  /dalvik/vm/reflect/
Proxy.cpp 873 Object* thisObj = (Object*) args[0];
885 handler = dvmGetFieldObject(thisObj, gDvm.offJavaLangReflectProxy_h);
901 thisObj, handler->clazz->descriptor);
    [all...]
  /external/webkit/Source/WebCore/bridge/jni/
jni_jsobject.mm 419 JSObject *thisObj = const_cast<JSObject*>(_imp);
422 return static_cast<jstring>(convertValueToJValue(exec, rootObject, thisObj, JavaTypeObject, "java.lang.String").l);
  /external/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp     [all...]

Completed in 642 milliseconds

12