HomeSort by relevance Sort by last modified time
    Searched refs:ancestor (Results 1 - 25 of 46) sorted by null

1 2

  /external/webkit/WebCore/svg/
SVGFontFaceFormatElement.cpp 44 Node* ancestor = parentNode()->parentNode();
45 if (!ancestor || !ancestor->hasTagName(font_face_srcTag))
48 ancestor = ancestor->parentNode();
49 if (ancestor && ancestor->hasTagName(font_faceTag))
50 static_cast<SVGFontFaceElement*>(ancestor)->rebuildFontFace();
  /libcore/luni/src/main/java/org/apache/xalan/processor/
ProcessorExsltFuncResult.java 52 ElemTemplateElement ancestor = handler.getElemTemplateElement().getParentElem(); local
53 while (ancestor != null && !(ancestor instanceof ElemExsltFunction))
55 if (ancestor instanceof ElemVariable
56 || ancestor instanceof ElemParam
57 || ancestor instanceof ElemExsltFuncResult)
62 ancestor = ancestor.getParentElem();
64 if (ancestor == null)
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 131 // Check that the node at index "position" is not an ancestor
133 // RETURN -1. If position is NOT an ancestor, return position.
139 // We have to look all the way up the ancestor chain
140 // to make sure we don't have an ancestor.
141 int ancestor = startPos; local
142 while(ancestor > 0)
144 // Get the node whose index == ancestor
145 ancestor*=slotsize;
146 int chunkpos = ancestor >> lowbits;
147 int slotpos = ancestor & lowmask
    [all...]
DTMDefaultBase.java 1358 int ancestor=_parent(elementNodeIndex); local
    [all...]
  /external/webkit/WebCore/editing/
BreakBlockquoteCommand.cpp 142 // On exiting this loop, clonedAncestor is the lowest ancestor
173 // Split the tree up the ancestor chain until the topBlockquote
174 // Throughout this loop, clonedParent is the clone of ancestor's parent.
175 // This is so we can clone ancestor's siblings and place the clones
176 // into the clone corresponding to the ancestor's parent.
177 Element* ancestor; local
179 for (ancestor = ancestors.first(), clonedParent = clonedAncestor->parentElement();
180 ancestor && ancestor != topBlockquote;
181 ancestor = ancestor->parentElement(), clonedParent = clonedParent->parentElement())
    [all...]
markup.cpp 897 Node *ancestor = ancestorsToClose.last(); local
    [all...]
