| /external/webkit/Tools/DumpRenderTree/ |
| AccessibilityTextMarker.h | 29 #include <JavaScriptCore/JSObjectRef.h> 56 static JSObjectRef makeJSAccessibilityTextMarker(JSContextRef, const AccessibilityTextMarker&); 76 static JSObjectRef makeJSAccessibilityTextMarkerRange(JSContextRef, const AccessibilityTextMarkerRange&); 88 AccessibilityTextMarker* toTextMarker(JSObjectRef object); 89 AccessibilityTextMarkerRange* toTextMarkerRange(JSObjectRef object);
|
| LayoutTestController.cpp | 37 #include <JavaScriptCore/JSObjectRef.h> 101 static JSValueRef dumpApplicationCacheDelegateCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 108 static JSValueRef dumpAsPDFCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 115 static JSValueRef dumpAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 126 static JSValueRef dumpBackForwardListCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 133 static JSValueRef dumpChildFramesAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* (…) [all...] |
| /external/webkit/Source/JavaScriptGlue/ |
| JavaScriptGlue.cpp | 41 static JSObjectRef CFJSObjectCopyProperty(void *data, CFStringRef propertyName); 42 static void CFJSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue); 150 JSObjectRef JSObjectCreate(void *data, JSObjectCallBacksPtr callBacks) 152 JSObjectRef result = JSObjectCreateInternal(data, callBacks, 0, kJSUserObjectDataTypeUnknown); 159 JSObjectRef JSObjectCreateInternal(void *data, JSObjectCallBacksPtr callBacks, JSObjectMarkProcPtr markProc, int type) 161 JSObjectRef result = 0; 163 result = (JSObjectRef)ptr; 170 CFTypeRef JSObjectCopyCFValue(JSObjectRef ref) 184 void *JSObjectGetData(JSObjectRef ref) 199 JSObjectRef JSObjectCopyProperty(JSObjectRef ref, CFStringRef propertyName [all...] |
| JSValueWrapper.cpp | 103 JSObjectRef JSValueWrapper::JSObjectCopyProperty(void *data, CFStringRef propertyName) 107 JSObjectRef result = 0; 127 void JSValueWrapper::JSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue) 142 JSObjectRef JSValueWrapper::JSObjectCallFunction(void *data, JSObjectRef thisObj, CFArrayRef args) 146 JSObjectRef result = 0; 160 JSObjectRef jsArg = (JSObjectRef)CFArrayGetValueAtIndex(args, i);
|
| /external/webkit/Source/JavaScriptCore/qt/api/ |
| qscriptsyntaxcheckresult_p.h | 33 inline QScriptSyntaxCheckResultPrivate(const QScriptEnginePrivate* engine, JSObjectRef value); 41 JSObjectRef m_exception; 55 QScriptSyntaxCheckResultPrivate::QScriptSyntaxCheckResultPrivate(const QScriptEnginePrivate* engine, JSObjectRef value)
|
| qscriptfunction.cpp | 27 static void qt_NativeFunction_finalize(JSObjectRef object) 33 static JSValueRef qt_NativeFunction_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 87 static void qt_NativeFunctionWithArg_finalize(JSObjectRef object) 93 static JSValueRef qt_NativeFunctionWithArg_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
|
| qscriptengine_p.cpp | 61 return new QScriptSyntaxCheckResultPrivate(this, const_cast<JSObjectRef>(exception)); 98 JSObjectRef funJS = JSObjectMake(m_context, m_nativeFunctionClass, reinterpret_cast<void*>(data)); 107 JSObjectRef funJS = JSObjectMake(m_context, m_nativeFunctionWithArgClass, reinterpret_cast<void*>(data)); 112 QScriptValuePrivate* QScriptEnginePrivate::newFunction(JSObjectRef funJS, QScriptValuePrivate* prototype) 133 JSObjectRef array = JSObjectMakeArray(m_context, /* argumentCount */ 0, /* arguments */ 0, &exception); 153 JSObjectRef result = JSObjectMakeDate(m_context, /* argumentCount */ 1, &argument, &exception); 165 JSObjectRef globalObject = JSContextGetGlobalObject(m_context);
|
| /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
| WKBundleFramePrivate.h | 41 WK_EXPORT WKStringRef WKBundleFrameCopyCounterValue(WKBundleFrameRef frame, JSObjectRef element); 42 WK_EXPORT WKStringRef WKBundleFrameCopyMarkerText(WKBundleFrameRef frame, JSObjectRef element); 43 WK_EXPORT JSValueRef WKBundleFrameGetComputedStyleIncludingVisitedInfo(WKBundleFrameRef frame, JSObjectRef element);
|
| /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/ |
| JSWrapper.h | 40 static void initialize(JSContextRef, JSObjectRef); 41 static void finalize(JSObjectRef); 49 inline void setProperty(JSContextRef context, JSObjectRef object, const char* propertyName, JSWrappable* value, JSPropertyAttributes attributes, JSValueRef* exception)
|
| JSWrapper.cpp | 42 JSObjectRef wrapperObject = JSObjectMake(context, objectClass, object); 57 static JSWrappable* unwrapObject(JSObjectRef object) 64 void JSWrapper::initialize(JSContextRef ctx, JSObjectRef object) 72 void JSWrapper::finalize(JSObjectRef object)
|
| /external/webkit/Source/JavaScriptCore/API/ |
| JSContextRefPrivate.h | 29 #include <JavaScriptCore/JSObjectRef.h>
|
| JSWeakObjectMapRefPrivate.cpp | 53 void JSWeakObjectMapSet(JSContextRef ctx, JSWeakObjectMapRef map, void* key, JSObjectRef object) 64 JSObjectRef JSWeakObjectMapGet(JSContextRef ctx, JSWeakObjectMapRef map, void* key) 72 JS_EXPORT bool JSWeakObjectMapClear(JSContextRef, JSWeakObjectMapRef, void*, JSObjectRef); 73 bool JSWeakObjectMapClear(JSContextRef, JSWeakObjectMapRef, void*, JSObjectRef)
|
| JSContextRef.h | 29 #include <JavaScriptCore/JSObjectRef.h> 118 JS_EXPORT JSObjectRef JSContextGetGlobalObject(JSContextRef ctx);
|
| JSObjectRef.cpp | 28 #include "JSObjectRef.h" 76 JSObjectRef JSObjectMake(JSContextRef ctx, JSClassRef jsClass, void* data) 91 JSObjectRef JSObjectMakeFunctionWithCallback(JSContextRef ctx, JSStringRef name, JSObjectCallAsFunctionCallback callAsFunction) 101 JSObjectRef JSObjectMakeConstructor(JSContextRef ctx, JSClassRef jsClass, JSObjectCallAsConstructorCallback callAsConstructor) 115 JSObjectRef JSObjectMakeFunction(JSContextRef ctx, JSStringRef name, unsigned parameterCount, const JSStringRef parameterNames[], JSStringRef body, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception) 137 JSObjectRef JSObjectMakeArray(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 162 JSObjectRef JSObjectMakeDate(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 182 JSObjectRef JSObjectMakeError(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 201 JSObjectRef JSObjectMakeRegExp(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 221 JSValueRef JSObjectGetPrototype(JSContextRef ctx, JSObjectRef object [all...] |
| APICast.h | 47 typedef struct OpaqueJSValue* JSObjectRef; 93 inline JSC::JSObject* toJS(JSObjectRef o) 122 inline JSObjectRef toRef(JSC::JSObject* o) 124 return reinterpret_cast<JSObjectRef>(o); 127 inline JSObjectRef toRef(const JSC::JSObject* o) 129 return reinterpret_cast<JSObjectRef>(const_cast<JSC::JSObject*>(o));
|
| JSBase.h | 62 /*! @typedef JSObjectRef A JavaScript object. A JSObject is a JSValue. */ 63 typedef struct OpaqueJSValue* JSObjectRef; 105 JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
|
| JSCallbackFunction.cpp | 55 JSObjectRef functionRef = toRef(exec->callee()); 56 JSObjectRef thisObjRef = toRef(exec->hostThisValue().toThisObject(exec));
|
| /external/webkit/Tools/WebKitTestRunner/InjectedBundle/ |
| GCController.h | 39 void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
|
| GCController.cpp | 70 void GCController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
|
| /external/webkit/Source/JavaScriptCore/API/tests/ |
| JSNodeList.c | 28 #include "JSObjectRef.h" 33 static JSValueRef JSNodeList_item(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 53 static JSValueRef JSNodeList_length(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 68 static JSValueRef JSNodeList_getProperty(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 83 static void JSNodeList_initialize(JSContextRef context, JSObjectRef thisObject) 93 static void JSNodeList_finalize(JSObjectRef thisObject) 120 JSObjectRef JSNodeList_new(JSContextRef context, NodeList* nodeList)
|
| JSNode.c | 28 #include "JSObjectRef.h" 36 static JSValueRef JSNode_appendChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 59 static JSValueRef JSNode_removeChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 78 static JSValueRef JSNode_replaceChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 106 static JSValueRef JSNode_getNodeType(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) 122 static JSValueRef JSNode_getChildNodes(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 132 static JSValueRef JSNode_getFirstChild(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception [all...] |
| minidom.c | 29 #include "JSObjectRef.h" 37 static JSValueRef print(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception); 47 JSObjectRef globalObject = JSContextGetGlobalObject(context); 82 static JSValueRef print(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
|
| testapi.c | 141 static bool MyObject_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName) 158 static JSValueRef MyObject_getProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) 191 static bool MyObject_setProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) 208 static bool MyObject_deleteProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) 224 static void MyObject_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef propertyNames) 240 static JSValueRef MyObject_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 258 static JSObjectRef MyObject_callAsConstructor(JSContextRef context, JSObjectRef object, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 274 static bool MyObject_hasInstance(JSContextRef context, JSObjectRef constructor, JSValueRef possibleValue, JSValueRef* exception [all...] |
| /external/webkit/Tools/DumpRenderTree/gtk/ |
| TextInputController.cpp | 35 #include <JavaScriptCore/JSObjectRef.h> 41 static JSValueRef setMarkedTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 69 static JSValueRef insertTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 91 static JSValueRef unmarkTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 101 static JSValueRef firstRectForCharacterRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 125 JSObjectRef arrayObject = JSObjectMakeArray(context, 4, arrayValues, exception) [all...] |
| EventSender.cpp | 40 #include <JavaScriptCore/JSObjectRef.h> 93 static JSValueRef getDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) 98 static bool setDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) 104 static JSValueRef leapForwardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 150 static JSValueRef getMenuItemTitleCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) 162 static bool setMenuItemTitleCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) 167 static JSValueRef menuItemClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 202 static JSValueRef contextClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* (…) [all...] |