HomeSort by relevance Sort by last modified time
    Searched defs:ancestor (Results 1 - 15 of 15) sorted by null

  /dalvik/libcore/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/webkit/WebCore/editing/
BreakBlockquoteCommand.cpp 142 // On exiting this loop, clonedAncestor is the lowest ancestor
173 // Split the tree up the ancestor chain until the topBlockquote
174 // Throughout this loop, clonedParent is the clone of ancestor's parent.
175 // This is so we can clone ancestor's siblings and place the clones
176 // into the clone corresponding to the ancestor's parent.
177 Element* ancestor; local
179 for (ancestor = ancestors.first(), clonedParent = clonedAncestor->parentElement();
180 ancestor && ancestor != topBlockquote;
181 ancestor = ancestor->parentElement(), clonedParent = clonedParent->parentElement())
    [all...]
htmlediting.cpp 639 Node* ancestor = range->commonAncestorContainer(ec);// find the cloeset common ancestor local
642 while (ancestor && ancestor->isContentEditable() && isNodeVisiblyContainedWithin(ancestor, maximumRange) && ancestor != rootNode) {
643 highestNode = ancestor;
644 ancestor = ancestor->parentNode();
923 Node* ancestor = node->shadowAncestorNode()
    [all...]
markup.cpp 897 Node *ancestor = ancestorsToClose.last(); local
    [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...]
  /dalvik/libcore/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...]
DTMDefaultBase.java 1358 int ancestor=_parent(elementNodeIndex); local
    [all...]
  /external/guava/src/com/google/common/collect/
AbstractMultimap.java 363 K key, List<V> list, @Nullable WrappedCollection ancestor) {
365 ? new RandomAccessWrappedList(key, list, ancestor)
366 : new WrappedList(key, list, ancestor);
374 * <p>Full collections, identified by a null ancestor field, contain all
381 * given key. Its ancestor field points to the full wrapped collection with
389 final WrappedCollection ancestor; field in class:AbstractMultimap.WrappedCollection
393 @Nullable WrappedCollection ancestor) {
396 this.ancestor = ancestor;
398 = (ancestor == null) ? null : ancestor.getDelegate()
    [all...]
  /external/webkit/WebCore/inspector/
InspectorDOMAgent.cpp 387 ContainerNode* ancestor = ancestors[i - 1].get(); local
390 if (ancestor->hasEventListeners(type))
391 eventInformation.append(EventListenerInfo(static_cast<Node*>(ancestor), type, ancestor->getEventListeners(type)));
  /external/libxml2/include/libxml/
xpath.h 382 xmlNodePtr ancestor; /* used for walking preceding axis */ member in struct:_xmlXPathParserContext
  /dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LoggerTest.java 4297 Logger ancestor = new MockParentLogger("ancestorLogger", local
4436 Logger ancestor = new MockLogger("ancestorLogger", local
4526 Logger ancestor = new MockLogger("ancestorLogger", local
    [all...]
  /external/webkit/WebCore/dom/
Node.cpp 1132 // check for ancestor/same node
2662 ContainerNode* ancestor = ancestors[i].get(); local
2717 ContainerNode* ancestor = ancestors[i - 1].get(); local
2737 ContainerNode* ancestor = ancestors[i].get(); local
2772 ContainerNode* ancestor = ancestors[i].get(); local
    [all...]
  /external/webkit/WebCore/rendering/
RenderLayer.cpp 835 RenderLayer* ancestor = transparentPaintingAncestor();
836 if (ancestor)
837 ancestor->beginTransparencyLayers(p, rootLayer, paintBehavior);
3159 RenderObject* ancestor = commonAncestor(oldHoverObj, newHoverObj); local
    [all...]
  /frameworks/base/core/java/android/view/
View.java 3637 ViewParent ancestor = mParent; local
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 614 milliseconds