| /external/webkit/Source/JavaScriptCore/qt/api/ |
| qscriptengine_p.h | 76 QScriptValuePrivate* newFunction(JSObjectRef funObject, QScriptValuePrivate* prototype); 90 inline bool objectHasOwnProperty(JSObjectRef object, JSStringRef property) const; 91 inline QVector<JSStringRef> objectGetOwnPropertyNames(JSObjectRef object) const; 153 JSValueRef lineNumber = JSObjectGetProperty(m_context, const_cast<JSObjectRef>(m_exception), lineNumberPropertyName.get(), &exception); 166 JSValueRef jsFileName = JSObjectGetProperty(m_context, const_cast<JSObjectRef>(m_exception), fileNamePropertyName.get(), &exception); 167 JSValueRef jsLineNumber = JSObjectGetProperty(m_context, const_cast<JSObjectRef>(m_exception), lineNumberPropertyName.get(), &exception); 247 inline bool QScriptEnginePrivate::objectHasOwnProperty(JSObjectRef object, JSStringRef property) const 253 inline QVector<JSStringRef> QScriptEnginePrivate::objectGetOwnPropertyNames(JSObjectRef object) const
|
| qscriptvalue_p.h | 66 the JSValueRef and the JSObjectRef, and it could be automatically casted to these types by cast 94 inline QScriptValuePrivate(const QScriptEnginePrivate* engine, JSObjectRef object); 154 inline operator JSObjectRef() const; 177 JSObjectRef m_object; 186 Value(JSObjectRef object) : m_object(object) {} 321 QScriptValuePrivate::QScriptValuePrivate(const QScriptEnginePrivate* engine, JSObjectRef object) 624 JSObjectRef object = JSValueToObject(*engine, engine->makeJSValue(*u.m_string), /* exception */ 0); 631 JSObjectRef object = JSValueToObject(*engine, engine->makeJSValue(u.m_number), /* exception */ 0); 638 JSObjectRef object = JSValueToObject(*engine, engine->makeJSValue(u.m_bool), /* exception */ 0); 651 JSObjectRef object = JSValueToObject(*m_engine, *this, &exception) [all...] |
| /external/webkit/Tools/DumpRenderTree/win/ |
| EventSender.cpp | 63 static JSValueRef getDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) 68 static bool setDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) 74 static JSValueRef getConstantCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) 96 static JSValueRef leapForwardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 131 static JSValueRef contextClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 149 JSObjectRef modifiersArray = JSValueToObject(context, modifiers, 0); 171 static JSValueRef mouseDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception [all...] |
| FrameLoadDelegate.h | 117 /* [in] */ JSObjectRef windowObject) { return E_NOTIMPL; } 122 /* [in] */ JSObjectRef windowObject,
|
| /external/webkit/Source/WebKit2/WebProcess/WebPage/ |
| WebFrame.h | 89 JSValueRef computedStyleIncludingVisitedInfo(JSObjectRef element); 105 static String counterValue(JSObjectRef element); 106 static String markerText(JSObjectRef element);
|
| /external/webkit/Source/JavaScriptCore/API/ |
| JSCallbackObject.cpp | 45 JSObjectRef thisRef = toRef(asObject(handle.get()));
|
| JSCallbackConstructor.cpp | 61 JSObjectRef constructorRef = toRef(constructor); 71 JSObjectRef result;
|
| JSCallbackObjectFunctions.h | 36 #include "JSObjectRef.h" 117 JSObjectRef thisRef = toRef(this); 191 JSObjectRef thisRef = toRef(this); 250 JSObjectRef thisRef = toRef(this); 312 JSObjectRef constructorRef = toRef(constructor); 340 JSObjectRef thisRef = toRef(this); 375 JSObjectRef functionRef = toRef(exec->callee()); 376 JSObjectRef thisObjRef = toRef(exec->hostThisValue().toThisObject(exec)); 404 JSObjectRef thisRef = toRef(this); 447 JSObjectRef thisRef = toRef(this) [all...] |
| JSValueRef.h | 44 @constant kJSTypeObject An object value (meaning that this JSValueRef is a JSObjectRef). 164 JS_EXPORT bool JSValueIsInstanceOfConstructor(JSContextRef ctx, JSValueRef value, JSObjectRef constructor, JSValueRef* exception); 273 JS_EXPORT JSObjectRef JSValueToObject(JSContextRef ctx, JSValueRef value, JSValueRef* exception);
|
| JSBase.cpp | 45 JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception)
|
| /external/webkit/Source/JavaScriptGlue/ |
| JSObject.h | 36 JSObjectRef JSObjectCreateInternal(void *data, JSObjectCallBacksPtr callBacks, JSObjectMarkProcPtr markProc, int dataType);
|
| JSObject.cpp | 71 fCallBacks.setProperty(fData, propertyName, (JSObjectRef)value); 96 result = (JSUserObject*)fCallBacks.callFunction(fData, (JSObjectRef)thisObj, args);
|
| /external/webkit/Source/WebKit/win/Interfaces/ |
| IWebFrameLoadDelegate.idl | 202 [local] HRESULT windowScriptObjectAvailable([in] IWebView* webView, [in] JSContextRef context, [in] JSObjectRef windowScriptObject); 204 [local] HRESULT didClearWindowObject([in] IWebView* webView, [in] JSContextRef context, [in] JSObjectRef windowScriptObject, [in] IWebFrame* frame);
|
| /external/webkit/Tools/DumpRenderTree/gtk/ |
| AccessibilityControllerGtk.cpp | 100 void AccessibilityController::addNotificationListener(PlatformUIElement, JSObjectRef)
|
| /external/webkit/Tools/WebKitTestRunner/InjectedBundle/ |
| EventSendingController.h | 41 void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
|
| LayoutTestController.cpp | 53 static JSValueRef propertyValue(JSContextRef context, JSObjectRef object, const char* propertyName) 62 static JSObjectRef propertyObject(JSContextRef context, JSObjectRef object, const char* propertyName) 67 return const_cast<JSObjectRef>(value); 70 static JSObjectRef getElementById(WKBundleFrameRef frame, JSStringRef elementId) 73 JSObjectRef document = propertyObject(context, JSContextGetGlobalObject(context), "document"); 81 JSValueRef element = JSObjectCallAsFunction(context, const_cast<JSObjectRef>(getElementById), document, 1, &elementIdValue, &exception); 84 return const_cast<JSObjectRef>(element); 222 JSValueRef value = WKBundleFrameGetComputedStyleIncludingVisitedInfo(mainFrame, const_cast<JSObjectRef>(element)); 231 JSObjectRef element = getElementById(mainFrame, elementId) [all...] |
| EventSendingController.cpp | 58 static unsigned arrayLength(JSContextRef context, JSObjectRef array) 73 JSObjectRef array = const_cast<JSObjectRef>(arrayValue); 203 void EventSendingController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
|
| /external/webkit/Tools/DumpRenderTree/mac/ |
| AccessibilityControllerMac.mm | 84 void AccessibilityController::addNotificationListener(PlatformUIElement, JSObjectRef)
|
| /external/webkit/Tools/WinLauncher/ |
| WinLauncher.h | 104 /* [in] */ JSObjectRef windowScriptObject) { return S_OK; } 109 /* [in] */ JSObjectRef windowScriptObject,
|
| /external/webkit/Tools/DumpRenderTree/ |
| AccessibilityUIElement.h | 30 #include <JavaScriptCore/JSObjectRef.h> 71 static JSObjectRef makeJSAccessibilityUIElement(JSContextRef, const AccessibilityUIElement&); 210 bool addNotificationListener(JSObjectRef functionCallback);
|
| /external/webkit/Source/WebCore/bindings/objc/ |
| WebScriptObject.h | 233 @result The equivalent JSObjectRef for this WebScriptObject. 237 - (JSObjectRef)JSObject WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER);
|
| WebScriptObjectPrivate.h | 50 + (id)scriptObjectForJSObject:(JSObjectRef)jsObject originRootObject:(JSC::Bindings::RootObject*)originRootObject rootObject:(JSC::Bindings::RootObject*)rootObject;
|
| /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
| WKBundleNodeHandlePrivate.h | 37 WK_EXPORT WKBundleNodeHandleRef WKBundleNodeHandleCreate(JSContextRef context, JSObjectRef object);
|
| /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/DOM/ |
| InjectedBundleNodeHandle.h | 49 static PassRefPtr<InjectedBundleNodeHandle> getOrCreate(JSContextRef, JSObjectRef);
|
| /external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/ |
| copy-files.cmd | 18 JSObjectRef.h
|