HomeSort by relevance Sort by last modified time
    Searched full:ancestor (Results 1 - 25 of 522) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontFaceFormatElement.cpp 50 ContainerNode* ancestor = parentNode()->parentNode();
51 if (!ancestor || !ancestor->hasTagName(font_face_srcTag))
54 ancestor = ancestor->parentNode();
55 if (ancestor && ancestor->hasTagName(font_faceTag))
56 toSVGFontFaceElement(ancestor)->rebuildFontFace();
SVGForeignObjectElement.cpp 144 Element* ancestor = parentElement(); local
145 while (ancestor && ancestor->isSVGElement()) {
146 if (ancestor->renderer() && ancestor->renderer()->isSVGHiddenContainer())
149 ancestor = ancestor->parentElement();
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorExsltFuncResult.java 52 ElemTemplateElement ancestor = handler.getElemTemplateElement().getParentElem(); local
53 while (ancestor != null && !(ancestor instanceof ElemExsltFunction))
55 if (ancestor instanceof ElemVariable
56 || ancestor instanceof ElemParam
57 || ancestor instanceof ElemExsltFuncResult)
62 ancestor = ancestor.getParentElem();
64 if (ancestor == null)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
CompositingState.h 11 // The layer paints into its enclosing composited ancestor.
14 // The layer is composited, but its contents still paint into enclosing composited ancestor.
15 // In this state, repaint invalidations must be sent to the enclosing composited ancestor.
  /external/chromium_org/ui/views/corewm/
transient_window_stacking_client.cc 54 // Returns true if |window| has |ancestor| as a transient ancestor. A transient
55 // ancestor is found by following the transient parent chain of the window.
56 bool HasTransientAncestor(const Window* window, const Window* ancestor) {
57 if (window->transient_parent() == ancestor)
60 HasTransientAncestor(window->transient_parent(), ancestor) : false;
  /external/chromium_org/third_party/skia/src/core/
SkPictureStateTree.cpp 129 // Trace back up to a common ancestor, restoring to get our current state to match that
130 // of the ancestor, and saving a list of nodes whose state we need to apply to get to
131 // the target (we can restore up to the ancestor immediately, but we'll need to return
135 Node* ancestor = targetNode; local
136 while (tmp != ancestor) {
138 uint16_t targetLevel = ancestor->fLevel;
145 fNodes.push(ancestor);
146 ancestor = ancestor->fParent;
150 if (ancestor->fFlags & Node::kSave_Flag)
    [all...]
  /external/skia/src/core/
SkPictureStateTree.cpp 129 // Trace back up to a common ancestor, restoring to get our current state to match that
130 // of the ancestor, and saving a list of nodes whose state we need to apply to get to
131 // the target (we can restore up to the ancestor immediately, but we'll need to return
135 Node* ancestor = targetNode; local
136 while (tmp != ancestor) {
138 uint16_t targetLevel = ancestor->fLevel;
145 fNodes.push(ancestor);
146 ancestor = ancestor->fParent;
150 if (ancestor->fFlags & Node::kSave_Flag)
    [all...]
  /external/linux-tools-perf/Documentation/
manpage-suppress-sp.xsl 15 <xsl:if test="not(ancestor::authorblurb) and
16 not(ancestor::personblurb)">
  /external/guava/guava-tests/test/com/google/common/collect/
FauxveridesTest.java 108 private void doHasAllFauxveridesTest(Class<?> descendant, Class<?> ancestor) {
110 getAllRequiredToFauxveride(descendant, ancestor);
111 Set<MethodSignature> found = getAllFauxveridden(descendant, ancestor);
114 assertEquals("Must hide public static methods from ancestor classes",
119 Class<?> descendant, Class<?> ancestor) {
120 return getPublicStaticMethodsBetween(ancestor, Object.class);
124 Class<?> descendant, Class<?> ancestor) {
125 return getPublicStaticMethodsBetween(descendant, ancestor);
129 Class<?> descendant, Class<?> ancestor) {
131 for (Class<?> clazz : getClassesBetween(descendant, ancestor)) {
    [all...]
  /sdk/eclipse/sites/external/web/
site.xsl 28 <xsl:sort select="ancestor::feature//@version" order="ascending"/>
29 <xsl:sort select="ancestor::feature//@id" order="ascending" case-order="upper-first"/>
41 <xsl:when test="ancestor::feature//@label">
42 <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@label"/></a>
45 (<xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/>)
49 <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/></a
    [all...]
  /sdk/eclipse/sites/internal/web/
site.xsl 28 <xsl:sort select="ancestor::feature//@version" order="ascending"/>
29 <xsl:sort select="ancestor::feature//@id" order="ascending" case-order="upper-first"/>
41 <xsl:when test="ancestor::feature//@label">
42 <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@label"/></a>
45 (<xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/>)
49 <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/></a
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
BottomUpProfileDataGridTree.js 30 // because a root node can represent itself AND an ancestor.
114 var ancestor = nodeInfo.ancestor;
116 var child = this.findChild(ancestor);
127 // If not, add it as a true ancestor.
128 // In heavy mode, we take our visual identity from ancestor node...
129 child = new WebInspector.BottomUpProfileDataGridNode(ancestor, this.tree);
131 if (ancestor !== focusNode) {
140 var parent = ancestor.parent;
142 nodeInfo.ancestor = parent
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
Dominators.java 117 DFSInfo ancestorbbInfo = info[bbInfo.ancestor.getIndex()];
119 if (ancestorbbInfo.ancestor != null) {
128 SsaBasicBlock vAncestor = vbbInfo.ancestor;
131 // Make sure we process our ancestor before ourselves.
132 if (visited.add(vAncestor) && vabbInfo.ancestor != null) {
138 // Update based on ancestor info.
139 if (vabbInfo.ancestor == null) {
148 vbbInfo.ancestor = vabbInfo.ancestor;
156 if (bbInfo.ancestor == null)
278 public SsaBasicBlock ancestor; field in class:Dominators.DFSInfo
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
Axis.java 25 * <p>The ancestor, descendant, following, preceding and self axes partition a
34 * The ancestor axis contains the ancestors of the context node;
36 * node and the parent's parent and so on; thus, the ancestor axis will
39 public static final int ANCESTOR = 0;
42 * the ancestor-or-self axis contains the context node and the ancestors of
43 * the context node; thus, the ancestor axis will always include the
126 * A non-xpath axis, traversing the the preceding and the ancestor nodes,
166 true, // ancestor
167 true, // ancestor-or-self
185 "ancestor", //
    [all...]
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/
context_menu_button.js 14 * Helper function for ContextMenuButton to find the first ancestor of the
28 * ancestor that has a {@code contextMenu} property.
39 * Override to return the contextMenu for the ancestor.
  /external/chromium_org/third_party/WebKit/Source/core/editing/
BreakBlockquoteCommand.cpp 140 // On exiting this loop, clonedAncestor is the lowest ancestor
164 // Split the tree up the ancestor chain until the topBlockquote
165 // Throughout this loop, clonedParent is the clone of ancestor's parent.
166 // This is so we can clone ancestor's siblings and place the clones
167 // into the clone corresponding to the ancestor's parent.
168 RefPtr<Element> ancestor; local
170 for (ancestor = ancestors.first(), clonedParent = clonedAncestor->parentElement();
171 ancestor && ancestor != topBlockquote;
172 ancestor = ancestor->parentElement(), clonedParent = clonedParent->parentElement()
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
Dominators.java 117 DFSInfo ancestorbbInfo = info[bbInfo.ancestor.getIndex()];
119 if (ancestorbbInfo.ancestor != null) {
128 SsaBasicBlock vAncestor = vbbInfo.ancestor;
131 // Make sure we process our ancestor before ourselves.
132 if (visited.add(vAncestor) && vabbInfo.ancestor != null) {
138 // Update based on ancestor info.
139 if (vabbInfo.ancestor == null) {
148 vbbInfo.ancestor = vabbInfo.ancestor;
156 if (bbInfo.ancestor == null)
278 public SsaBasicBlock ancestor; field in class:Dominators.DFSInfo
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/
user-drag-with-decorations.html 1 This tests that we don't include overflow decorations from our ancestor nodes in the drag image for -webkit-user-drag: element. To perform this test drag the green square below. The drag image should not contain any parts of the scrollbar graphics visible on the page.
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
PageConsoleAgent.cpp 78 Node* ancestor = node->highestAncestor(); local
79 if (!ancestor->isShadowRoot() || toShadowRoot(ancestor)->type() == ShadowRoot::AuthorShadowRoot)
82 node = toShadowRoot(ancestor)->host();
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
layer_background_color.html 18 ancestor. To make sure this test covers the intended scenario, we force the
  /external/chromium_org/third_party/WebKit/Source/core/css/
fullscreen.css 6 :root:-webkit-full-screen-document:not(:-webkit-full-screen), :root:-webkit-full-screen-ancestor {
10 :-webkit-full-screen-ancestor:not(iframe) {
  /external/chromium_org/tools/python/google/
path_utils.py 21 def FindAncestor(start_dir, ancestor):
22 """Finds an ancestor dir in a path.
31 if tail == ancestor:
36 raise PathNotFound("Unable to find ancestor %s in %s" % (ancestor, start_dir))
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 131 // Check that the node at index "position" is not an ancestor
133 // RETURN -1. If position is NOT an ancestor, return position.
139 // We have to look all the way up the ancestor chain
140 // to make sure we don't have an ancestor.
141 int ancestor = startPos; local
142 while(ancestor > 0)
144 // Get the node whose index == ancestor
145 ancestor*=slotsize;
146 int chunkpos = ancestor >> lowbits;
147 int slotpos = ancestor & lowmask
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormControlElement.cpp 108 for (ContainerNode* ancestor = parentNode(); ancestor; ancestor = ancestor->parentNode()) {
109 if (!legendAncestor && ancestor->hasTagName(legendTag))
110 legendAncestor = ancestor;
111 if (ancestor->hasTagName(fieldsetTag)) {
112 fieldSetAncestor = toHTMLFieldSetElement(ancestor);
391 for (ContainerNode* ancestor = parentNode(); ancestor; ancestor = ancestor->parentNode())
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NSInfo.java 61 * ancestor has XMLNS attributes.
99 /** Flag indicating whether one of this node's ancestor has an XMLNS attribute */
105 /** Constant indicating an ancestor has an XMLNS attribute */

Completed in 227 milliseconds

1 2 3 4 5 6 7 8 91011>>