Home
last modified time | relevance | path

Searched refs:mNode (Results 1 – 11 of 11) sorted by relevance

/external/astl/include/
Dlist76 mNode() { }
79 mNode(node) { }
81 reference operator*() const { return static_cast<node_type*>(mNode)->mData; }
84 iterator_type& operator++() { mNode = mNode->mNext; return *this; }
87 mNode = mNode->mNext;
91 iterator_type& operator--() { mNode = mNode->mPrev; return *this; }
94 mNode = mNode->mPrev;
98 bool operator==(const iterator_type& o) const { return mNode == o.mNode; }
99 bool operator!=(const iterator_type& o) const { return mNode != o.mNode; }
101 ListNodeBase *mNode;
[all …]
/external/webkit/Source/WebKit/android/nav/
DCachedFrame.cpp112 test.mNode = NULL; in checkBetween()
126 if (test.mNode == NULL) in checkBetween()
131 if (test.mNode == NULL) in checkBetween()
161 if (testData.mNode->tabIndex() != bestData.mNode->tabIndex()) { in compare()
162 if (testData.mNode->tabIndex() < bestData.mNode->tabIndex() in compare()
163 || (mRoot->mCursor && mRoot->mCursor->tabIndex() < bestData.mNode->tabIndex())) { in compare()
164 testData.mNode->setCondition(CachedNode::HIGHER_TAB_INDEX); in compare()
174 testData.mNode->setCondition(CachedNode::IN_CURSOR); in compare()
181 testData.mNode->setCondition(CachedNode::CLOSER_IN_CURSOR); in compare()
188 testData.mNode->setCondition(CachedNode::FURTHER); in compare()
[all …]
DCachedHistory.cpp47 mVisited[0].mNode = node; in addToVisited()
59 if (node == mVisited[index].mNode) in checkVisited()
152 const CachedNode* node = visit.mNode; in print()
DCachedNode.h140 void* nodePointer() const { return mNode; } in nodePointer()
194 void* mNode; // WebCore::Node*, only used to match pointers variable
222 WebCore::Node* webCoreNode() const { return (WebCore::Node*) mNode; } in webCoreNode()
DCacheBuilder.h136 Node* mNode; member
138 void reset() { mNode = NULL; } in reset()
195 Node* mNode; member
DCachedHistory.h61 const CachedNode* mNode; member
DCachedFrame.h170 const CachedNode* mNode; member
187 void reset() { mNode = NULL; } in reset()
DCachedRoot.cpp1031 const CachedNode* newNode = best->mNode; in adjustForScroll()
1039 newNode = best->mNode; in adjustForScroll()
1384 if (bestData->mNode != NULL) { in innerMove()
1385 mHistory->addToVisited(bestData->mNode, direction); in innerMove()
1473 const CachedNode* bestNode = best->mNode; in maskIfHidden()
1498 CachedNode* node = const_cast<CachedNode*>(best->mNode); in maskIfHidden()
1542 if (mRootLayer && bestData.mNode && !bestData.mNode->isInLayer()) { in moveCursor()
1547 SkIRect original = bestData.mNode->cursorRingBounds(bestData.mFrame); in moveCursor()
1607 return const_cast<CachedNode*>(bestData.mNode); in moveCursor()
DCachedNode.cpp243 mNode = node; in init()
402 DUMP_NAV_LOGD("// void* mNode=%p; // (%d) \n", b->mNode, mNodeIndex); in print()
DCacheBuilder.cpp1193 clip.mNode = node; in BuildFrame()
1366 if (clipTracker.last().mNode == node) in BuildFrame()
3114 clip.mNode = test; in ConstructPartRects()
/external/webkit/Source/WebKit/android/jni/
DWebViewCore.cpp1707 Node* mNode; member
1794 if (eventNode == n->mNode) { in getTouchHighlightRects()
1835 newNode.mNode = eventNode; in getTouchHighlightRects()
1844 final.mNode = 0; in getTouchHighlightRects()
1859 if (final.mNode) { in getTouchHighlightRects()
1865 if (final.mNode->isLink()) { in getTouchHighlightRects()
1868 RenderObject* render = final.mNode->renderer(); in getTouchHighlightRects()