HomeSort by relevance Sort by last modified time
    Searched refs:JSValueRef (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/webkit/JavaScriptCore/ForwardingHeaders/JavaScriptCore/
JSValueRef.h 1 #include <JavaScriptCore/API/JSValueRef.h>
  /external/webkit/JavaScriptCore/API/
JSValueRef.h 43 @constant kJSTypeObject An object value (meaning that this JSValueRef is a JSObjectRef).
65 JS_EXPORT JSType JSValueGetType(JSContextRef ctx, JSValueRef value);
74 JS_EXPORT bool JSValueIsUndefined(JSContextRef ctx, JSValueRef value);
83 JS_EXPORT bool JSValueIsNull(JSContextRef ctx, JSValueRef value);
92 JS_EXPORT bool JSValueIsBoolean(JSContextRef ctx, JSValueRef value);
101 JS_EXPORT bool JSValueIsNumber(JSContextRef ctx, JSValueRef value);
110 JS_EXPORT bool JSValueIsString(JSContextRef ctx, JSValueRef value);
119 JS_EXPORT bool JSValueIsObject(JSContextRef ctx, JSValueRef value);
129 JS_EXPORT bool JSValueIsObjectOfClass(JSContextRef ctx, JSValueRef value, JSClassRef jsClass);
139 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception
    [all...]
JSObjectRef.h 31 #include <JavaScriptCore/JSValueRef.h>
138 @param exception A pointer to a JSValueRef in which to return an exception, if any.
142 JSValueRef GetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
146 typedef JSValueRef
147 (*JSObjectGetPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
156 @param exception A pointer to a JSValueRef in which to return an exception, if any.
160 bool SetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception);
165 (*JSObjectSetPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception)
    [all...]
JSBase.h 59 /*! @typedef JSValueRef A JavaScript value. The base type for all JavaScript values, and polymorphic functions on them. */
60 typedef const struct OpaqueJSValue* JSValueRef;
96 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
99 JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
108 @param exception A pointer to a JSValueRef in which to store a syntax error exception, if any. Pass NULL if you do not care to store a syntax error exception.
111 JS_EXPORT bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
JavaScript.h 34 #include <JavaScriptCore/JSValueRef.h>
JSValueRef.cpp 27 #include "JSValueRef.h"
47 ::JSType JSValueGetType(JSContextRef ctx, JSValueRef value)
68 bool JSValueIsUndefined(JSContextRef ctx, JSValueRef value)
77 bool JSValueIsNull(JSContextRef ctx, JSValueRef value)
86 bool JSValueIsBoolean(JSContextRef ctx, JSValueRef value)
95 bool JSValueIsNumber(JSContextRef ctx, JSValueRef value)
104 bool JSValueIsString(JSContextRef ctx, JSValueRef value)
113 bool JSValueIsObject(JSContextRef ctx, JSValueRef value)
122 bool JSValueIsObjectOfClass(JSContextRef ctx, JSValueRef value, JSClassRef jsClass)
138 bool JSValueIsEqual(JSContextRef ctx, JSValueRef a, JSValueRef b, JSValueRef* exception
    [all...]
JSContextRefPrivate.h 30 #include <JavaScriptCore/JSValueRef.h>
  /external/webkit/WebKit/mac/WebView/
WebSerializedJSValue.h 28 typedef const struct OpaqueJSValue* JSValueRef;
35 - (id)initWithValue:(JSValueRef)object context:(JSContextRef)sourceContext exception:(JSValueRef*)exception;
36 - (JSValueRef)deserialize:(JSContextRef)destinationContext;
WebSerializedJSValue.mm 43 - (id)initWithValue:(JSValueRef)value context:(JSContextRef)sourceContext exception:(JSValueRef*)exception;
68 - (JSValueRef)deserialize:(JSContextRef)destinationContext
  /external/webkit/WebKitTools/DumpRenderTree/
AccessibilityUIElement.cpp 39 static JSValueRef allAttributesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
45 static JSValueRef attributesOfLinkedUIElementsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
51 static JSValueRef attributesOfDocumentLinksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
57 static JSValueRef attributesOfChildrenCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, s (…)
    [all...]
AccessibilityController.cpp 34 static JSValueRef getFocusedElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
40 static JSValueRef getRootElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
48 void AccessibilityController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
53 JSValueRef accessibilityControllerObject = JSObjectMake(context, classRef, this);
59 static JSValueRef logFocusEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*)
66 static JSValueRef logValueChangeEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const (…)
    [all...]
GCController.cpp 45 static JSValueRef collectCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
52 static JSValueRef collectOnAlternateThreadCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
64 static JSValueRef getJSObjectCountCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
74 void GCController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception
    [all...]
LayoutTestController.cpp 84 static JSValueRef dumpAsPDFCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
91 static JSValueRef dumpAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
98 static JSValueRef dumpBackForwardListCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
105 static JSValueRef dumpChildFramesAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, (…)
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebSerializedJSValue.idl 38 [local] HRESULT serialize([in] JSContextRef context, [in] JSValueRef value, [out, retval] JSValueRef* exception);
39 [local] HRESULT deserialize([in] JSContextRef context, [out, retval] JSValueRef* value);
JavaScriptCoreAPITypes.idl 34 typedef void* JSValueRef;
36 cpp_quote("typedef const struct OpaqueJSValue* JSValueRef;")
  /external/webkit/JavaScriptCore/qt/api/
qscriptengine_p.h 43 inline JSValueRef makeJSValue(double number) const;
44 inline JSValueRef makeJSValue(int number) const;
45 inline JSValueRef makeJSValue(uint number) const;
46 inline JSValueRef makeJSValue(const QString& string) const;
47 inline JSValueRef makeJSValue(bool number) const;
48 inline JSValueRef makeJSValue(QScriptValue::SpecialValue value) const;
61 JSValueRef QScriptEnginePrivate::makeJSValue(double number) const
66 JSValueRef QScriptEnginePrivate::makeJSValue(int number) const
71 JSValueRef QScriptEnginePrivate::makeJSValue(uint number) const
76 JSValueRef QScriptEnginePrivate::makeJSValue(const QString& string) cons
    [all...]
qscriptengine_p.cpp 49 JSValueRef exception;
50 JSValueRef result = JSEvaluateScript(m_context, script, /* Global Object */ 0, file, lineNumber, &exception);
  /external/webkit/WebKit/win/
WebSerializedJSValue.h 31 typedef const struct OpaqueJSValue* JSValueRef;
44 virtual HRESULT STDMETHODCALLTYPE serialize(JSContextRef, JSValueRef value, JSValueRef* exception);
45 virtual HRESULT STDMETHODCALLTYPE deserialize(JSContextRef, JSValueRef* result);
  /external/webkit/JavaScriptCore/API/tests/
JSNode.h 35 extern JSObjectRef JSNode_construct(JSContextRef context, JSObjectRef object, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
JSNode.c 30 #include "JSValueRef.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
    [all...]
minidom.c 37 static JSValueRef print(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
59 JSValueRef exception;
60 JSValueRef result = JSEvaluateScript(context, script, NULL, NULL, 1, &exception);
82 static JSValueRef print(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
  /external/webkit/WebCore/inspector/
JavaScriptProfile.cpp 59 static JSValueRef getTitleCallback(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
68 static JSValueRef getHeadCallback(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
78 static JSValueRef getUniqueIdCallback(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
89 static JSValueRef focus(JSContextRef ctx, JSObjectRef /*function*/, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* /*exception*/)
106 static JSValueRef exclude(JSContextRef ctx, JSObjectRef /*function*/, JSObjectRef thisObject, size_t argumentCount, (…)
    [all...]
JavaScriptProfileNode.cpp 56 static JSValueRef getFunctionName(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
66 static JSValueRef getURL(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
76 static JSValueRef getLineNumber(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
85 static JSValueRef getTotalTime(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
96 static JSValueRef getSelfTime(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
    [all...]
  /external/webkit/WebKitTools/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 ar (…)
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
EventSender.cpp 87 static JSValueRef getDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
92 static bool setDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception)
98 static JSValueRef leapForwardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
104 static JSValueRef contextClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception
    [all...]

Completed in 493 milliseconds

1 2 3