HomeSort by relevance Sort by last modified time
    Searched refs:ancestor (Results 26 - 50 of 126) sorted by null

12 3 4 5 6

  /external/webkit/Source/WebCore/editing/
htmlediting.cpp 571 Node* ancestor = range->commonAncestorContainer(ec);// find the cloeset common ancestor local
574 while (ancestor && ancestor->rendererIsEditable() && isNodeVisiblyContainedWithin(ancestor, maximumRange) && ancestor != rootNode) {
575 highestNode = ancestor;
576 ancestor = ancestor->parentNode();
892 Node* ancestor = node->shadowAncestorNode()
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
ViewLoader.java 300 View ancestor = (View) parent; local
301 while (ancestor.getParent() != null) {
302 ancestor = (View) ancestor.getParent();
304 ancestor.clearFocus();
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_contents_view.cc 417 views::View* ancestor = child; local
418 while (ancestor && ancestor != opt_in_view_)
419 ancestor = ancestor->parent();
420 return ancestor ? child : this;
  /external/chromium/chrome/browser/accessibility/
browser_accessibility.h 74 // Return true if this object is equal to or a descendant of |ancestor|.
75 bool IsDescendantOf(BrowserAccessibility* ancestor);
  /external/chromium/webkit/glue/
webaccessibility.h 201 // Returns true if |ancestor| is the first unignored parent of |child|,
203 // |ancestor| is the *first* ancestor that isn't marked as
205 bool IsParentUnignoredOf(const WebKit::WebAccessibilityObject& ancestor,
webaccessibility.cc 429 const WebKit::WebAccessibilityObject& ancestor,
434 return parent.equals(ancestor);
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
Layer.h 46 // layer, rather than using the transforms of all ancestor layers. This is
134 space to the space of the given ancestor layer. Use NULL for ancestor to
136 fixed position layer with ancestor != NULL.
140 SkMatrix localToAncestor = layer->localToAncestor(ancestor);
141 SkMatrix ancestorToGlobal = ancestor->localToAncestor(NULL);
145 void localToAncestor(const Layer* ancestor, SkMatrix* matrix) const;
  /external/webkit/Source/WebKit2/UIProcess/
WebFrameProxy.h 128 bool isDescendantOf(const WebFrameProxy* ancestor) const;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBase.java 1358 int ancestor=_parent(elementNodeIndex); local
    [all...]
  /external/objenesis/tck/src/org/objenesis/tck/candidates/
candidates.properties 65 org.objenesis.tck.candidates.SerializableWithAncestorThrowingException = Serializable with ancestor throwing exception
  /external/webkit/Source/WebCore/inspector/
InspectorDOMAgent.cpp 737 for (ContainerNode* ancestor = node->parentOrHostNode(); ancestor; ancestor = ancestor->parentOrHostNode())
738 ancestors.append(ancestor);
743 ContainerNode* ancestor = ancestors[i - 1]; local
746 if (ancestor->hasEventListeners(type))
747 eventInformation.append(EventListenerInfo(ancestor, type, ancestor->getEventListeners(type)));
    [all...]
  /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/webkit/LayoutTests/dom/xhtml/level3/core/
typeinfoisderivedfrom67.js 83 ancestor type.
typeinfoisderivedfrom68.js 83 ancestor type.
typeinfoisderivedfrom69.js 83 ancestor type.
typeinfoisderivedfrom70.js 83 ancestor type.
typeinfoisderivedfrom71.js 82 of an union of the ancestor type.
typeinfoisderivedfrom72.js 83 ancestor type.
typeinfoisderivedfrom73.js 82 where the ancestor type is a member of the union and is a union itself.
  /external/webkit/Source/WebKit/win/Interfaces/
IWebFramePrivate.idl 78 HRESULT isDescendantOfFrame([in] IWebFrame* ancestor, [out, retval] BOOL* result);
  /external/webkit/Source/WebCore/html/
HTMLElement.cpp 796 for (ContainerNode* ancestor = parentNode(); ancestor; ancestor = ancestor->parentNode()) {
797 if (ancestor->hasTagName(formTag))
798 return static_cast<HTMLFormElement*>(ancestor);
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderFrameSet.cpp 817 for (RenderObject* ancestor = parent(); ancestor; ancestor = ancestor->parent()) {
818 if (ancestor->isFrameSet())
819 toRenderFrameSet(ancestor)->m_isChildResizing = isResizing;
  /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/webkit/Source/WebCore/dom/
Node.cpp     [all...]
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodeappendchildnodeancestor.js 83 an ancestor node(root node) to it.

Completed in 748 milliseconds

12 3 4 5 6