Home | History | Annotate | Download | only in nav

Lines Matching defs:node

45 #include "Node.h"
259 WebCore::Node* cursor = 0;
264 cursor = (WebCore::Node*) cachedCursor->nodePointer();
360 const CachedNode* node = root->currentCursor(&frame);
361 if (!node) {
362 DBG_NAV_LOGV("%s", "!node");
366 if (node->isHidden()) {
367 DBG_NAV_LOG("node->isHidden()");
374 m_ring.m_node = node;
490 const CachedNode* node = m_frameCacheUI->findAt(bounds, &frame, &x, &y, false);
491 if (!node)
493 // require that node have approximately the same bounds (+/- 4) and the same
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(),
521 const_cast<CachedNode*>(node));
803 const CachedNode* node = findAt(root, rect, &frame, &rx, &ry);
805 if (!node) {
811 DBG_NAV_LOGD("CachedNode:%p (%d)", node, node->index());
812 root->rootHistory()->setMouseBounds(node->bounds(frame));
813 m_viewImpl->updateCursorBounds(root, frame, node);
815 const_cast<CachedNode*>(node));
890 (WebCore::Node*) result->nodePointer(), rx, ry);
1035 void sendMoveFocus(WebCore::Frame* framePtr, WebCore::Node* nodePtr)
1044 void sendMoveMouse(WebCore::Frame* framePtr, WebCore::Node* nodePtr, int x, int y)
1063 WebCore::Frame* framePtr, WebCore::Node* nodePtr, int x, int y)
1345 const CachedNode* node = getCursorNode(env, obj, &frame);
1346 WebCore::IntRect bounds = node ? node->bounds(frame)
1357 const CachedNode* node = getCursorNode(env, obj);
1358 return reinterpret_cast<int>(node ? node->nodePointer() : 0);
1384 const CachedNode* node = getCursorNode(env, obj, &frame);
1385 return node ? node->bounds(frame).intersects(
1391 const CachedNode* node = getCursorNode(env, obj);
1392 return node ? node->isAnchor() : false;
1397 const CachedNode* node = getCursorNode(env, obj);
1398 return node ? node->isTextInput() : false;
1403 const CachedNode* node = getCursorNode(env, obj);
1404 if (!node)
1406 WebCore::String value = node->getExport();
1485 const CachedNode* node = getFocusCandidate(env, obj, 0);
1486 node ? node->isTextInput() : false;
1515 const CachedNode* node = getFocusCandidate(env, obj, &frame);
1516 WebCore::IntRect bounds = node ? node->bounds(frame)
1534 const CachedNode* node = getFocusCandidate(env, obj, 0);
1535 return reinterpret_cast<int>(node ? node->nodePointer() : 0);
1540 const CachedNode* node = getFocusCandidate(env, obj, 0);
1541 if (!node)
1543 WebCore::String value = node->getExport();
1591 const CachedNode* node = getFocusNode(env, obj);
1592 return node ? node->isPlugin() : false;
1598 const CachedNode* node = getFocusNode(env, obj, &frame);
1599 WebCore::IntRect bounds = node ? node->bounds(frame)
1610 const CachedNode* node = getFocusNode(env, obj);
1611 return node ? reinterpret_cast<int>(node->nodePointer()) : 0;
1875 static_cast<WebCore::Node*>(next->nodePointer()));