htmlediting.cpp 639 Node* ancestor = range->commonAncestorContainer(ec);// find the cloeset common ancestor local
642 while (ancestor && ancestor->isContentEditable() && isNodeVisiblyContainedWithin(ancestor, maximumRange) && ancestor != rootNode) {
643 highestNode = ancestor;
644 ancestor = ancestor->parentNode();
923 Node* ancestor = node->shadowAncestorNode()
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
Dominators.java 117 DFSInfo ancestorbbInfo = info[bbInfo.ancestor.getIndex()];
119 if (ancestorbbInfo.ancestor != null) {
128 SsaBasicBlock vAncestor = vbbInfo.ancestor;
131 // Make sure we process our ancestor before ourselves.
132 if (visited.add(vAncestor) && vabbInfo.ancestor != null) {
138 // Update based on ancestor info.
139 if (vabbInfo.ancestor == null) {
148 vbbInfo.ancestor = vabbInfo.ancestor;
156 if (bbInfo.ancestor == null)
278 public SsaBasicBlock ancestor; field in class:Dominators.DFSInfo
    [all...]
  /external/webkit/WebCore/inspector/front-end/
BottomUpProfileDataGridTree.js 30 // because a root node can represent itself AND an ancestor.
99 var ancestor = nodeInfo.ancestor;
101 var child = this.findChild(ancestor);
113 // If not, add it as a true ancestor.
114 // In heavy mode, we take our visual identity from ancestor node...
115 var child = new WebInspector.BottomUpProfileDataGridNode(this.profileView, ancestor, this.tree);
117 if (ancestor !== focusNode) {
127 var parent = ancestor.parent;
129 nodeInfo.ancestor = parent
    [all...]
treeoutline.js 323 // ancestor exists in the tree.
731 TreeElement.prototype.hasAncestor = function(ancestor) {
732 if (!ancestor)
737 if (ancestor === currentNode)
utilities.js 451 function isAncestorNode(ancestor, node)
453 if (!node || !ancestor)
458 if (ancestor === currentNode)
  /external/webkit/WebCore/html/
HTMLImageElement.cpp 216 for (Node* ancestor = parentNode(); ancestor; ancestor = ancestor->parentNode()) {
217 if (ancestor->hasTagName(formTag)) {
218 m_form = static_cast<HTMLFormElement*>(ancestor);
HTMLElement.cpp     [all...]
  /external/webkit/WebCore/loader/
RedirectScheduler.cpp 172 // Navigation of a subframe during loading of an ancestor frame does not create a new back/forward item.
176 for (Frame* ancestor = targetFrame->tree()->parent(); ancestor; ancestor = ancestor->tree()->parent()) {
177 Document* document = ancestor->document();
178 if (!ancestor->loader()->isComplete() || (document && document->processingLoadEvent()))
  /external/guava/src/com/google/common/collect/
AbstractMultimap.java 363 K key, List<V> list, @Nullable WrappedCollection ancestor) {
365 ? new RandomAccessWrappedList(key, list, ancestor)
366 : new WrappedList(key, list, ancestor);
374 * <p>Full collections, identified by a null ancestor field, contain all
381 * given key. Its ancestor field points to the full wrapped collection with
389 final WrappedCollection ancestor; field in class:AbstractMultimap.WrappedCollection
393 @Nullable WrappedCollection ancestor) {
396 this.ancestor = ancestor;
398 = (ancestor == null) ? null : ancestor.getDelegate()
    [all...]
  /external/libvpx/nestegg/src/
nestegg.c 273 struct list_node * ancestor; member in struct:saved_state
291 struct list_node * ancestor; member in struct:nestegg
755 ne_is_ancestor_element(uint64_t id, struct list_node * ancestor)
759 for (; ancestor; ancestor = ancestor->previous)
760 for (element = ancestor->node; element->id; ++element)
780 ne_ctx_push(nestegg * ctx, struct ebml_element_desc * ancestor, void * data)
785 item->previous = ctx->ancestor;
786 item->node = ancestor;
    [all...]
  /external/webkit/WebCore/page/
FrameTree.cpp 216 bool FrameTree::isDescendantOf(const Frame* ancestor) const
218 if (!ancestor)
221 if (m_thisFrame->page() != ancestor->page())
225 if (frame == ancestor)
FrameTree.h 53 bool isDescendantOf(const Frame* ancestor) const;
  /external/webkit/WebCore/dom/
Node.cpp 1132 // check for ancestor/same node
2662 ContainerNode* ancestor = ancestors[i].get(); local
2717 ContainerNode* ancestor = ancestors[i - 1].get(); local
2737 ContainerNode* ancestor = ancestors[i].get(); local
2772 ContainerNode* ancestor = ancestors[i].get(); local
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
WKCACFLayer.cpp 413 for (WKCACFLayer* ancestor = this->superlayer(); ancestor; layer = ancestor, ancestor = ancestor->superlayer()) {
414 if (ancestor == superlayer)
  /external/webkit/WebCore/inspector/
InspectorDOMAgent.cpp 387 ContainerNode* ancestor = ancestors[i - 1].get(); local
390 if (ancestor->hasEventListeners(type))
391 eventInformation.append(EventListenerInfo(static_cast<Node*>(ancestor), type, ancestor->getEventListeners(type)));
  /external/webkit/WebKit/win/Interfaces/
IWebFramePrivate.idl 80 HRESULT isDescendantOfFrame([in] IWebFrame* ancestor, [out, retval] BOOL* result);
  /external/webkit/WebCore/rendering/
RenderFrameSet.cpp 816 for (RenderObject* ancestor = parent(); ancestor; ancestor = ancestor->parent()) {
817 if (ancestor->isFrameSet())
818 toRenderFrameSet(ancestor)->m_isChildResizing = isResizing;
  /external/webkit/WebCore/platform/graphics/
GraphicsLayer.cpp 87 bool GraphicsLayer::hasAncestor(GraphicsLayer* ancestor) const
90 if (curr == ancestor)
  /external/libxml2/include/libxml/
xpath.h 382 xmlNodePtr ancestor; /* used for walking preceding axis */ member in struct:_xmlXPathParserContext

Completed in 514 milliseconds

1 2