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

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontFaceFormatElement.cpp 47 ContainerNode* ancestor = parentNode()->parentNode();
48 if (!isSVGFontFaceSrcElement(ancestor))
51 ancestor = ancestor->parentNode();
52 if (isSVGFontFaceElement(ancestor))
53 toSVGFontFaceElement(ancestor)->rebuildFontFace();
SVGForeignObjectElement.cpp 146 Element* ancestor = parentElement(); local
147 while (ancestor && ancestor->isSVGElement()) {
148 if (ancestor->renderer() && ancestor->renderer()->isSVGHiddenContainer())
151 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/html/imports/
HTMLImportStateResolver.cpp 53 for (HTMLImport* ancestor = m_import; ancestor; ancestor = ancestor->parent()) {
54 for (HTMLImport* predecessor = ancestor->previous(); predecessor; predecessor = predecessor->previous()) {
HTMLImportsController.cpp 83 for (HTMLImport* ancestor = parent; ancestor; ancestor = ancestor->parent()) {
84 if (!ancestor->isRoot() && equalIgnoringFragmentIdentifier(toHTMLImportChild(parent)->url(), url))
  /external/chromium_org/ui/accessibility/
ax_node.cc 38 bool AXNode::IsDescendantOf(AXNode* ancestor) {
39 if (this == ancestor)
42 return parent()->IsDescendantOf(ancestor);
ax_node.h 55 // Return true if this object is equal to or a descendant of |ancestor|.
56 bool IsDescendantOf(AXNode* ancestor);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
PageConsoleAgent.cpp 78 Node& ancestor = node->highestAncestorOrSelf(); local
79 if (!ancestor.isShadowRoot() || toShadowRoot(ancestor).type() == ShadowRoot::AuthorShadowRoot)
82 node = toShadowRoot(ancestor).host();
  /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/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...]
  /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 RefPtrWillBeRawPtr<Element> ancestor = nullptr; local
170 for (ancestor = ancestors.first(), clonedParent = clonedAncestor->parentElement();
171 ancestor && ancestor != topBlockquote;
172 ancestor = ancestor->parentElement(), clonedParent = clonedParent->parentElement()
    [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/chromium_org/third_party/skia/src/core/
SkPictureStateTree.cpp 156 // Trace back up to a common ancestor, restoring to get our current state to match that
157 // of the ancestor, and saving a list of nodes whose state we need to apply to get to
158 // the target (we can restore up to the ancestor immediately, but we'll need to return
162 Node* ancestor = targetNode; local
163 while (tmp != ancestor) {
165 uint16_t targetLevel = ancestor->fLevel;
180 fNodes.push(ancestor);
181 ancestor = ancestor->fParent;
185 if (ancestor->fFlags & Node::kSave_Flag)
    [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/skia/src/core/
SkPictureStateTree.cpp 156 // Trace back up to a common ancestor, restoring to get our current state to match that
157 // of the ancestor, and saving a list of nodes whose state we need to apply to get to
158 // the target (we can restore up to the ancestor immediately, but we'll need to return
162 Node* ancestor = targetNode; local
163 while (tmp != ancestor) {
165 uint16_t targetLevel = ancestor->fLevel;
180 fNodes.push(ancestor);
181 ancestor = ancestor->fParent;
185 if (ancestor->fFlags & Node::kSave_Flag)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositingReasonFinder.cpp 183 // If the fixed-position element does not have any scrollable ancestor between it and
185 // assuming we can opt-out (i.e. no scrollable ancestor), and refine the answer below.
194 RenderLayer* ancestor = layer->parent(); local
195 while (ancestor && !hasScrollableAncestor) {
196 if (ancestor->scrollsOverflow())
198 if (ancestor->renderer() == &m_renderView)
200 ancestor = ancestor->parent();
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
find_util.js 28 * unique ancestor tree and outputting Node if the ancestor tree matches
41 // Find our ancestor that matches the predicate.
42 var ancestor;
43 if (ancestor = predicate(cvox.DomUtil.getAncestors(cur.start.node))) {
44 cur = cvox.CursorSelection.fromNode(ancestor).setReversed(r);
  /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/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CPUProfileBottomUpDataGrid.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...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorFilter.cpp 95 for (Element* ancestor = &parent; ancestor; ancestor = ancestor->parentOrShadowHostElement())
96 ancestors.append(ancestor);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormControlElement.cpp 111 for (HTMLElement* ancestor = Traversal<HTMLElement>::firstAncestor(*this); ancestor; ancestor = Traversal<HTMLElement>::firstAncestor(*ancestor)) {
112 if (!legendAncestor && isHTMLLegendElement(*ancestor))
113 legendAncestor = ancestor;
114 if (isHTMLFieldSetElement(*ancestor)) {
115 fieldSetAncestor = toHTMLFieldSetElement(ancestor);
  /external/guava/guava/src/com/google/common/collect/
AbstractMultimap.java 376 @Nullable K key, List<V> list, @Nullable WrappedCollection ancestor) {
378 ? new RandomAccessWrappedList(key, list, ancestor)
379 : new WrappedList(key, list, ancestor);
387 * <p>Full collections, identified by a null ancestor field, contain all
394 * given key. Its ancestor field points to the full wrapped collection with
402 final WrappedCollection ancestor; field in class:AbstractMultimap.WrappedCollection
406 @Nullable WrappedCollection ancestor) {
409 this.ancestor = ancestor;
411 = (ancestor == null) ? null : ancestor.getDelegate()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderSupport.cpp 195 bool SVGRenderSupport::transformToRootChanged(RenderObject* ancestor)
197 while (ancestor && !ancestor->isSVGRoot()) {
198 if (ancestor->isSVGTransformableContainer())
199 return toRenderSVGContainer(ancestor)->didTransformToRootUpdate();
200 if (ancestor->isSVGViewportContainer())
201 return toRenderSVGViewportContainer(ancestor)->didTransformToRootUpdate();
202 ancestor = ancestor->parent();
  /external/chromium_org/chrome/browser/sync_file_system/
fake_remote_change_processor.cc 71 base::FilePath ancestor = fileapi::VirtualPath::DirName(url.path()); local
74 CreateSyncableFileSystemURL(url.origin(), ancestor);
89 base::FilePath ancestor_parent = fileapi::VirtualPath::DirName(ancestor);
90 if (ancestor == ancestor_parent)
92 ancestor = ancestor_parent;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerStackingNode.cpp 318 for (RenderLayer* ancestor = layer()->parent(); ancestor; ancestor = ancestor->parent()) {
319 RenderLayerStackingNode* stackingNode = ancestor->stackingNode();

Completed in 1299 milliseconds

1 2 3 4 5 6 7 8