Lines Matching full:frame
39 #include "Frame.h"
359 const CachedFrame* frame;
360 const CachedNode* node = root->currentCursor(&frame);
373 m_ring.m_frame = frame;
489 const CachedFrame* frame;
490 const CachedNode* node = m_frameCacheUI->findAt(bounds, &frame, &x, &y, false);
497 IntRect newBounds = node->bounds(frame);
517 DBG_NAV_LOGD("node=%p frame=%p x=%d y=%d bounds=(%d,%d,w=%d,h=%d)",
518 node, frame, x, y, bounds.x(), bounds.y(), bounds.width(),
520 m_frameCacheUI->setCursor(const_cast<CachedFrame*>(frame),
800 const CachedFrame* frame;
803 const CachedNode* node = findAt(root, rect, &frame, &rx, &ry);
812 root->rootHistory()->setMouseBounds(node->bounds(frame));
813 m_viewImpl->updateCursorBounds(root, frame, node);
814 root->setCursor(const_cast<CachedFrame*>(frame),
860 const CachedFrame* frame = 0;
861 const CachedNode* result = findAt(root, rect, &frame, &rx, &ry);
872 sendMotionUp(frame ? (WebCore::Frame*) frame->framePointer() : 0,
883 m_viewImpl->updateCursorBounds(root, frame, result);
884 root->setCursor(const_cast<CachedFrame*>(frame),
889 (WebCore::Frame*) frame->framePointer(),
980 void sendMoveFocus(WebCore::Frame* framePtr, WebCore::Node* nodePtr)
989 void sendMoveMouse(WebCore::Frame* framePtr, WebCore::Node* nodePtr, int x, int y)
1008 WebCore::Frame* framePtr, WebCore::Node* nodePtr, int x, int y)
1201 const CachedFrame* frame = 0;
1202 (void) root->currentCursor(&frame);
1203 return reinterpret_cast<int>(frame ? frame->framePointer() : 0);
1214 const CachedFrame** frame)
1218 return root ? root->currentCursor(frame) : 0;
1222 const CachedFrame** frame)
1228 const CachedNode* cursor = root->currentCursor(frame);
1255 const CachedFrame** frame)
1259 return root ? root->currentFocus(frame) : 0;
1268 const CachedFrame* frame;
1269 const CachedNode* cursor = root->currentCursor(&frame);
1271 cursor = root->currentFocus(&frame);
1272 return cursor ? frame->textInput(cursor) : 0;
1284 const CachedFrame* frame;
1285 const CachedNode* node = getCursorNode(env, obj, &frame);
1286 WebCore::IntRect bounds = node ? node->bounds(frame)
1323 const CachedFrame* frame;
1324 const CachedNode* node = getCursorNode(env, obj, &frame);
1325 return node ? node->bounds(frame).intersects(
1404 const CachedFrame* frame = 0;
1405 const CachedNode* cursor = root->currentCursor(&frame);
1407 (void) root->currentFocus(&frame);
1408 return reinterpret_cast<int>(frame ? frame->framePointer() : 0);
1446 const CachedFrame* frame;
1447 const CachedNode* node = getFocusCandidate(env, obj, &frame);
1448 WebCore::IntRect bounds = node ? node->bounds(frame)
1522 const CachedFrame* frame;
1523 const CachedNode* node = getFocusNode(env, obj, &frame);
1524 WebCore::IntRect bounds = node ? node->bounds(frame)
1783 const CachedFrame* frame;
1784 const CachedNode* next = root->nextTextField(current, &frame);
1787 const WebCore::IntRect& bounds = next->bounds(frame);
1789 view->getWebViewCore()->updateCursorBounds(root, frame, next);
1790 root->setCursor(const_cast<CachedFrame*>(frame),
1792 view->sendMoveFocus(static_cast<WebCore::Frame*>(frame->framePointer()),