Home | History | Annotate | Download | only in nav

Lines Matching refs:cachedNode

34 #include "CachedNode.h"
252 const CachedNode* cachedCursor = 0;
360 const CachedNode* node = root->currentCursor(&frame);
454 const CachedNode* cursor = root->currentCursor();
469 const CachedNode* cachedNode = root->currentCursor(&cachedFrame);
470 if (cachedNode) {
471 *bounds = cachedNode->cursorRingBounds(cachedFrame);
490 const CachedNode* node = m_frameCacheUI->findAt(bounds, &frame, &x, &y, false);
521 const_cast<CachedNode*>(node));
537 const CachedNode* oldCursorNode = m_frameCacheUI ?
552 const CachedNode* oldFocus = m_frameCacheUI->currentFocus();
583 const CachedNode* newFocus = m_frameCacheUI->currentFocus();
671 const CachedNode* focus = root->currentCursor();
691 const CachedNode* cursor = root->currentCursor(&oldFrame);
700 const CachedNode* cachedNode = 0;
708 cachedNode = root->moveCursor(direction, &cachedFrame, &scroll);
713 "bounds={%d,%d,w=%d,h=%d}", cachedNode ? cachedNode->index() : 0,
714 cachedNode ? cachedNode->nodePointer() : 0,
716 cachedNode ? cachedNode->bounds(cachedFrame).x() : 0,
717 cachedNode ? cachedNode->bounds(cachedFrame).y() : 0,
718 cachedNode ? cachedNode->bounds(cachedFrame).width() : 0,
719 cachedNode ? cachedNode->bounds(cachedFrame).height() : 0);
723 !cachedNode ||
724 (cursor && cursor->nodePointer() == cachedNode->nodePointer())))
736 if (cachedNode) {
737 m_viewImpl->updateCursorBounds(root, cachedFrame, cachedNode);
739 const_cast<CachedNode*>(cachedNode));
740 bool disableFocusController = cachedNode != root->currentFocus()
741 && cachedNode->wantsKeyEvents();
768 const CachedNode* focus = m_frameCacheUI->currentFocus();
776 const CachedNode* findAt(CachedRoot* root, const WebCore::IntRect& rect,
803 const CachedNode* node = findAt(root, rect, &frame, &rx, &ry);
811 DBG_NAV_LOGD("CachedNode:%p (%d)", node, node->index());
815 const_cast<CachedNode*>(node));
838 const CachedNode* m_cacheHitNode;
861 const CachedNode* result = findAt(root, rect, &frame, &rx, &ry);
878 DBG_NAV_LOGD("CachedNode:%p (%d) x=%d y=%d rx=%d ry=%d", result,
885 const_cast<CachedNode*>(result));
1116 const CachedNode* cursorNode = root->currentCursor();
1130 const CachedNode* focusNode = root->currentFocus();
1266 static const CachedNode* getCursorNode(JNIEnv *env, jobject obj)
1273 static const CachedNode* getCursorNode(JNIEnv *env, jobject obj,
1281 static const CachedNode* getFocusCandidate(JNIEnv *env, jobject obj,
1288 const CachedNode* cursor = root->currentCursor(frame);
1300 const CachedNode* cursor = root->currentCursor();
1307 static const CachedNode* getFocusNode(JNIEnv *env, jobject obj)
1314 static const CachedNode* getFocusNode(JNIEnv *env, jobject obj,
1329 const CachedNode* cursor = root->currentCursor(&frame);
1337 const CachedNode* cursor = getCursorNode(env, obj);
1338 const CachedNode* focus = getFocusNode(env, obj);
1345 const CachedNode* node = getCursorNode(env, obj, &frame);
1357 const CachedNode* node = getCursorNode(env, obj);
1384 const CachedNode* node = getCursorNode(env, obj, &frame);
1391 const CachedNode* node = getCursorNode(env, obj);
1397 const CachedNode* node = getCursorNode(env, obj);
1403 const CachedNode* node = getCursorNode(env, obj);
1465 const CachedNode* cursor = root->currentCursor(&frame);
1485 const CachedNode* node = getFocusCandidate(env, obj, 0);
1515 const CachedNode* node = getFocusCandidate(env, obj, &frame);
1534 const CachedNode* node = getFocusCandidate(env, obj, 0);
1540 const CachedNode* node = getFocusCandidate(env, obj, 0);
1591 const CachedNode* node = getFocusNode(env, obj);
1598 const CachedNode* node = getFocusNode(env, obj, &frame);
1610 const CachedNode* node = getFocusNode(env, obj);
1827 const CachedNode* cachedFocusNode = root->currentFocus();
1831 (const_cast<CachedNode*>(cachedFocusNode))->setExport(webcoreString);
1860 const CachedNode* current = root->currentCursor();
1866 const CachedNode* next = root->nextTextField(current, &frame);
1873 const_cast<CachedNode*>(next));