/external/objenesis/tck/src/org/objenesis/tck/candidates/ |
candidates.properties | 65 org.objenesis.tck.candidates.SerializableWithAncestorThrowingException = Serializable with ancestor throwing exception
|
/external/chromium_org/ui/views/ |
view.h | 409 // Returns the first ancestor, starting at this, whose class name is |name|. 410 // Returns null if no ancestor has the class name |name|. [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/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;
|
Node.cpp | 936 // Return true if other is an ancestor of this, otherwise false [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/chromium/chrome/browser/resources/shared/js/ |
util.js | 86 * Return the first ancestor for which the {@code predicate} returns true. 90 * @return {Node} The found ancestor or null if not found.
|
/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.
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTextFormControlElement.cpp | 620 Element* ancestor = container->shadowHost(); 621 return ancestor && isHTMLTextFormControlElement(ancestor) ? toHTMLTextFormControlElement(ancestor) : 0;
|
HTMLElement.cpp | 676 for (ContainerNode* ancestor = parentNode(); ancestor; ancestor = ancestor->parentNode()) { 677 if (ancestor->hasTagName(formTag)) 678 return toHTMLFormElement(ancestor); [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/ |
v8_interface.py | 403 def inherits_interface(interface, ancestor): 405 # Do by computing ancestor chain in compute_dependencies.py 406 return ancestor in [interface.name, interface.parent]
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderGeometryMap.cpp | 197 static bool canMapBetweenRenderers(const RenderObject* renderer, const RenderObject* ancestor) 207 if (current == ancestor)
|
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...] |
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...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
HeapSnapshotGridNodes.js | 593 var ancestor = this._parentGridNode; 594 while (ancestor) { 595 if (ancestor.snapshotNodeId === this.snapshotNodeId) 596 return ancestor; 597 ancestor = ancestor._parentGridNode; [all...] |
/external/chromium_org/ui/views/controls/menu/ |
menu_controller.cc | 152 // there are no focusable children of |ancestor| after |start_at|. 153 static View* GetNextFocusableView(View* ancestor, 156 DCHECK(ancestor->Contains(start_at)); 168 } while (parent != ancestor); 1620 const MenuItemView* ancestor = state_.item; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
ReplaceSelectionCommand.cpp | 638 RefPtr<Node> ancestor = prpAncestor; local 640 if (!ancestor->parentNode()->rendererIsEditable()) 644 VisiblePosition lastPositionInParagraph = lastPositionInNode(ancestor.get()); 647 if (ancestor->nextSibling()) 648 insertNodeBefore(node, ancestor->nextSibling()); 650 appendNode(node, ancestor->parentNode()); 652 RefPtr<Node> nodeToSplitTo = splitTreeToNode(node.get(), ancestor.get(), true); 656 if (!ancestor->firstChild()) 657 removeNode(ancestor.release()); [all...] |
/external/chromium_org/cc/layers/ |
layer.cc | 363 bool Layer::HasAncestor(const Layer* ancestor) const { 365 if (layer == ancestor) 651 void Layer::SetClipParent(Layer* ancestor) { 653 if (clip_parent_ == ancestor) 659 clip_parent_ = ancestor; [all...] |
layer_impl.cc | 139 bool LayerImpl::HasAncestor(const LayerImpl* ancestor) const { 140 if (!ancestor) 144 if (layer == ancestor) 182 void LayerImpl::SetClipParent(LayerImpl* ancestor) { 183 if (clip_parent_ == ancestor) 189 clip_parent_ = ancestor; [all...] |
layer.h | 93 bool HasAncestor(const Layer* ancestor) const; 202 void SetClipParent(Layer* ancestor);
|
layer_impl.h | 103 bool HasAncestor(const LayerImpl* ancestor) const; 118 void SetClipParent(LayerImpl* ancestor);
|
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/ |
ScrollingCoordinator.cpp | [all...] |
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/ |
ClassPath.java | 761 ClassDef ancestor = this; local 762 while (ancestor.classDepth > superclassDepth) { 763 ancestor = ancestor.getSuperclass(); 766 return ancestor == superclassDef; [all...] |
/external/chromium_org/content/browser/accessibility/ |
browser_accessibility.cc | 113 BrowserAccessibility* ancestor) { 114 if (this == ancestor) { 117 return parent_->IsDescendantOf(ancestor);
|
/external/chromium/webkit/glue/ |
webaccessibility.cc | 429 const WebKit::WebAccessibilityObject& ancestor, 434 return parent.equals(ancestor);
|