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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaValuesDynamic.cpp 30 : m_frame(frame)
32 ASSERT(m_frame);
37 return adoptRef(new MediaValuesDynamic(m_frame));
44 calculateDefaultFontSize(m_frame),
45 calculateViewportWidth(m_frame),
46 calculateViewportHeight(m_frame),
54 calculateDefaultFontSize(m_frame),
55 calculateViewportWidth(m_frame),
56 calculateViewportHeight(m_frame),
67 return calculateViewportWidth(m_frame);
    [all...]
StyleMedia.cpp 44 FrameView* view = m_frame ? m_frame->view() : 0;
53 if (!m_frame)
56 Document* document = m_frame->document();
66 MediaQueryEvaluator screenEval(m_frame);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMWindowProperty.cpp 36 : m_frame(frame)
44 if (m_frame) {
46 m_frame->domWindow()->registerProperty(this);
48 m_associatedDOMWindow = m_frame->domWindow();
66 ASSERT(m_frame);
67 m_frame = nullptr;
83 ASSERT(m_frame);
92 visitor->trace(m_frame);
FrameDestructionObserver.cpp 34 : m_frame(nullptr)
48 if (m_frame)
49 m_frame->removeDestructionObserver(this);
51 m_frame = frame;
53 if (m_frame)
54 m_frame->addDestructionObserver(this);
60 m_frame = nullptr;
71 visitor->trace(m_frame);
Screen.cpp 50 if (!m_frame)
52 FrameHost* host = m_frame->host();
54 return lroundf(screenRect(m_frame->view()).height() * host->deviceScaleFactor());
55 return static_cast<unsigned>(screenRect(m_frame->view()).height());
60 if (!m_frame)
62 FrameHost* host = m_frame->host();
64 return lroundf(screenRect(m_frame->view()).width() * host->deviceScaleFactor());
65 return static_cast<unsigned>(screenRect(m_frame->view()).width());
70 if (!m_frame)
72 return static_cast<unsigned>(screenDepth(m_frame->view()))
    [all...]
History.cpp 58 if (!m_frame)
60 if (!m_frame->page())
62 return m_frame->page()->backForward().backForwardListCount();
73 if (!m_frame)
76 if (HistoryItem* historyItem = m_frame->loader().currentItem())
104 if (!m_frame)
112 if (!activeDocument->canNavigate(*m_frame))
115 m_frame->navigationScheduler().scheduleHistoryNavigation(distance);
120 Document* document = m_frame->document();
132 if (!m_frame || !m_frame->page() || !m_frame->loader().documentLoader()
    [all...]
Navigator.cpp 81 if (!m_frame || !m_frame->page())
84 return m_frame->loader().userAgent(m_frame->document()->url());
90 m_plugins = DOMPluginArray::create(m_frame);
97 m_mimeTypes = DOMMimeTypeArray::create(m_frame);
103 if (!m_frame)
106 Settings* settings = m_frame->settings();
110 return cookiesEnabled(m_frame->document());
115 if (!m_frame || !m_frame->settings()
    [all...]
Location.cpp 56 ASSERT(m_frame);
58 const KURL& url = m_frame->document()->url();
67 if (!m_frame)
75 if (!m_frame)
82 if (!m_frame)
89 if (!m_frame)
96 if (!m_frame)
103 if (!m_frame)
110 if (!m_frame)
117 if (!m_frame)
    [all...]
DOMWindowProperty.h 43 LocalFrame* frame() const { return m_frame; }
52 RawPtrWillBeWeakMember<LocalFrame> m_frame; member in class:blink::DOMWindowProperty
FrameDestructionObserver.h 50 LocalFrame* frame() const { return m_frame; }
61 RawPtrWillBeWeakMember<LocalFrame> m_frame; member in class:blink::FrameDestructionObserver
LocalDOMWindow.cpp 326 return m_frame && allowPopUp(*m_frame);
403 ASSERT(init.frame() == m_frame);
411 if (!m_frame)
414 m_frame->script().updateDocument();
417 if (m_frame->page() && m_frame->view()) {
418 if (ScrollingCoordinator* scrollingCoordinator = m_frame->page()->scrollingCoordinator()) {
419 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_frame->view(), HorizontalScrollbar);
420 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_frame->view(), VerticalScrollbar)
    [all...]
FrameConsole.h 77 ASSERT(m_frame);
78 return *m_frame;
81 RawPtrWillBeMember<LocalFrame> m_frame; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
FrameData.cpp 35 : m_frame(nullptr)
58 if (m_frame) {
59 m_frame.clear();
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoader.cpp 114 : m_frame(frame)
136 visitor->trace(m_frame);
146 initialRequest.setFrameType(m_frame->isMainFrame() ? WebURLRequest::FrameTypeTopLevel : WebURLRequest::FrameTypeNested);
147 m_provisionalDocumentLoader = client()->createDocumentLoader(m_frame, initialRequest, SubstituteData());
149 m_frame->document()->cancelParsing();
155 return static_cast<FrameLoaderClient*>(m_frame->client());
172 m_frame->navigationScheduler().startTimer();
179 if (m_frame->document() && m_frame->document()->parsing()) {
181 m_frame->document()->setParsing(false)
    [all...]
FrameFetchContext.cpp 50 : m_frame(frame)
56 FrameLoader::reportLocalLoadFailed(m_frame, url.elidedString());
89 m_frame->loader().applyUserAgent(request);
94 if (m_frame->tree().top()->isLocalFrame())
95 request.setFirstPartyForCookies(toLocalFrame(m_frame->tree().top())->document()->firstPartyForCookies());
103 FrameLoadType loadType = m_frame->loader().loadType();
107 Frame* parentFrame = m_frame->tree().parent();
130 return loader ? loader : m_frame->loader().documentLoader();
135 m_frame->loader().client()->dispatchDidChangeResourcePriority(identifier, loadPriority, intraPriorityValue);
140 m_frame->loader().applyUserAgent(request)
    [all...]
NavigationScheduler.cpp 236 : m_frame(frame)
252 return m_frame->page();
271 schedule(adoptPtr(new ScheduledRedirect(delay, m_frame->document(), url, delay <= 1)));
303 lockBackForwardList = lockBackForwardList || mustLockBackForwardList(m_frame);
309 if (originDocument->securityOrigin()->canAccess(m_frame->document()->securityOrigin())) {
311 if (parsedURL.hasFragmentIdentifier() && equalIgnoringFragmentIdentifier(m_frame->document()->url(), parsedURL)) {
312 FrameLoadRequest request(originDocument, ResourceRequest(m_frame->document()->completeURL(url), referrer), "_self");
316 m_frame->loader().load(request);
326 ASSERT(m_frame->page());
327 const KURL& url = m_frame->document()->url()
    [all...]
DocumentLoader.cpp 77 : m_frame(frame)
93 if (!m_frame)
95 return &m_frame->loader();
105 ASSERT(!m_frame || !isLoading());
118 if (m_frame && m_frame->loader().documentLoader() == this)
119 return m_frame->document();
166 ASSERT(!mainResourceLoader() || !mainResourceLoader()->defersLoading() || InspectorInstrumentation::isDebuggerPaused(m_frame));
182 RefPtrWillBeRawPtr<LocalFrame> protectFrame(m_frame);
193 Document* doc = m_frame->document()
516 DocumentInit init(url(), m_frame); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/timing/
PerformanceNavigation.cpp 47 if (!m_frame)
50 DocumentLoader* documentLoader = m_frame->loader().documentLoader();
67 if (!m_frame)
70 DocumentLoader* loader = m_frame->loader().documentLoader();
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
FFTConvolver.h 53 size_t fftSize() const { return m_frame.fftSize(); }
56 FFTFrame m_frame; member in class:blink::FFTConvolver
  /external/chromium_org/third_party/WebKit/Source/web/tests/
FakeWebPlugin.cpp 39 : m_frame(frame)
56 m_frame = 0;
  /external/chromium_org/third_party/WebKit/Source/core/testing/
DummyPageHolder.cpp 77 m_frame = LocalFrame::create(m_frameLoaderClient.get(), &m_page->frameHost(), 0);
78 m_frame->setView(FrameView::create(m_frame.get(), initialViewSize));
79 m_frame->init();
87 ASSERT(m_frame->hasOneRef());
89 m_frame.clear();
99 ASSERT(m_frame);
100 return *m_frame;
105 return *m_frame->view();
110 return *m_frame->domWindow()->document()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
DOMSelection.cpp 76 ASSERT(m_frame);
77 return m_frame->selection().selection();
104 if (!m_frame)
112 if (!m_frame)
120 if (!m_frame)
128 if (!m_frame)
136 if (!m_frame)
144 if (!m_frame)
152 if (!m_frame)
160 if (!m_frame)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/audio/mac/
FFTFrameMac.cpp 62 m_frame.realp = m_realData.data();
63 m_frame.imagp = m_imagData.data();
72 m_frame.realp = 0;
73 m_frame.imagp = 0;
88 m_frame.realp = m_realData.data();
89 m_frame.imagp = m_imagData.data();
93 memcpy(realData(), frame.m_frame.realp, nbytes);
94 memcpy(imagData(), frame.m_frame.imagp, nbytes);
109 vDSP_ctoz((DSPComplex*)scaledData.data(), 2, &m_frame, 1, m_FFTSize / 2);
110 vDSP_fft_zrip(m_FFTSetup, &m_frame, 1, m_log2FFTSize, FFT_FORWARD)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/storage/
Storage.h 50 unsigned length(ExceptionState& ec) const { return m_storageArea->length(ec, m_frame); }
51 String key(unsigned index, ExceptionState& ec) const { return m_storageArea->key(index, ec, m_frame); }
52 String getItem(const String& key, ExceptionState& ec) const { return m_storageArea->getItem(key, ec, m_frame); }
53 void setItem(const String& key, const String& value, ExceptionState& ec) { m_storageArea->setItem(key, value, ec, m_frame); }
54 void removeItem(const String& key, ExceptionState& ec) { m_storageArea->removeItem(key, ec, m_frame); }
55 void clear(ExceptionState& ec) { m_storageArea->clear(ec, m_frame); }
56 bool contains(const String& key, ExceptionState& ec) const { return m_storageArea->contains(key, ec, m_frame); }
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
DOMMimeType.cpp 73 // Something like: m_frame->host()->client()->allowPlugins().
74 if (!m_frame || !m_frame->loader().allowPlugins(NotAboutToInstantiatePlugin))
77 return DOMPlugin::create(m_pluginData.get(), m_frame, m_pluginData->mimePluginIndices()[m_index]);

Completed in 611 milliseconds

1 2 3 4 5