HomeSort by relevance Sort by last modified time
    Searched refs:ancestor (Results 26 - 50 of 167) sorted by null

12 3 4 5 6 7

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLObjectElement.cpp 388 for (Node* ancestor = parentNode(); ancestor; ancestor = ancestor->parentNode()) {
389 if (ancestor->hasTagName(objectTag) && toHTMLObjectElement(ancestor)->isExposed())
  /external/libvpx/libvpx/nestegg/src/
nestegg.c 274 struct list_node * ancestor; member in struct:saved_state
292 struct list_node * ancestor; member in struct:nestegg
756 ne_is_ancestor_element(uint64_t id, struct list_node * ancestor)
760 for (; ancestor; ancestor = ancestor->previous)
761 for (element = ancestor->node; element->id; ++element)
781 ne_ctx_push(nestegg * ctx, struct ebml_element_desc * ancestor, void * data)
786 item->previous = ctx->ancestor;
787 item->node = ancestor;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameTree.h 57 bool isDescendantOf(const Frame* ancestor) const;
FrameTree.cpp 255 bool FrameTree::isDescendantOf(const Frame* ancestor) const
257 if (!ancestor)
260 if (m_thisFrame->page() != ancestor->page())
264 if (frame == ancestor)
  /external/chromium_org/third_party/libxslt/libxslt/
numbers.c 594 /* Skip to next preceding or ancestor */
635 xmlNodePtr ancestor; local
652 /* ancestor-or-self::*[count] */
653 for (ancestor = node;
654 (ancestor != NULL) && (ancestor->type != XML_DOCUMENT_NODE);
655 ancestor = xmlXPathNextAncestor(parser, ancestor)) {
658 xsltTestCompMatchList(context, ancestor, fromPat))
661 if ((count == NULL && node->type == ancestor->type &&
    [all...]
  /external/chromium_org/ui/base/models/
tree_node_model.h 159 // Returns true if this == ancestor, or one of this nodes parents is
160 // ancestor.
161 bool HasAncestor(const NodeType* ancestor) const {
162 if (ancestor == this)
164 if (!ancestor)
166 return parent_ ? parent_->HasAncestor(ancestor) : false;
  /external/guava/guava/src/com/google/common/net/
InternetDomainName.java 367 return hasPublicSuffix() ? ancestor(publicSuffixIndex) : null;
444 return ancestor(publicSuffixIndex - 1);
455 * Returns an {@code InternetDomainName} that is the immediate ancestor of
464 return ancestor(1);
468 * Returns the ancestor of the current domain at the given number of levels
475 private InternetDomainName ancestor(int levels) { method in class:InternetDomainName
  /external/libxslt/libxslt/
numbers.c 594 /* Skip to next preceding or ancestor */
635 xmlNodePtr ancestor; local
652 /* ancestor-or-self::*[count] */
653 for (ancestor = node;
654 (ancestor != NULL) && (ancestor->type != XML_DOCUMENT_NODE);
655 ancestor = xmlXPathNextAncestor(parser, ancestor)) {
658 xsltTestCompMatchList(context, ancestor, fromPat))
661 if ((count == NULL && node->type == ancestor->type &&
    [all...]
  /external/chromium_org/ui/views/controls/
native_control.cc 134 // We need to find an ancestor with a non-null background, and
140 const View *ancestor = parent_; local
141 while (ancestor) {
142 const Background *background = ancestor->background();
148 ancestor = ancestor->parent();
  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisibleSelection.cpp 476 if (Node* ancestor = treeScope.ancestorInThisScope(currentPosition.containerNode())) {
477 if (ancestor->contains(startContainerNode))
478 return positionAfterNode(ancestor);
479 return positionBeforeNode(ancestor);
494 if (Node* ancestor = treeScope.ancestorInThisScope(currentPosition.containerNode())) {
495 if (ancestor->contains(endContainerNode))
496 return positionBeforeNode(ancestor);
497 return positionAfterNode(ancestor);
567 // The selection ends in editable content or non-editable content inside a different editable ancestor,
568 // move backward until non-editable content inside the same lowest editable ancestor is reached
    [all...]
ReplaceSelectionCommand.h 92 void moveNodeOutOfAncestor(PassRefPtr<Node>, PassRefPtr<Node> ancestor);
markup.cpp 390 Node* ancestor = ancestorsToClose.last(); local
391 if (next != pastEnd && next->isDescendantOf(ancestor))
395 appendEndTag(ancestor);
396 lastClosed = ancestor;
516 // Retain the Mail quote level by including all ancestor mail block quotes.
587 // Also include all of the ancestors of lastClosed up to this special ancestor.
588 for (ContainerNode* ancestor = lastClosed->parentNode(); ancestor; ancestor = ancestor->parentNode())
    [all...]
  /external/chromium_org/chrome/test/functional/gtalk/
jsutils.js 39 * Find the ancestor of the given element with a particular tag name.
50 * Find the first ancestor of the given element containing the given text.
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 202 Object ancestor = getAncestor(adaptor, tokenNames, t, goal); local
203 if ( ancestor==null ) return false;
204 t = ancestor;
  /external/chromium_org/ui/compositor/
layer.h 208 // drawn. This happens if any ancestor of a Layer is not visible.
231 // Converts a transform to be relative to the given |ancestor|. Returns
232 // whether success (that is, whether the given ancestor was really an
233 // ancestor of this layer).
234 bool GetTargetTransformRelativeTo(const Layer* ancestor,
360 bool ConvertPointForAncestor(const Layer* ancestor, gfx::Point* point) const;
361 bool ConvertPointFromAncestor(const Layer* ancestor, gfx::Point* point) const;
  /external/chromium_org/ui/views/corewm/
window_modality_controller.cc 31 bool HasAncestor(aura::Window* window, aura::Window* ancestor) {
34 if (window == ancestor)
36 return HasAncestor(window->parent(), ancestor);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
ViewLoader.java 300 View ancestor = (View) parent; local
301 while (ancestor.getParent() != null) {
302 ancestor = (View) ancestor.getParent();
304 ancestor.clearFocus();
  /external/chromium_org/ui/views/
view.cc 394 const View* ancestor = view->parent_; local
395 if (ancestor != NULL) {
396 ancestor_bounds.SetRect(0, 0, ancestor->width(), ancestor->height());
402 view = ancestor;
    [all...]
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_contents_view.cc 417 views::View* ancestor = child; local
418 while (ancestor && ancestor != opt_in_view_)
419 ancestor = ancestor->parent();
420 return ancestor ? child : this;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFrameSet.cpp 595 for (RenderObject* ancestor = parent(); ancestor; ancestor = ancestor->parent()) {
596 if (ancestor->isFrameSet())
597 toRenderFrameSet(ancestor)->m_isChildResizing = isResizing;
  /external/chromium/chrome/browser/accessibility/
browser_accessibility.h 74 // Return true if this object is equal to or a descendant of |ancestor|.
75 bool IsDescendantOf(BrowserAccessibility* ancestor);
  /external/chromium/webkit/glue/
webaccessibility.h 201 // Returns true if |ancestor| is the first unignored parent of |child|,
203 // |ancestor| is the *first* ancestor that isn't marked as
205 bool IsParentUnignoredOf(const WebKit::WebAccessibilityObject& ancestor,
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoader.cpp 439 for (Frame* ancestor = m_frame; ancestor; ancestor = ancestor->tree().parent()) {
440 if (!ancestor->document()->loadEventFinished())
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBase.java 1358 int ancestor=_parent(elementNodeIndex); local
    [all...]
  /external/chromium_org/chrome_frame/cfinstall/src/common/
interactiondelegate.js 23 * Re-parenting the IFrame or any ancestor will cause undefined behaviour.

Completed in 1349 milliseconds

12 3 4 5 6 7