/external/webkit/JavaScriptCore/API/ |
JSCallbackObject.h | 32 #include "JSObject.h" 86 static JSValue JSC_HOST_CALL call(ExecState*, JSObject* functionObject, JSValue thisValue, const ArgList&); 87 static JSObject* construct(ExecState*, JSObject* constructor, const ArgList&);
|
JSClassRef.h | 31 #include <runtime/JSObject.h> 80 JSC::WeakGCPtr<JSC::JSObject> cachedPrototype; 91 JSC::JSObject* prototype(JSC::ExecState*);
|
/external/webkit/WebCore/bindings/js/ |
JSSQLTransactionCustom.cpp | 59 JSObject* object = args.at(1).getObject(); 92 JSObject* object = args.at(2).getObject(); 103 JSObject* object = args.at(3).getObject();
|
JSCustomApplicationInstalledCallback.cpp | 38 JSCustomApplicationInstalledCallback::JSCustomApplicationInstalledCallback(JSObject* callback, JSDOMGlobalObject* globalObject)
|
JSCustomPositionCallback.cpp | 38 JSCustomPositionCallback::JSCustomPositionCallback(JSObject* callback, JSDOMGlobalObject* globalObject)
|
JSCustomPositionErrorCallback.cpp | 38 JSCustomPositionErrorCallback::JSCustomPositionErrorCallback(JSObject* callback, JSDOMGlobalObject* globalObject)
|
JSCustomVoidCallback.cpp | 43 JSCustomVoidCallback::JSCustomVoidCallback(JSObject* callback, JSDOMGlobalObject* globalObject)
|
JSAudioConstructor.cpp | 52 static JSObject* constructAudio(ExecState* exec, JSObject* constructor, const ArgList& args)
|
JSEventSourceConstructor.cpp | 59 static JSObject* constructEventSource(ExecState* exec, JSObject* constructor, const ArgList& args)
|
JSImageConstructor.cpp | 44 static JSObject* constructImage(ExecState* exec, JSObject* constructor, const ArgList& args)
|
/external/webkit/JavaScriptCore/debugger/ |
DebuggerCallFrame.h | 56 JSObject* thisObject() const;
|
DebuggerCallFrame.cpp | 69 JSObject* DebuggerCallFrame::thisObject() const 83 JSObject* error = eval->compile(m_callFrame, m_callFrame->scopeChain());
|
/external/webkit/JavaScriptCore/runtime/ |
StringConstructor.cpp | 41 static JSValue JSC_HOST_CALL stringFromCharCode(ExecState* exec, JSObject*, JSValue, const ArgList& args) 64 static JSObject* constructWithStringConstructor(ExecState* exec, JSObject*, const ArgList& args) 78 static JSValue JSC_HOST_CALL callStringConstructor(ExecState* exec, JSObject*, JSValue, const ArgList& args)
|
JSGlobalObjectFunctions.cpp | 274 JSValue JSC_HOST_CALL globalFuncEval(ExecState* exec, JSObject* function, JSValue thisValue, const ArgList& args) 276 JSObject* thisObject = thisValue.toThisObject(exec); 277 JSObject* unwrappedObject = thisObject->unwrappedObject(); 292 JSObject* error = eval->compile(exec, static_cast<JSGlobalObject*>(unwrappedObject)->globalScopeChain().node()); 299 JSValue JSC_HOST_CALL globalFuncParseInt(ExecState* exec, JSObject*, JSValue, const ArgList& args) 322 JSValue JSC_HOST_CALL globalFuncParseFloat(ExecState* exec, JSObject*, JSValue, const ArgList& args) 327 JSValue JSC_HOST_CALL globalFuncIsNaN(ExecState* exec, JSObject*, JSValue, const ArgList& args) 332 JSValue JSC_HOST_CALL globalFuncIsFinite(ExecState* exec, JSObject*, JSValue, const ArgList& args) 338 JSValue JSC_HOST_CALL globalFuncDecodeURI(ExecState* exec, JSObject*, JSValue, const ArgList& args) 346 JSValue JSC_HOST_CALL globalFuncDecodeURIComponent(ExecState* exec, JSObject*, JSValue, const ArgList& args [all...] |
JSCell.h | 40 friend class JSObject; 74 JSObject* getObject(); // NULL if not an object 75 const JSObject* getObject() const; // NULL if not an object 90 virtual JSObject* toObject(ExecState*) const; 109 virtual JSObject* toThisObject(ExecState*) const; 200 inline JSObject* JSValue::getObject() const 318 inline JSObject* JSValue::toObject(ExecState* exec) const 323 inline JSObject* JSValue::toThisObject(ExecState* exec) const
|
JSNumberCell.cpp | 65 JSObject* JSNumberCell::toObject(ExecState* exec) const 70 JSObject* JSNumberCell::toThisObject(ExecState* exec) const
|
JSZombie.h | 56 virtual JSObject* toObject(ExecState*) const { ASSERT_NOT_REACHED(); return 0; } 62 virtual JSObject* toThisObject(ExecState*) const { ASSERT_NOT_REACHED(); return 0; }
|
RegExpObject.h | 24 #include "JSObject.h" 29 class RegExpObject : public JSObject { 56 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | JSObject::StructureFlags;
|
/external/webkit/WebCore/bridge/jsc/ |
BridgeJSC.h | 70 typedef void (*KJSDidExecuteFunctionPtr)(ExecState*, JSObject* rootObject); 111 virtual bool getOwnPropertySlot(JSObject*, ExecState*, const Identifier&, PropertySlot&) { return false; } 112 virtual bool getOwnPropertyDescriptor(JSObject*, ExecState*, const Identifier&, PropertyDescriptor&) { return false; } 113 virtual void put(JSObject*, ExecState*, const Identifier&, JSValue, PutPropertySlot&) { }
|
/external/webkit/WebCore/bridge/ |
runtime_root.cpp | 52 // fix them by adding a JSObject to RootObject dictionary. 54 RootObject* findProtectingRootObject(JSObject* jsObject) 58 if ((*it)->gcIsProtected(jsObject)) 120 void RootObject::gcProtect(JSObject* jsObject) 124 if (!m_protectCountSet.contains(jsObject)) 125 JSC::gcProtect(jsObject); 126 m_protectCountSet.add(jsObject); 129 void RootObject::gcUnprotect(JSObject* jsObject [all...] |
/external/webkit/JavaScriptCore/ |
jsc.cpp | 74 static JSValue JSC_HOST_CALL functionPrint(ExecState*, JSObject*, JSValue, const ArgList&); 75 static JSValue JSC_HOST_CALL functionDebug(ExecState*, JSObject*, JSValue, const ArgList&); 76 static JSValue JSC_HOST_CALL functionGC(ExecState*, JSObject*, JSValue, const ArgList&); 77 static JSValue JSC_HOST_CALL functionVersion(ExecState*, JSObject*, JSValue, const ArgList&); 78 static JSValue JSC_HOST_CALL functionRun(ExecState*, JSObject*, JSValue, const ArgList&); 79 static JSValue JSC_HOST_CALL functionLoad(ExecState*, JSObject*, JSValue, const ArgList&); 80 static JSValue JSC_HOST_CALL functionCheckSyntax(ExecState*, JSObject*, JSValue, const ArgList&); 81 static JSValue JSC_HOST_CALL functionReadline(ExecState*, JSObject*, JSValue, const ArgList&); 82 static NO_RETURN JSValue JSC_HOST_CALL functionQuit(ExecState*, JSObject*, JSValue, const ArgList&); 85 static JSValue JSC_HOST_CALL functionSetSamplingFlags(ExecState*, JSObject*, JSValue, const ArgList&) [all...] |
/external/v8/src/ |
bootstrapper.cc | 239 bool ConfigureApiObject(Handle<JSObject> object, 246 void TransferObject(Handle<JSObject> from, Handle<JSObject> to); 247 void TransferNamedProperties(Handle<JSObject> from, Handle<JSObject> to); 248 void TransferIndexedProperties(Handle<JSObject> from, Handle<JSObject> to); 255 void AddSpecialFunction(Handle<JSObject> prototype, 300 static void SetObjectPrototype(Handle<JSObject> object, Handle<Object> proto) { 311 SetObjectPrototype(Handle<JSObject>(env->global_proxy()) [all...] |
/external/v8/src/x64/ |
stub-cache-x64.cc | 120 JSObject* holder, int index) { 130 __ movq(dst, FieldOperand(src, JSObject::kPropertiesOffset)); 140 JSObject* holder_obj) { 206 JSObject* object, 269 __ movq(scratch, FieldOperand(receiver_reg, JSObject::kPropertiesOffset)); 354 JSObject* holder_obj) { 383 JSObject* object, 384 JSObject* holder, 434 JSObject* holder_obj, 543 JSObject* holder_obj [all...] |
/external/v8/src/arm/ |
stub-cache-arm.cc | 158 JSObject* holder, int index) { 168 __ ldr(dst, FieldMemOperand(src, JSObject::kPropertiesOffset)); 265 JSObject* object, 335 __ ldr(scratch, FieldMemOperand(receiver_reg, JSObject::kPropertiesOffset)); 398 JSObject* holder_obj) { 417 JSObject* holder_obj) { 440 JSObject* holder_obj, 546 JSObject* holder_obj, 563 JSObject* object, 564 JSObject* holder [all...] |
/external/webkit/JavaScriptGlue/ |
UserObjectImp.h | 34 #include "JSObject.h" 37 class UserObjectImp : public JSObject { 49 virtual JSValue callAsFunction(ExecState *exec, JSObject *thisObj, const ArgList &args);
|