HomeSort by relevance Sort by last modified time
    Searched refs:cachedNode (Results 1 - 6 of 6) sorted by null

  /libcore/luni/src/main/java/java/util/prefs/
AbstractPreferences.java 111 private Map<String, AbstractPreferences> cachedNode;
156 cachedNode = new HashMap<String, AbstractPreferences>();
174 return cachedNode.values().toArray(new AbstractPreferences[cachedNode.size()]);
357 TreeSet<String> result = new TreeSet<String>(cachedNode.keySet());
572 temp = currentNode.cachedNode.get(name);
594 currentNode.cachedNode.put(name, temp);
722 if (null == cachedNode.get(childrenNames[i])) {
724 cachedNode.put(childrenNames[i], child);
728 final Collection<AbstractPreferences> values = cachedNode.values()
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/
SourceTreeManager.java 172 int cachedNode = getNode(source);
174 if (DTM.NULL != cachedNode)
176 if (!(cachedNode == n))
  /external/webkit/WebKit/android/nav/
CacheBuilder.cpp 27 #include "CachedNode.h"
757 CachedNode* node, IntRect* bounds)
    [all...]
WebView.cpp 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))
    [all...]
  /external/webkit/WebKit/android/jni/
WebViewCore.h 75 class CachedNode;
459 const CachedFrame* cachedFrame, const CachedNode* cachedNode);
WebViewCore.cpp 32 #include "CachedNode.h"
732 // non-null CachedNode/CachedFrame, since otherwise the WebViewCore's data
736 const CachedFrame* cachedFrame, const CachedNode* cachedNode)
739 LOG_ASSERT(cachedNode, "updateCursorBounds: cachedNode cannot be null");
742 m_hasCursorBounds = !cachedNode->isHidden();
746 WebCore::IntRect bounds = cachedNode->bounds(cachedFrame);
751 m_cursorHitBounds = cachedNode->hitBounds(cachedFrame);
754 m_cursorNode = cachedNode->nodePointer()
    [all...]

Completed in 94 milliseconds