Home | History | Annotate | Download | only in inspector

Lines Matching refs:thisObject

59 static JSValueRef getTitleCallback(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
61 if (!JSValueIsObjectOfClass(ctx, thisObject, ProfileClass()))
64 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject));
68 static JSValueRef getHeadCallback(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
70 if (!JSValueIsObjectOfClass(ctx, thisObject, ProfileClass()))
74 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject));
78 static JSValueRef getUniqueIdCallback(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
80 if (!JSValueIsObjectOfClass(ctx, thisObject, ProfileClass()))
83 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject));
89 static JSValueRef focus(JSContextRef ctx, JSObjectRef /*function*/, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* /*exception*/)
91 if (!JSValueIsObjectOfClass(ctx, thisObject, ProfileClass()))
100 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject));
106 static JSValueRef exclude(JSContextRef ctx, JSObjectRef /*function*/, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* /*exception*/)
108 if (!JSValueIsObjectOfClass(ctx, thisObject, ProfileClass()))
117 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject));
123 static JSValueRef restoreAll(JSContextRef ctx, JSObjectRef /*function*/, JSObjectRef thisObject, size_t /*argumentCount*/, const JSValueRef[] /*arguments*/, JSValueRef* /*exception*/)
125 if (!JSValueIsObjectOfClass(ctx, thisObject, ProfileClass()))
128 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject));