/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
dom_util.js | 128 * checkAncestors: {boolean=} True if we should check the ancestor chain 159 * @param {boolean} checkAncestors True if we should check the ancestor chain 194 * Checks the ancestor chain for the given node for invisibility. If an 195 * ancestor is invisible and this cannot be overriden by a descendant, 198 * @param {Node} node The node to check the ancestor chain for. 203 var ancestor = node; 204 while (ancestor = ancestor.parentElement) { 205 var style = document.defaultView.getComputedStyle(ancestor, null); 213 if (ancestor == document.documentElement) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/ |
CompositedLayerMapping.cpp | 407 // Thus, a RenderLayer can be clipped by a RenderLayer that is an ancestor in the renderer hierarchy, 409 // In such scenarios, an ancestor clipping layer is necessary to apply the composited clip for this layer. 413 // If our containing block is our ancestor scrolling layer, then we'll already be clipped 414 // to it via our scroll parent and we don't need an ancestor clipping layer. 592 // But the squashingLayer needs to be positioned with respect to the ancestor CompositedLayerMapping. 593 // The conversion between referenceLayer and the ancestor CLM is already computed as [all...] |
CompositingLayerAssigner.h | 68 // CompositedLayerMapping owned by a stacking ancestor, since this changes paint order.
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderLayer.h | 196 // Gets the nearest enclosing positioned ancestor layer (also includes 238 // Bounding box relative to some ancestor layer. Pass offsetFromRoot if known. 428 // scroll parent if neither its compositor scrolling ancestor, nor any 429 // other layer scrolled by this ancestor, is a stacking ancestor of this 436 // parents escape the clip of a stacking tree ancestor. The compositor [all...] |
/external/chromium_org/ui/compositor/ |
layer.cc | 445 bool Layer::GetTargetTransformRelativeTo(const Layer* ancestor, 448 for (; p && p != ancestor; p = p->parent()) { 458 return p == ancestor; 797 bool Layer::ConvertPointForAncestor(const Layer* ancestor, 800 bool result = GetTargetTransformRelativeTo(ancestor, &transform); 807 bool Layer::ConvertPointFromAncestor(const Layer* ancestor, 810 bool result = GetTargetTransformRelativeTo(ancestor, &transform);
|
/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/cc/trees/ |
layer_tree_host_common.cc | 125 // ancestor and descendant. These transforms must be 2D translations, and this 169 // clip_parent, it may not inherit its immediate ancestor's clip. 175 // If the layer has no clip_parent, or the ancestor is the same as its actual 207 // our common ancestor. This happens to be our parent, so it is sufficent to 208 // translate from our clip parent's space to the space of its ancestor (our 321 // either the clip parent is not an ancestor of the clip child or the surface 684 // specified in some ancestor layer's coordinate. [all...] |
/external/chromium_org/ui/views/ |
view.cc | 346 const View* ancestor = view->parent_; local 347 if (ancestor != NULL) { 348 ancestor_bounds.SetRect(0, 0, ancestor->width(), ancestor->height()); 354 view = ancestor; [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemNumber.java | 174 * those that are descendants of the nearest ancestor that matches 187 * those that are descendants of the nearest ancestor that matches 204 * those that are descendants of the nearest ancestor that matches 218 * When level="single", it goes up to the first node in the ancestor-or-self axis 220 * one plus the number of preceding siblings of that ancestor that match the count 221 * pattern. If there is no such ancestor, it constructs an empty list. If the from 223 * that are descendants of the nearest ancestor that matches the from pattern. 231 * those that are descendants of the nearest ancestor that matches the from pattern. 238 * the union of the members of the preceding and ancestor-or-self axes). If the 596 * and a context, find the first ancestor that matches th [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Range.cpp | 379 // case 2: node C (container B or an ancestor) is a child node of A 397 // case 3: node C (container A or an ancestor) is a child node of B 796 RefPtrWillBeRawPtr<Node> ancestor = *it; local 798 if (RefPtrWillBeRawPtr<Node> clonedAncestor = ancestor->cloneNode(false)) { // Might have been removed already during mutation event. 804 // Copy siblings of an ancestor of start/end containers 807 ASSERT(!firstChildInAncestorToProcess || firstChildInAncestorToProcess->parentNode() == ancestor); 818 // Prior call of ancestor->removeChild() may cause a tree change due to DOMSubtreeModified event. 819 // Therefore, we need to make sure |ancestor| is still |child|'s parent. 820 if (ancestor == child->parentNode()) 821 ancestor->removeChild(child, exceptionState) [all...] |
TreeScope.cpp | 428 // chain is the ancestor. 464 Element* ancestor = node->shadowHost(); local 465 if (!ancestor) 467 node = ancestor;
|
/art/runtime/ |
modifiers.h | 55 // class/ancestor overrides finalize()
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
Tree.as | 27 /** Walk upwards and get first ancestor with this token type. */
|
/external/chromium_org/cc/layers/ |
render_surface.h | 143 // The nearest ancestor target surface that will contain the contents of this
|
render_surface_impl.h | 170 // The nearest ancestor target surface that will contain the contents of this
|
/external/chromium_org/chrome/browser/sync_file_system/local/ |
local_file_sync_status.cc | 61 // Check if any ancestor of |normalized_path| is in |writing_|.
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
background_gradient_view.mm | 116 // ancestor's draw function (e.g, BookmarkButtonView). Call setNeedsDisplay
|
/external/chromium_org/content/renderer/ |
context_menu_params_builder.cc | 66 << "ancestor that is a link.";
|
/external/chromium_org/sync/syncable/ |
syncable_util.cc | 33 // we have to ensure that the entry is not an ancestor of the new parent.
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
ReplaceSelectionCommand.h | 95 void moveElementOutOfAncestor(PassRefPtrWillBeRawPtr<Element>, PassRefPtrWillBeRawPtr<ContainerNode> ancestor);
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
TreeScopeEventContext.h | 69 // For ancestor-descendant relationship check in Q(1).
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGRenderSupport.h | 87 // Determines if any ancestor's transform has changed.
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathNodeSet.h | 68 // No node in the set is ancestor of another. Unlike m_isSorted, this is
|
/external/chromium_org/ui/wm/core/ |
transient_window_manager.h | 81 // transient ancestor changing.
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ArrayListMultimapTest.java | 76 * Test throwing ConcurrentModificationException when a sublist's ancestor's
|