HomeSort by relevance Sort by last modified time
    Searched refs:toJS (Results 76 - 100 of 122) sorted by null

1 2 34 5

  /external/webkit/Source/WebCore/bindings/js/
JSSQLTransactionSyncCustom.cpp 90 JSValue result = toJS(exec, globalObject(), WTF::getPtr(m_impl->executeSQL(sqlStatement, sqlValues, ec)));
JSSharedWorkerCustom.cpp 78 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), worker.release())));
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());
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));
JSDataViewCustom.cpp 45 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, DataView* object)
62 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), view.get())));
JSEventCustom.cpp 114 return impl()->isClipboardEvent() ? toJS(exec, globalObject(), impl()->clipboardData()) : jsUndefined();
117 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, Event* event)
JSEventListener.cpp 110 args.append(toJS(exec, globalObject, event));
125 JSValue currentTarget = toJS(exec, globalObject, event->currentTarget());
JSXSLTProcessorCustom.cpp 68 return toJS(exec, impl()->transformToFragment(node, doc).get());
81 return toJS(exec, resultDocument.get());
JSHTMLOptionsCollectionCustom.cpp 94 JSHTMLSelectElement* base = static_cast<JSHTMLSelectElement*>(asObject(toJS(exec, globalObject(), imp->base())));
JSNodeCustom.h 77 inline JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, Node* node)
JSOptionConstructor.cpp 70 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), element.release())));
JSSVGPathSegCustom.cpp 61 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, SVGPathSeg* object)
JSXMLHttpRequestCustom.cpp 169 return toJS(exec, globalObject(), document);
181 return toJS(exec, globalObject(), blob);
195 return toJS(exec, globalObject(), arrayBuffer);
JSDOMWindowShell.h 91 JSC::JSValue toJS(JSC::ExecState*, Frame*);
JSHTMLCanvasElementCustom.cpp 88 return toJS(exec, globalObject(), WTF::getPtr(context));
JSInjectedScriptManager.cpp 67 args.append(toJS(scriptState, globalObject, m_injectedScriptHost.get()));
JSLazyEventListener.cpp 112 setWrapper(exec->globalData(), asObject(toJS(exec, globalObject, m_originalNode)));
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebFrame.cpp 567 JSC::JSObject* globalObjectObj = toJS(globalObjectRef);
584 return toRef(exec, toJS(exec, globalObject, nodeHandle->coreNode()));
596 return toRef(exec, toJS(exec, globalObject, rangeHandle->coreRange()));
607 if (!toJS(element)->inherits(&JSElement::s_info))
610 RefPtr<CSSComputedStyleDeclaration> style = computedStyle(static_cast<JSElement*>(toJS(element))->impl(), true);
613 return toRef(exec, toJS(exec, globalObject, style.get()));
618 if (!toJS(element)->inherits(&JSElement::s_info))
621 return counterValueForElement(static_cast<JSElement*>(toJS(element))->impl());
626 if (!toJS(element)->inherits(&JSElement::s_info))
629 return markerTextForListItem(static_cast<JSElement*>(toJS(element))->impl())
    [all...]
  /external/webkit/Source/WebCore/bindings/objc/
DOMInternal.mm 120 JSC::JSObject *scriptImp = asObject(WebCore::toJS(exec, globalObject, nodeImpl));
  /external/webkit/Source/WebKit/mac/WebView/
WebScriptWorld.mm 106 return [self findOrCreateWorld:currentWorld(toJS(context))];
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestInterface.h 58 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, TestInterface*);
JSTestMediaQueryListListener.h 56 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, TestMediaQueryListListener*);
JSTestSerializedScriptValueInterface.h 58 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, TestSerializedScriptValueInterface*);
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)
  /external/webkit/Source/WebKit/win/
WebScriptWorld.cpp 137 return findOrCreateWorld(currentWorld(toJS(context))).copyRefTo(outWorld);

Completed in 331 milliseconds

1 2 34 5