/external/chromium_org/content/renderer/accessibility/ |
accessibility_node_serializer.cc | 36 // Returns true if |ancestor| is the first unignored parent of |child|, 38 // |ancestor| is the *first* ancestor that isn't marked as 40 bool IsParentUnignoredOf(const WebAXObject& ancestor, 45 return parent.equals(ancestor);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderLayer.cpp | 228 // This is similar to root() but we check if an ancestor layer would 268 // as canUseConvertToLayerCoords may be true for an ancestor layer. 425 // closest scrollable ancestor. 801 for (RenderLayer* ancestor = parent(); ancestor && ancestor->renderer() != containingBlock; ancestor = ancestor->parent()) { 802 // TODO(vollick): This isn't quite right. Whenever ancestor is composited and clips 809 if (ancestor->scrollsOverflow() [all...] |
RenderLayer.h | 219 // Gets the nearest enclosing positioned ancestor layer (also includes 232 // Ancestor compositing layer, excluding this. 235 // Ancestor composited scrolling layer at or above our containing block. 238 // Ancestor scrolling layer at or above our containing block. 293 // Bounding box relative to some ancestor layer. Pass offsetFromRoot if known. [all...] |
RenderObject.cpp | 594 for (RenderObject* ancestor = parent(); ancestor; ancestor = ancestor->parent()) { 595 if (!ancestor->isBox()) 598 RenderBox* ancestorBox = toRenderBox(ancestor); 792 RenderObject* ancestor = parent(); local 793 for (; ancestor && !ancestor->canContainFixedPositionObjects(); ancestor = ancestor->parent()) [all...] |
/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/chromium_org/ui/compositor/ |
layer.cc | 395 bool Layer::GetTargetTransformRelativeTo(const Layer* ancestor, 398 for (; p && p != ancestor; p = p->parent()) { 408 return p == ancestor; 702 bool Layer::ConvertPointForAncestor(const Layer* ancestor, 705 bool result = GetTargetTransformRelativeTo(ancestor, &transform); 712 bool Layer::ConvertPointFromAncestor(const Layer* ancestor, 715 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/chrome/browser/cocoa/ |
install_from_dmg.mm | 160 // class IOMedia. Since the filesystem service's entire ancestor chain 179 // Look at each of the filesystem service's ancestor services, beginning 181 // any ancestor service matches the class used for disk images, the
|
/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...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
Utilities.java | 288 View ancestor = ancestorChain.get(i); local 291 pt[0] += ancestor.getScrollX(); 292 pt[1] += ancestor.getScrollY();
|
/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/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/chrome/browser/ |
platform_util_common_linux.cc | 61 // A detached widget won't have a toplevel window as an ancestor, so we can't
|
/external/chromium_org/cc/layers/ |
render_surface.h | 137 // The nearest ancestor target surface that will contain the contents of this
|
render_surface_impl.h | 169 // The nearest ancestor target surface that will contain the contents of this
|
/external/chromium_org/cc/trees/ |
layer_tree_host_common.cc | 124 // ancestor and descendant. These transforms must be 2D translations, and this 168 // clip_parent, it may not inherit its immediate ancestor's clip. 174 // If the layer has no clip_parent, or the ancestor is the same as its actual 206 // our common ancestor. This happens to be our parent, so it is sufficent to 207 // translate from our clip parent's space to the space of its ancestor (our 320 // either the clip parent is not an ancestor of the clip child or the surface 671 // specified in some ancestor layer's coordinate. [all...] |
/external/chromium_org/content/browser/accessibility/ |
browser_accessibility_cocoa.h | 38 // Invalidate children for a non-ignored ancestor (including self).
|
/external/chromium_org/content/renderer/ |
context_menu_params_builder.cc | 70 << "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/dom/ |
TreeScope.cpp | 415 // chain is the ancestor. 425 Element* ancestor = node->shadowHost(); local 426 if (!ancestor) 428 node = ancestor;
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
ReplaceSelectionCommand.h | 92 void moveNodeOutOfAncestor(PassRefPtr<Node>, PassRefPtr<Node> ancestor);
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTextFormControlElement.cpp | 620 Element* ancestor = container->shadowHost(); 621 return ancestor && isHTMLTextFormControlElement(ancestor) ? toHTMLTextFormControlElement(ancestor) : 0;
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
TouchAdjustment.cpp | 224 if (Node* ancestor = node->parentOrShadowHostNode()) 225 return ancestor; 241 // responder or have an ancestor that is a responder. 248 // Check if we already have a result for a common ancestor from another candidate.
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGRenderSupport.h | 78 // Determines if any ancestor's transform has changed.
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathNodeSet.h | 67 // No node in the set is ancestor of another. Unlike m_isSorted, this is assumed to be false, unless the caller sets it to true.
|