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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameDestructionObserver.cpp 34 : m_frame(0)
47 if (m_frame)
48 m_frame->removeDestructionObserver(this);
50 m_frame = frame;
52 if (m_frame)
53 m_frame->addDestructionObserver(this);
58 m_frame = 0;
DOMWindowProperty.cpp 37 : m_frame(frame)
43 if (m_frame) {
44 m_associatedDOMWindow = m_frame->domWindow();
55 m_frame = 0;
61 ASSERT(m_frame);
69 m_frame = 0;
75 ASSERT(m_frame);
Screen.cpp 51 if (!m_frame)
53 FrameHost* host = m_frame->host();
55 return lroundf(screenRect(m_frame->view()).height() * host->deviceScaleFactor());
56 return static_cast<unsigned>(screenRect(m_frame->view()).height());
61 if (!m_frame)
63 FrameHost* host = m_frame->host();
65 return lroundf(screenRect(m_frame->view()).width() * host->deviceScaleFactor());
66 return static_cast<unsigned>(screenRect(m_frame->view()).width());
71 if (!m_frame)
73 return static_cast<unsigned>(screenDepth(m_frame->view()))
    [all...]
DOMWindowProperty.h 41 LocalFrame* frame() const { return m_frame; }
46 LocalFrame* m_frame; member in class:WebCore::DOMWindowProperty
FrameDestructionObserver.h 40 LocalFrame* frame() const { return m_frame; }
46 LocalFrame* m_frame; member in class:WebCore::FrameDestructionObserver
History.cpp 54 if (!m_frame)
56 if (!m_frame->page())
58 return m_frame->page()->backForward().backForwardListCount();
69 if (!m_frame)
72 if (HistoryItem* historyItem = m_frame->loader().currentItem())
100 if (!m_frame)
108 if (!activeDocument->canNavigate(*m_frame))
111 m_frame->navigationScheduler().scheduleHistoryNavigation(distance);
116 Document* document = m_frame->document();
128 if (!m_frame || !m_frame->page() || !m_frame->loader().documentLoader()
    [all...]
Navigator.cpp 82 if (!m_frame || !m_frame->page())
85 return m_frame->loader().userAgent(m_frame->document()->url());
91 m_plugins = DOMPluginArray::create(m_frame);
98 m_mimeTypes = DOMMimeTypeArray::create(m_frame);
104 if (!m_frame)
107 Settings* settings = m_frame->settings();
111 return cookiesEnabled(m_frame->document());
116 if (!m_frame || !m_frame->settings()
    [all...]
Console.cpp 61 if (!m_frame)
63 return m_frame->document();
68 if (!m_frame || !m_frame->host() || !callStack.get())
72 if (m_frame->chromeClient().shouldReportDetailedMessageForSource(callStack->at(0).sourceURL())) {
76 m_frame->chromeClient().addMessageToConsole(m_frame, ConsoleAPIMessageSource, level, message, callStack->at(0).lineNumber(), callStack->at(0).sourceURL(), stackTrace);
Location.cpp 52 ASSERT(m_frame);
54 const KURL& url = m_frame->document()->url();
63 if (!m_frame)
71 if (!m_frame)
78 if (!m_frame)
85 if (!m_frame)
92 if (!m_frame)
99 if (!m_frame)
106 if (!m_frame)
113 if (!m_frame)
    [all...]
LocalDOMWindow.cpp 317 return m_frame && allowPopUp(*m_frame);
395 ASSERT(init.frame() == m_frame);
403 if (!m_frame) {
408 m_frame->script().updateDocument();
411 if (m_frame->page() && m_frame->view()) {
412 if (ScrollingCoordinator* scrollingCoordinator = m_frame->page()->scrollingCoordinator()) {
413 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_frame->view(), HorizontalScrollbar);
414 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_frame->view(), VerticalScrollbar)
    [all...]
BarProp.cpp 47 if (!m_frame)
49 FrameHost* host = m_frame->host();
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaValuesDynamic.cpp 22 : m_frame(frame)
24 ASSERT(m_frame);
29 return adoptRef(new MediaValuesDynamic(m_frame));
36 calculateDefaultFontSize(m_frame),
37 calculateViewportWidth(m_frame),
38 calculateViewportHeight(m_frame),
46 calculateDefaultFontSize(m_frame),
47 calculateViewportWidth(m_frame),
48 calculateViewportHeight(m_frame),
59 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(type(), m_frame);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
DummyPageHolder.cpp 56 m_frame = LocalFrame::create(&m_frameLoaderClient, &m_page->frameHost(), 0);
57 m_frame->setView(FrameView::create(m_frame.get(), initialViewSize));
58 m_frame->init();
66 ASSERT(m_frame->hasOneRef());
68 m_frame.clear();
78 return *m_frame;
83 return *m_frame->view();
88 return *m_frame->domWindow()->document();
  /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 111 : m_frame(frame)
134 m_provisionalDocumentLoader = client()->createDocumentLoader(m_frame, ResourceRequest(KURL(ParsedURLString, emptyString())), SubstituteData());
136 m_frame->document()->cancelParsing();
142 return static_cast<FrameLoaderClient*>(m_frame->client());
159 m_frame->navigationScheduler().startTimer();
168 if (m_frame->document() && m_frame->document()->parsing()) {
170 m_frame->document()->setParsing(false);
173 if (Document* doc = m_frame->document()) {
180 m_frame->navigationScheduler().cancel()
    [all...]
FrameFetchContext.cpp 49 : m_frame(frame)
55 FrameLoader::reportLocalLoadFailed(m_frame, url.elidedString());
85 m_frame->loader().applyUserAgent(request);
93 if (m_frame->tree().top()->isLocalFrame())
94 request.setFirstPartyForCookies(toLocalFrame(m_frame->tree().top())->document()->firstPartyForCookies());
102 FrameLoadType loadType = m_frame->loader().loadType();
106 Frame* parentFrame = m_frame->tree().parent();
129 return loader ? loader : m_frame->loader().documentLoader();
134 m_frame->loader().client()->dispatchDidChangeResourcePriority(identifier, loadPriority, intraPriorityValue);
139 m_frame->loader().applyUserAgent(request)
    [all...]
NavigationScheduler.cpp 228 : m_frame(frame)
245 InspectorInstrumentation::frameClearedScheduledNavigation(m_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())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/timing/
PerformanceNavigation.cpp 48 if (!m_frame)
51 DocumentLoader* documentLoader = m_frame->loader().documentLoader();
68 if (!m_frame)
71 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:WebCore::FFTConvolver
  /external/chromium_org/third_party/WebKit/Source/web/tests/
FakeWebPlugin.cpp 40 : m_frame(frame)
57 m_frame = 0;
  /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/page/
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/core/editing/
InputMethodController.cpp 65 : m_frame(frame)
82 return m_frame.editor();
93 return m_frame.eventHandler().handleTextInputEvent(text, 0, TextEventInputComposition);
106 m_frame.selection().setSelection(selection, 0);
148 m_frame.chromeClient().willSetInputMethodState();
162 Position start = m_frame.selection().start();
163 Position end = m_frame.selection().end();
171 m_frame.chromeClient().didCancelCompositionOnSelectionChange();
188 if (m_frame.selection().isNone())
194 if (Element* target = m_frame.document()->focusedElement())
    [all...]
Editor.cpp 104 m_editor->m_frame.selection().revealSelection(ScrollAlignment::alignToEdgeIfNeeded, RevealExtent);
111 VisibleSelection selection = m_frame.selection().selection();
128 if (!m_frame.settings())
131 return EditingBehavior(m_frame.settings()->editingBehaviorType());
142 if (Page* page = m_frame.page())
149 if (Page* page = m_frame.page())
181 return m_frame.selection().rootEditableElement();
186 return m_frame.selection().isContentRichlyEditable();
196 return !m_frame.selection().isInPasswordField() && !dispatchCPPEvent(EventTypeNames::beforecut, ClipboardNumb);
201 return !m_frame.selection().isInPasswordField() && !dispatchCPPEvent(EventTypeNames::beforecopy, ClipboardNumb)
    [all...]

Completed in 523 milliseconds

1 2 3 4