HomeSort by relevance Sort by last modified time
    Searched full:ancestor (Results 76 - 100 of 546) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerStackingNode.cpp 316 for (RenderLayer* ancestor = layer()->parent(); ancestor; ancestor = ancestor->parent()) {
317 RenderLayerStackingNode* stackingNode = ancestor->stackingNode();
  /external/chromium_org/chrome/browser/mac/
install_from_dmg.mm 55 // Given an io_service_t (expected to be of class IOMedia), walks the ancestor
56 // chain, returning the closest ancestor that implements class IOHDIXHDDrive,
57 // if any. If no such ancestor is found, returns NULL. Following the "copy"
70 // IOMedia. Since the media service's entire ancestor chain will be checked,
91 // Look at each of the ancestor services, beginning with the parent,
92 // iterating all the way up to the device tree's root. If any ancestor
96 for (base::mac::ScopedIOObject<io_service_t> ancestor(
98 ancestor;
99 ancestor.reset(IOIteratorNext(iterator))) {
100 if (IOObjectConformsTo(ancestor, disk_image_class))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementTraversal.h 47 // First ElementType ancestor of the node.
168 ContainerNode* ancestor = current.parentNode(); local
169 while (ancestor && !isElementOfType<const ElementType>(*ancestor))
170 ancestor = ancestor->parentNode();
171 return toElement<ElementType>(ancestor);
  /external/chromium_org/ui/compositor/
layer.h 226 // drawn. This happens if any ancestor of a Layer is not visible.
249 // Converts a transform to be relative to the given |ancestor|. Returns
250 // whether success (that is, whether the given ancestor was really an
251 // ancestor of this layer).
252 bool GetTargetTransformRelativeTo(const Layer* ancestor,
373 bool ConvertPointForAncestor(const Layer* ancestor, gfx::Point* point) const;
374 bool ConvertPointFromAncestor(const Layer* ancestor, gfx::Point* point) const;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
htmlediting.cpp 578 Element* ancestor = p.deprecatedNode()->isElementNode() ? toElement(p.deprecatedNode()) : p.deprecatedNode()->parentElement(); local
579 for (; ancestor; ancestor = ancestor->parentElement()) {
580 if (root && !ancestor->hasEditableStyle())
582 if (ancestor->hasTagName(tagName))
583 return ancestor;
584 if (ancestor == root)
667 for (Element* ancestor = ElementTraversal::firstAncestorOrSelf(*p.deprecatedNode()); ancestor; ancestor = ElementTraversal::firstAncestor(*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/xml/
XPathNodeSet.cpp 70 // Find the common ancestor.
92 // One of the nodes is the common ancestor => it is the first in
124 // Children nodes of the common ancestor induce a subdivision of our
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
Utilities.java 128 View ancestor = ancestorChain.get(i); local
131 pt[0] += ancestor.getScrollX();
132 pt[1] += ancestor.getScrollY();
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMHelper.java 236 // ancestor chains, reconcile the lengths, and look for
237 // the lowest common ancestor. If that ancestor is one of
241 // NOTE: If no common ancestor is found, ordering is undefined
244 // Count parents in each ancestor chain
261 // Initially assume scan for common ancestor starts with
265 // If one ancestor chain is longer, adjust its start point
290 // Loop up the ancestor chain looking for common parent
298 // Edge condition: one is the ancestor of the other.
507 * nearest Element ancestor.
    [all...]
UnImplNode.java     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/
context_menu_widget.js 17 * Return the list from a node or an ancestor.
  /external/chromium_org/chrome/browser/ui/views/
javascript_app_modal_event_blocker_x11.cc 16 // Returns the toplevel window for the deepest transient ancestor of |window|.
  /external/chromium_org/components/feedback/proto/
dom.proto 93 // ancestor-descendant relationship.
  /external/chromium_org/ppapi/api/
ppb_file_ref.idl 24 /** Requests that ancestor directories are created if they do not exist. */
124 * <code>PP_TRUE</code> to make ancestor directories or <code>PP_FALSE</code>
125 * if ancestor directories are not needed.
130 * Succeeds if the directory already exists. Fails if ancestor directories
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
compute_interfaces_info_overall.py 58 'ancestors': all ancestor interfaces
150 for ancestor in ancestors:
151 # Ancestors may not be present, notably if an ancestor is a generated
154 ancestor_extended_attributes = inherited_extended_attributes_by_interface.get(ancestor, {})
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameTree.cpp 298 bool FrameTree::isDescendantOf(const Frame* ancestor) const
300 if (!ancestor)
303 if (m_thisFrame->page() != ancestor->page())
307 if (frame == ancestor)
FrameTree.h 51 bool isDescendantOf(const Frame* ancestor) const;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGGraphicsElement.h 70 const SVGGraphicsElement* ancestor = 0) const;
  /external/libunwind/tests/
ia64-test-sig.c 24 /* This test uses the unwind interface to modify the IP in an ancestor
  /external/chromium_org/cc/layers/
draw_properties.h 73 // ancestor of this layer.
98 // Number of descendants with a clip parent that is our ancestor. NB - this
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
node_breadcrumb.js 103 // if the siblings are needed, then some ancestor
105 // we copy the whole subtree of that ancestor anyways
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/
util.js 83 * Return the first ancestor for which the {@code predicate} returns true.
87 * @return {Node} The found ancestor or null if not found.
  /frameworks/base/core/java/android/view/
TouchDelegate.java 27 * class should be used by an ancestor of the delegate. To use a TouchDelegate, first create an
31 * The ancestor should then forward all of its touch events received in its
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
description_util.js 91 * ancestor nodes. The ancestors are in order from the highest in the
94 * @param {Array.<Node>} ancestorsArray An array of ancestor nodes.
132 // Use the ancestor closest to the target to be the personality.
177 * ancestor nodes. The ancestors are in order from the highest in the
434 * Determines whether to describe the exit of an ancestor chain.
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLObjectElement.cpp 400 for (HTMLObjectElement* ancestor = Traversal<HTMLObjectElement>::firstAncestor(*this); ancestor; ancestor = Traversal<HTMLObjectElement>::firstAncestor(*ancestor)) {
401 if (ancestor->isExposed())

Completed in 1241 milliseconds

1 2 34 5 6 7 8 91011>>