HomeSort by relevance Sort by last modified time
    Searched full:ancestor (Results 51 - 75 of 522) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 350 NodeImpl ancestor = (NodeImpl)getElementAncestor(this);
351 if (ancestor != null) {
352 return ancestor.lookupNamespaceURI(specifiedPrefix);
380 NodeImpl ancestor = (NodeImpl)getElementAncestor(this);
381 if (ancestor != null) {
382 return ancestor.lookupNamespaceURI(specifiedPrefix);
428 NodeImpl ancestor = (NodeImpl)getElementAncestor(this);
429 if (ancestor != null) {
430 return ancestor.isDefaultNamespace(namespaceURI);
452 NodeImpl ancestor = (NodeImpl)getElementAncestor(this)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderSupport.cpp 196 bool SVGRenderSupport::transformToRootChanged(RenderObject* ancestor)
198 while (ancestor && !ancestor->isSVGRoot()) {
199 if (ancestor->isSVGTransformableContainer())
200 return toRenderSVGContainer(ancestor)->didTransformToRootUpdate();
201 if (ancestor->isSVGViewportContainer())
202 return toRenderSVGViewportContainer(ancestor)->didTransformToRootUpdate();
203 ancestor = ancestor->parent();
  /external/chromium_org/ui/accessibility/
ax_tree_serializer.h 78 // Return the least common ancestor of a node in the source tree
80 // The least common ancestor is the closest ancestor to |node| (which
82 // and for which both the source and client tree agree on their ancestor
109 // node 4, so the LCA is the first ancestor both trees agree on.
113 // Return the least common ancestor of |node| that's in the client tree.
121 // to the least common ancestor of the previous LCA and the previous
201 // Start at the root. Keep going until the source ancestor chain and
202 // client ancestor chain disagree. The last node before they disagree
  /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/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/eigen/Eigen/src/Core/
CwiseBinaryOp.h 42 typedef typename remove_all<Lhs>::type Ancestor;
43 typedef typename traits<Ancestor>::XprKind XprKind;
45 RowsAtCompileTime = traits<Ancestor>::RowsAtCompileTime,
46 ColsAtCompileTime = traits<Ancestor>::ColsAtCompileTime,
47 MaxRowsAtCompileTime = traits<Ancestor>::MaxRowsAtCompileTime,
48 MaxColsAtCompileTime = traits<Ancestor>::MaxColsAtCompileTime
  /external/chromium_org/cc/layers/
draw_properties.h 68 // ancestor of this layer.
96 // Number of descendants with a clip parent that is our ancestor. NB - this
  /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/chromium/chrome/browser/accessibility/
browser_accessibility_cocoa.h 35 // Invalidate children for a non-ignored ancestor (including self).
browser_accessibility.cc 91 BrowserAccessibility* ancestor) {
92 if (this == ancestor) {
95 return parent_->IsDescendantOf(ancestor);
  /external/chromium_org/chrome_frame/cfinstall/src/common/
interactiondelegate.js 23 * Re-parenting the IFrame or any ancestor will cause undefined behaviour.
  /external/chromium_org/third_party/WebKit/Source/core/editing/
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...]
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...]
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
PluginOcclusionSupport.cpp 69 // we've found the nodes just below the lowest comment ancestor.
194 const Element* ancestor = topLayerAncestor(element); local
197 size_t start = ancestor ? elements.find(ancestor) + 1 : 0;
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udir/
p1.cpp 15 // Test that names appear as if in deepest common ancestor.
  /external/chromium_org/chrome/test/functional/
about_plugins_ui.py 92 ']//ancestor::*[@class="plugin-text"]//a[text()="Disable"]'
94 ']//ancestor::*[@class="plugin-text"]//a[text()="Enable"]'
119 '//*[@jscontent="name"][text()="Flash"]//ancestor' \
  /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/clang/lib/StaticAnalyzer/Checkers/
CheckObjCInstMethSignature.cpp 29 static bool AreTypesCompatible(QualType Derived, QualType Ancestor,
34 if (Derived->isAnyPointerType() && Ancestor->isAnyPointerType())
37 return C.typesAreCompatible(Derived, Ancestor);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
HierarchicalFolderSelectorAdapter.java 78 * 3) If there is > 1 but < 3 ancestors, return ancestor/ancestor2/folder
79 * 4) If there are > 3 ancestors, return the top most ancestor, and direct parent
80 * of the folder, and the folder: ancestor/.../directParent/folder
  /external/chromium_org/chrome/browser/mac/
install_from_dmg.mm 54 // Given an io_service_t (expected to be of class IOMedia), walks the ancestor
55 // chain, returning the closest ancestor that implements class IOHDIXHDDrive,
56 // if any. If no such ancestor is found, returns NULL. Following the "copy"
69 // IOMedia. Since the media service's entire ancestor chain will be checked,
90 // Look at each of the ancestor services, beginning with the parent,
91 // iterating all the way up to the device tree's root. If any ancestor
95 for (base::mac::ScopedIOObject<io_service_t> ancestor(
97 ancestor;
98 ancestor.reset(IOIteratorNext(iterator))) {
99 if (IOObjectConformsTo(ancestor, disk_image_class))
    [all...]
  /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/libvpx/libvpx/examples/includes/HTML-Toc-0.91/
TocUpdator.pm 218 # Call ancestor
251 # Call ancestor to set anchor name
307 # Call ancestor
321 # Call ancestor
343 # Call ancestor
370 # Call ancestor
397 # Call ancestor
403 # Call ancestor
417 # Call ancestor
474 # Call ancestor
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseTraversers.java 121 case Axis.ANCESTOR :
198 * Implements traversal of the Ancestor access, in reverse document order.
242 * Implements traversal of the Ancestor access, in reverse document order.
328 * Implements traversal of the Ancestor access, in reverse document order.
579 * Implements traversal of the Ancestor access, in reverse document order.
653 // (next-sib or ancestor's-next-sib). Probably shallower search.
758 * Implements traversal of the Ancestor access, in reverse document order.
981 * Implements traversal of the Ancestor access, in reverse document order.
1023 * Implements traversal of the Ancestor access, in reverse document order.
    [all...]
  /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())

Completed in 1820 milliseconds

1 23 4 5 6 7 8 91011>>