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

1 2

  /external/webkit/Source/WebKit/android/nav/
CachedHistory.h 29 #include "CachedFrame.h"
42 void addToVisited(const CachedNode* , CachedFrame::Direction );
43 bool checkVisited(const CachedNode* , CachedFrame::Direction ) const;
55 void setWorking(CachedFrame::Direction , const CachedFrame* ,
62 CachedFrame::Direction mDirection;
69 CachedFrame::Direction mLastMove;
70 CachedFrame::Direction mPriorMove;
81 const char* direction(CachedFrame::Direction d) const;
CachedHistory.cpp 27 #include "CachedFrame.h"
39 mLastMove = CachedFrame::UNINITIALIZED;
40 mPriorMove = CachedFrame::UNINITIALIZED;
44 void CachedHistory::addToVisited(const CachedNode* node, CachedFrame::Direction direction)
51 bool CachedHistory::checkVisited(const CachedNode* node, CachedFrame::Direction direction) const
84 mPriorMove = mLastMove = CachedFrame::UNINITIALIZED;
89 void CachedHistory::setWorking(CachedFrame::Direction newMove,
90 const CachedFrame* cursorFrame, const CachedNode* cursor,
93 CachedFrame::Direction lastAxis = (CachedFrame::Direction) (mLastMove & ~CachedFrame::RIGHT_DOWN); // up, left or uninitialize
    [all...]
CachedFrame.h 52 class CachedFrame {
75 CachedFrame() {}
82 void addFrame(CachedFrame& child) { mCachedFrames.append(child); }
87 bool checkVisited(const CachedNode* , CachedFrame::Direction ) const;
94 const CachedNode* currentCursor(const CachedFrame** ) const;
96 const CachedNode* currentFocus(const CachedFrame** ) const;
101 bool* inside, const CachedNode** , const CachedFrame** directFrame,
102 const CachedFrame** resultFrame, int* x,
104 const CachedFrame* findBestFrameAt(int x, int y) const;
106 const CachedFrame** , int* x, int* y) const
    [all...]
CachedNode.h 45 class CachedFrame;
91 WebCore::IntRect bounds(const CachedFrame* ) const;
94 void clearCursor(CachedFrame* );
100 WebCore::IntRect cursorRingBounds(const CachedFrame* ) const;
101 void cursorRings(const CachedFrame* , WTF::Vector<WebCore::IntRect>* ) const;
104 void fixUpCursorRects(const CachedFrame* frame);
108 void hideCursor(CachedFrame* );
109 WebCore::IntRect hitBounds(const CachedFrame* ) const;
120 bool isNavable(const CachedFrame* frame, const WebCore::IntRect& clip) const {
128 bool isTextField(const CachedFrame*) const
    [all...]
CachedFrame.cpp 32 #include "CachedFrame.h"
40 WebCore::IntRect CachedFrame::adjustBounds(const CachedNode* node,
68 bool CachedFrame::CheckBetween(Direction direction, const WebCore::IntRect& bestRect,
107 bool CachedFrame::checkBetween(BestData* best, Direction direction)
137 bool CachedFrame::checkRings(const CachedNode* node,
143 bool CachedFrame::checkVisited(const CachedNode* node, Direction direction) const
148 void CachedFrame::clearCursor()
159 int CachedFrame::compare(BestData& testData, const BestData& bestData) const
324 const CachedNode* CachedFrame::currentCursor(const CachedFrame** framePtr) cons
    [all...]
CachedRoot.h 29 #include "CachedFrame.h"
47 class CachedRoot : public CachedFrame {
61 const CachedNode* findAt(const WebCore::IntRect& , const CachedFrame** ,
78 const CachedNode* moveCursor(Direction , const CachedFrame** , WebCore::IntPoint* scroll);
82 * @param framePtr If non-zero, returns CachedFrame* containing result.
86 const CachedFrame** framePtr) const;
95 void setCursor(CachedFrame* , CachedNode* );
97 void setCachedFocus(CachedFrame* , CachedNode* );
113 friend class CachedFrame;
CachedNode.cpp 28 #include "CachedFrame.h"
37 WebCore::IntRect CachedNode::bounds(const CachedFrame* frame) const
42 void CachedNode::clearCursor(CachedFrame* parent)
45 CachedFrame* child = const_cast<CachedFrame*>(parent->hasFrame(this));
85 void CachedNode::cursorRings(const CachedFrame* frame,
93 WebCore::IntRect CachedNode::cursorRingBounds(const CachedFrame* frame) const
105 void CachedNode::fixUpCursorRects(const CachedFrame* frame)
224 void CachedNode::hideCursor(CachedFrame* parent)
227 CachedFrame* child = const_cast<CachedFrame*>(parent->hasFrame(this))
    [all...]
CacheBuilder.h 61 class CachedFrame;
224 CachedRoot* cachedRoot, CachedFrame* cachedFrame);
225 bool CleanUpContainedNodes(CachedRoot* cachedRoot, CachedFrame* cachedFrame,
251 bool setData(CachedFrame* );
WebView.cpp 33 #include "CachedFrame.h"
404 const CachedFrame* frame;
619 const CachedFrame* cachedFrame;
620 const CachedNode* cachedNode = root->currentCursor(&cachedFrame);
622 *bounds = cachedNode->cursorRingBounds(cachedFrame);
640 const CachedFrame* frame;
671 m_frameCacheUI->setCursor(const_cast<CachedFrame*>(frame),
687 const CachedFrame* oldCursorFrame;
798 static CachedFrame::Direction KeyToDirection(int32_t keyCode
    [all...]
  /external/webkit/Source/WebCore/history/
CachedFrame.h 36 class CachedFrame;
43 typedef Vector<RefPtr<CachedFrame> > CachedFrameVector;
71 class CachedFrame : public RefCounted<CachedFrame>, private CachedFrameBase {
73 static PassRefPtr<CachedFrame> create(Frame* frame) { return adoptRef(new CachedFrame(frame)); }
91 CachedFrame(Frame*);
CachedPage.h 29 #include "CachedFrame.h"
51 CachedFrame* cachedMainFrame() { return m_cachedMainFrame.get(); }
59 RefPtr<CachedFrame> m_cachedMainFrame;
CachedFrame.cpp 58 DEFINE_STATIC_LOCAL(WTF::RefCountedLeakCounter, counter, ("CachedFrame"));
126 CachedFrame::CachedFrame(Frame* frame)
149 m_childFrames.append(CachedFrame::create(child));
165 // 2 - It's much easier to destroy a CachedFrame while it resides in the PageCache if it is disconnected from its parent.
176 LOG(PageCache, "Finished creating CachedFrame for main frame url '%s' and DocumentLoader %p\n", m_url.string().utf8().data(), m_documentLoader.get());
178 LOG(PageCache, "Finished creating CachedFrame for child frame with url '%s' and DocumentLoader %p\n", m_url.string().utf8().data(), m_documentLoader.get());
187 void CachedFrame::open()
196 void CachedFrame::clear()
202 // This means the CachedFrame has been
    [all...]
CachedPage.cpp 52 , m_cachedMainFrame(CachedFrame::create(page->mainFrame()))
  /external/webkit/Source/WebCore/platform/graphics/android/
android_graphics.h 43 class CachedFrame;
70 const CachedFrame* m_frame;
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
FrameLoaderClientHaiku.h 150 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
151 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebFrameLoaderClient.h 108 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
109 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/Source/WebCore/loader/
FrameLoaderClient.h 56 class CachedFrame;
235 virtual void savePlatformDataToCachedFrame(CachedFrame*) = 0;
236 virtual void transitionToCommittedFromCachedFrame(CachedFrame*) = 0;
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.h 43 class CachedFrame;
176 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
177 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.h 179 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
180 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/Source/WebKit/chromium/src/
FrameLoaderClientImpl.h 171 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
172 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
FrameLoaderClientEfl.h 200 virtual void savePlatformDataToCachedFrame(CachedFrame*);
201 virtual void transitionToCommittedFromCachedFrame(CachedFrame*);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
FrameLoaderClientGtk.h 181 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
182 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.h 193 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
194 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
FrameLoaderClientWinCE.h 176 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
177 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
FrameLoaderClientWx.h 152 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
153 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);

Completed in 492 milliseconds

1 2