HomeSort by relevance Sort by last modified time
    Searched defs:toJS (Results 26 - 40 of 40) sorted by null

12

  /external/webkit/Source/WebCore/bindings/js/
JSNamedNodeMapCustom.cpp 79 return toJS(exec, thisObj->impl()->getNamedItem(identifierToString(propertyName)));
96 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, NamedNodeMap* impl)
JSNodeListCustom.cpp 72 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, NodeList* impl)
84 return JSValue::encode(toJS(exec, static_cast<JSNodeList*>(exec->callee())->impl()->item(index)));
101 return toJS(exec, thisObj->impl()->itemWithName(identifierToAtomicString(propertyName)));
JSWorkerContextBase.cpp 64 JSValue toJS(ExecState* exec, JSDOMGlobalObject*, WorkerContext* workerContext)
66 return toJS(exec, workerContext);
69 JSValue toJS(ExecState*, WorkerContext* workerContext)
JSDataViewCustom.cpp 45 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, DataView* object)
62 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), view.get())));
JSHTMLCollectionCustom.cpp 48 return toJS(exec, collection->globalObject(), namedItems[0].get());
53 return toJS(exec, collection->globalObject(), StaticNodeList::adopt(namedItems).get());
75 return JSValue::encode(toJS(exec, jsCollection->globalObject(), collection->item(index)));
90 return JSValue::encode(toJS(exec, jsCollection->globalObject(), node));
123 return toJS(exec, globalObject(), impl()->item(index));
132 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, HTMLCollection* collection)
JSCanvasRenderingContext2DCustom.cpp 45 static JSValue toJS(ExecState* exec, CanvasStyle* style)
48 return toJS(exec, style->canvasGradient());
50 return toJS(exec, style->canvasPattern());
69 return toJS(exec, context->strokeStyle());
85 return toJS(exec, context->fillStyle());
358 JSValue pattern = toJS(exec,
366 JSValue pattern = toJS(exec,
391 return toJS(exec, globalObject(), WTF::getPtr(imageData));
JSDOMWindowBase.cpp 67 symbolTablePutWithAttributes(exec->globalData(), Identifier(exec, "document"), toJS(exec, this, m_impl->document()), DontDelete | ReadOnly);
190 JSValue toJS(ExecState* exec, JSDOMGlobalObject*, DOMWindow* domWindow)
192 return toJS(exec, domWindow);
195 JSValue toJS(ExecState* exec, DOMWindow* domWindow)
JSDOMWindowShell.cpp 171 JSValue toJS(ExecState* exec, Frame* frame)
JSDOMBinding.h 254 // FIXME: These are a stop-gap until all toJS calls can be converted to pass a globalObject
256 inline JSC::JSValue toJS(JSC::ExecState* exec, T* ptr)
258 return toJS(exec, deprecatedGlobalObjectForPrototype(exec), ptr);
261 inline JSC::JSValue toJS(JSC::ExecState* exec, PassRefPtr<T> ptr)
263 return toJS(exec, deprecatedGlobalObjectForPrototype(exec), ptr.get());
272 inline JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, PassRefPtr<T> ptr)
274 return toJS(exec, globalObject, ptr.get());
JSWebGLRenderingContextCustom.cpp 82 static JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, const WebGLGetInfo& info)
105 return toJS(exec, globalObject, info.getWebGLBuffer());
107 return toJS(exec, globalObject, info.getWebGLFloatArray());
109 return toJS(exec, globalObject, info.getWebGLFramebuffer());
111 return toJS(exec, globalObject, info.getWebGLIntArray());
115 return toJS(exec, globalObject, info.getWebGLProgram());
117 return toJS(exec, globalObject, info.getWebGLRenderbuffer());
119 return toJS(exec, globalObject, info.getWebGLTexture());
121 return toJS(exec, globalObject, info.getWebGLUnsignedByteArray());
123 return toJS(exec, globalObject, info.getWebGLVertexArrayObjectOES())
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestInterface.cpp 106 return JSValue::encode(asObject(toJS(exec, static_cast<JSTestInterfaceConstructor*>(exec->callee())->globalObject(), TestInterface::create(context))));
171 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, TestInterface* object)
JSTestMediaQueryListListener.cpp 182 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, TestMediaQueryListListener* object)
JSTestSerializedScriptValueInterface.cpp 166 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, TestSerializedScriptValueInterface* object)
JSTestObj.cpp 304 JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->readOnlyTestObjAttr()));
367 JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->testObjAttr()));
376 JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->xmlObjAttr()));
    [all...]
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundlePage.cpp 457 static JSRetainPtr<JSStringRef> toJS(const char* string)
467 JSValueRef documentValue = JSObjectGetProperty(context, globalObject, toJS("document").get(), 0);
474 JSValueRef documentElementValue = JSObjectGetProperty(context, document, toJS("documentElement").get(), 0);
606 JSObjectSetProperty(context, window, toJS("__worldID").get(), JSValueMakeNumber(context, LayoutTestController::worldIDForWorld(world)), kJSPropertyAttributeReadOnly, 0);
    [all...]

Completed in 1151 milliseconds

12