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

1 2

  /external/webkit/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
88 mPriorMove = mLastMove = CachedFrame::UNINITIALIZED;
93 void CachedHistory::setWorking(CachedFrame::Direction newMove,
94 const CachedFrame* cursorFrame, const CachedNode* cursor,
97 CachedFrame::Direction lastAxis = (CachedFrame::Direction) (mLastMove & ~CachedFrame::RIGHT_DOWN); // up, left or uninitialize
    [all...]
CachedFrame.h 49 class CachedFrame {
72 CachedFrame() {}
78 void addFrame(CachedFrame& child) { mCachedFrames.append(child); }
84 bool checkVisited(const CachedNode* , CachedFrame::Direction ) const;
88 const CachedNode* currentCursor(const CachedFrame** ) const;
90 const CachedNode* currentFocus(const CachedFrame** ) const;
95 bool* inside, const CachedNode** , const CachedFrame** directFrame,
96 const CachedFrame** resultFrame, int* x,
98 const CachedFrame* findBestFrameAt(int x, int y) const;
100 const CachedFrame** , int* x, int* y) const
    [all...]
CachedNode.h 44 class CachedFrame;
90 WebCore::IntRect bounds(const CachedFrame* ) const;
93 void clearCursor(CachedFrame* );
98 WebCore::IntRect cursorRingBounds(const CachedFrame* ) const;
99 void cursorRings(const CachedFrame* , WTF::Vector<WebCore::IntRect>* ) const;
102 void fixUpCursorRects(const CachedFrame* frame);
106 void hideCursor(CachedFrame* );
107 WebCore::IntRect hitBounds(const CachedFrame* ) const;
117 bool isNavable(const CachedFrame* frame, const WebCore::IntRect& clip) const {
124 bool isTextField(const CachedFrame*) const
    [all...]
CachedFrame.cpp 31 #include "CachedFrame.h"
39 WebCore::IntRect CachedFrame::adjustBounds(const CachedNode* node,
51 bool CachedFrame::CheckBetween(Direction direction, const WebCore::IntRect& bestRect,
90 bool CachedFrame::checkBetween(BestData* best, Direction direction)
120 bool CachedFrame::checkRings(const CachedNode* node,
127 bool CachedFrame::checkVisited(const CachedNode* node, Direction direction) const
132 void CachedFrame::clearCursor()
143 int CachedFrame::compare(BestData& testData, const BestData& bestData) const
308 const CachedNode* CachedFrame::currentCursor(const CachedFrame** framePtr) cons
    [all...]
CachedRoot.h 29 #include "CachedFrame.h"
47 class CachedRoot : public CachedFrame {
60 const CachedNode* findAt(const WebCore::IntRect& , const CachedFrame** ,
77 const CachedNode* moveCursor(Direction , const CachedFrame** , WebCore::IntPoint* scroll);
81 * @param framePtr If non-zero, returns CachedFrame* containing result.
85 const CachedFrame** framePtr) const;
92 void setCursor(CachedFrame* , CachedNode* );
94 void setCachedFocus(CachedFrame* , CachedNode* );
107 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
106 void CachedNode::fixUpCursorRects(const CachedFrame* frame)
223 void CachedNode::hideCursor(CachedFrame* parent)
226 CachedFrame* child = const_cast<CachedFrame*>(parent->hasFrame(this))
    [all...]
WebView.cpp 33 #include "CachedFrame.h"
251 const CachedFrame* cachedFrame;
262 cachedCursor = root->currentCursor(&cachedFrame);
292 const WebCore::IntRect& b = cachedCursor->bounds(cachedFrame);
359 const CachedFrame* frame;
468 const CachedFrame* cachedFrame;
469 const CachedNode* cachedNode = root->currentCursor(&cachedFrame);
471 *bounds = cachedNode->cursorRingBounds(cachedFrame);
    [all...]
CacheBuilder.h 59 class CachedFrame;
217 CachedRoot* cachedRoot, CachedFrame* cachedFrame);
218 bool CleanUpContainedNodes(CachedRoot* cachedRoot, CachedFrame* cachedFrame,
244 bool setData(CachedFrame* );
CachedRoot.cpp 684 bool CachedRoot::adjustForScroll(BestData* best, CachedFrame::Direction direction,
778 const CachedFrame** framePtr, int* x, int* y, bool checkForHidden) const
783 const CachedFrame* directHitFramePtr;
839 const CachedFrame* frame;
870 ASSERT(CachedFrame::mDebug.mInUse);
891 CachedFrame::init(this, -1, frame);
    [all...]
  /external/webkit/WebCore/history/
CachedFrame.h 35 class CachedFrame;
42 typedef Vector<RefPtr<CachedFrame> > CachedFrameVector;
70 class CachedFrame : public RefCounted<CachedFrame>, private CachedFrameBase {
72 static PassRefPtr<CachedFrame> create(Frame* frame) { return adoptRef(new CachedFrame(frame)); }
89 CachedFrame(Frame*);
CachedPage.h 29 #include "CachedFrame.h"
51 CachedFrame* cachedMainFrame() { return m_cachedMainFrame.get(); }
57 RefPtr<CachedFrame> m_cachedMainFrame;
CachedFrame.cpp 56 DEFINE_STATIC_LOCAL(WTF::RefCountedLeakCounter, counter, ("CachedFrame"));
115 CachedFrame::CachedFrame(Frame* frame)
140 m_childFrames.append(CachedFrame::create(child));
145 // 2 - It's much easier to destroy a CachedFrame while it resides in the PageCache if it is disconnected from its parent.
154 LOG(PageCache, "Finished creating CachedFrame for main frame url '%s' and DocumentLoader %p\n", m_url.string().utf8().data(), m_documentLoader.get());
156 LOG(PageCache, "Finished creating CachedFrame for child frame with url '%s' and DocumentLoader %p\n", m_url.string().utf8().data(), m_documentLoader.get());
165 void CachedFrame::open()
174 void CachedFrame::clear()
180 // This means the CachedFrame has been
    [all...]
CachedPage.cpp 51 , m_cachedMainFrame(CachedFrame::create(page->mainFrame()))
  /external/webkit/WebCore/platform/graphics/android/
android_graphics.h 42 class CachedFrame;
75 const CachedFrame* m_frame;
  /external/webkit/WebKit/haiku/WebCoreSupport/
FrameLoaderClientHaiku.h 148 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
149 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/WebKit/win/WebCoreSupport/
WebFrameLoaderClient.h 107 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
108 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/WebKit/wx/WebKitSupport/
FrameLoaderClientWx.h 148 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
149 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/WebCore/loader/
FrameLoaderClient.h 48 class CachedFrame;
213 virtual void savePlatformDataToCachedFrame(CachedFrame*) = 0;
214 virtual void transitionToCommittedFromCachedFrame(CachedFrame*) = 0;
  /external/webkit/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.h 43 class CachedFrame;
170 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
171 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.h 172 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
173 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/WebKit/chromium/src/
FrameLoaderClientImpl.h 164 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
165 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/WebKit/gtk/WebCoreSupport/
FrameLoaderClientGtk.h 176 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
177 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.h 188 virtual void savePlatformDataToCachedFrame(WebCore::CachedFrame*);
189 virtual void transitionToCommittedFromCachedFrame(WebCore::CachedFrame*);
  /external/webkit/WebKit/
Android.mk 60 android/nav/CachedFrame.cpp \

Completed in 239 milliseconds

1 2