Searched refs:m_frame (Results 1 - 25 of 202) sorted by path

123456789

/external/webkit/Source/JavaScriptCore/heap/
H A DHandleStack.cpp53 heapRootMarker.mark(block, m_frame.m_next - block);
59 m_frame.m_next = block;
60 m_frame.m_end = block + m_blockStack.blockLength;
H A DHandleStack.h66 Frame m_frame; member in class:JSC::HandleStack
75 lastFrame = m_frame;
87 if (lastFrame.m_end != m_frame.m_end) { // Zapping to a frame in a different block.
100 for (HandleSlot it = m_frame.m_next - 1; it != lastFrame.m_next - 1; --it)
113 if (lastFrame.m_end != m_frame.m_end) // Popping to a frame in a different block.
116 m_frame = lastFrame;
122 if (m_frame.m_next == m_frame.m_end)
124 return m_frame.m_next++;
/external/webkit/Source/WebCore/bindings/
H A DScriptControllerBase.cpp38 if (m_frame->loader()->isSandboxed(SandboxScripts))
41 Settings* settings = m_frame->settings();
42 const bool allowed = m_frame->loader()->client()->allowJavaScript(settings && settings->isJavaScriptEnabled());
44 m_frame->loader()->client()->didNotAllowScript();
50 return executeScript(ScriptSourceCode(script, forceUserGesture ? KURL() : m_frame->document()->url()));
76 if (!m_frame->page()
77 || !m_frame->page()->javaScriptURLsAreAllowed()
78 || !m_frame->document()->contentSecurityPolicy()->allowJavaScriptURLs()
79 || m_frame->inViewSourceMode())
84 RefPtr<Frame> protector(m_frame);
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSDataGridDataSource.cpp45 , m_frame(frame)
H A DJSDataGridDataSource.h58 RefPtr<Frame> m_frame; member in class:WebCore::JSDataGridDataSource
H A DScriptController.cpp62 : m_frame(frame)
111 Strong<JSDOMWindowShell> windowShell(*world->globalData(), new JSDOMWindowShell(m_frame->domWindow(), world));
137 RefPtr<Frame> protect = m_frame;
139 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willEvaluateScript(m_frame, sourceURL, sourceCode.startLine());
149 m_frame->keepAlive();
192 windowShell->setWindow(m_frame->domWindow());
199 if (Page* page = m_frame->page()) {
221 if (Page* page = m_frame->page()) {
226 m_frame->loader()->dispatchDidClearWindowObjectInWorld(world);
234 ScriptableDocumentParser* parser = m_frame
[all...]
H A DScriptController.h179 Frame* m_frame; member in class:WebCore::ScriptController
H A DScriptControllerMac.mm99 jobject applet = m_frame->loader()->client()->javaApplet(widgetView);
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptController.cpp109 : m_frame(frame)
233 RefPtr<Frame> protect(m_frame);
239 m_frame->keepAlive();
251 ScriptableDocumentParser* parser = m_frame->document()->scriptableDocumentParser();
417 m_windowScriptNPObject = createScriptObject(m_frame);
435 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(m_frame);
440 DOMWindow* window = m_frame->domWindow();
H A DScriptController.h192 Frame* m_frame; member in class:WebCore::ScriptController
H A DScriptControllerQt.cpp39 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(m_frame);
H A DV8DOMWindowShell.cpp161 : m_frame(frame)
176 m_frame->loader()->client()->didDestroyScriptContextForFrame();
332 if (!installDOMWindow(v8Context, m_frame->domWindow())) {
341 m_frame->loader()->client()->didCreateScriptContextForFrame();
345 m_frame->loader()->dispatchDidClearWindowObjectInWorld(0);
355 if (!m_frame->loader()->activeDocumentLoader())
381 && !m_frame->loader()->client()->allowScriptExtension(extensions[i]->name(), extensionGroup))
465 if (!m_frame->document()->frame()) {
470 v8::Handle<v8::Value> documentWrapper = toV8(m_frame->document());
474 checkDocumentWrapper(m_document, m_frame
[all...]
H A DV8DOMWindowShell.h112 Frame* m_frame; member in class:WebCore::V8DOMWindowShell
H A DV8DataGridDataSource.cpp47 , m_frame(frame)
H A DV8DataGridDataSource.h63 RefPtr<Frame> m_frame; member in class:WebCore::V8DataGridDataSource
H A DV8Proxy.cpp189 : m_frame(frame)
342 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willEvaluateScript(m_frame, source.url().isNull() ? String() : source.url().string(), source.startLine());
414 m_frame->keepAlive();
466 m_frame->keepAlive();
477 cookie = InspectorInstrumentation::willCallFunction(m_frame, resourceName, lineNumber);
514 m_frame->keepAlive();
597 Page* page = m_frame->page();
739 if (m_frame != V8Proxy::retrieveFrame(context->get()))
H A DV8Proxy.h139 Frame* frame() { return m_frame; }
309 Frame* m_frame; member in class:WebCore::V8Proxy
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CustomApplicationInstalledCallback.cpp38 , m_frame(frame)
51 v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get());
62 RefPtr<Frame> protector(m_frame);
65 invokeCallback(m_callback, 1, argv, callbackReturnValue, m_frame->document());
H A DV8CustomApplicationInstalledCallback.h54 RefPtr<Frame> m_frame; member in class:WebCore::V8CustomApplicationInstalledCallback
/external/webkit/Source/WebCore/css/
H A DMediaQueryEvaluator.cpp78 : m_frame(0)
86 , m_frame(0)
94 , m_frame(0)
102 , m_frame(frame)
104 , m_expResult(false) // doesn't matter when we have m_frame and m_style
521 if (!m_frame || !m_style)
535 return func(expr->value(), m_style, m_frame, NoPrefix);
H A DMediaQueryEvaluator.h85 Frame* m_frame; // not owned member in class:WebCore::MediaQueryEvaluator
H A DStyleMedia.cpp38 : m_frame(frame)
44 FrameView* view = m_frame ? m_frame->view() : 0;
53 if (!m_frame)
56 Document* document = m_frame->document();
74 MediaQueryEvaluator screenEval(type(), m_frame, rootStyle.get());
H A DStyleMedia.h43 void disconnectFrame() { m_frame = 0; }
52 Frame* m_frame; member in class:WebCore::StyleMedia
/external/webkit/Source/WebCore/dom/
H A DDocument.cpp450 m_frame = frame;
510 m_shouldProcessNoScriptElement = !(m_frame && m_frame->script()->canExecuteScripts(NotAboutToExecuteScript));
1355 return m_frame ? m_frame->view() : 0;
1360 return m_frame ? m_frame->page() : 0;
1365 return m_frame ? m_frame->settings() : 0;
1546 if (m_frame)
[all...]
H A DDocument.h506 Frame* frame() const { return m_frame; } // can be NULL
1157 Frame* m_frame;

Completed in 264 milliseconds

123456789