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

1 2 3

  /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/webkit/Source/WebCore/editing/
BreakBlockquoteCommand.cpp 138 // On exiting this loop, clonedAncestor is the lowest ancestor
169 // Split the tree up the ancestor chain until the topBlockquote
170 // Throughout this loop, clonedParent is the clone of ancestor's parent.
171 // This is so we can clone ancestor's siblings and place the clones
172 // into the clone corresponding to the ancestor's parent.
173 Element* ancestor; local
175 for (ancestor = ancestors.first(), clonedParent = clonedAncestor->parentElement();
176 ancestor && ancestor != topBlockquote;
177 ancestor = ancestor->parentElement(), clonedParent = clonedParent->parentElement())
    [all...]
markup.cpp 365 Node* ancestor = ancestorsToClose.last(); local
366 if (next != pastEnd && next->isDescendantOf(ancestor))
369 appendEndTag(ancestor);
370 lastClosed = ancestor;
490 // Retain the Mail quote level by including all ancestor mail block quotes.
595 // Also include all of the ancestors of lastClosed up to this special ancestor.
596 for (ContainerNode* ancestor = lastClosed->parentNode(); ancestor; ancestor = ancestor->parentNode())
    [all...]
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/skia/src/core/
SkPictureStateTree.cpp 120 // Trace back up to a common ancestor, restoring to get our current state to match that
121 // of the ancestor, and saving a list of nodes whose state we need to apply to get to
122 // the target (we can restore up to the ancestor immediately, but we'll need to return
126 Node* ancestor = targetNode; local
127 while (tmp != ancestor) {
129 uint16_t targetLevel = ancestor->fLevel;
136 fNodes.push(ancestor);
137 ancestor = ancestor->fParent;
141 if (ancestor->fFlags & Node::kSave_Flag)
    [all...]
  /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/webkit/Source/WebCore/dom/
EventDispatcher.cpp 136 // Assume divergent boundary is the relatedTarget itself (in other words, related target ancestor chain does not cross any shadow DOM boundaries).
140 // Walk down from the top, looking for lowest common ancestor, also monitoring shadow DOM boundaries.
166 // The relatedTarget is an ancestor or shadowHost of the target.
247 Node* ancestor = m_node.get(); local
248 EventTarget* target = eventTargetRespectingSVGTargetRules(ancestor);
251 bool isSVGShadowRoot = ancestor->isSVGShadowRoot();
252 if (isSVGShadowRoot || ancestor->isShadowRoot()) {
256 ancestor = isSVGShadowRoot ? ancestor->svgShadowHost() : ancestor->shadowHost()
    [all...]
Range.cpp 480 // case 2: node C (container B or an ancestor) is a child node of A
498 // case 3: node C (container A or an ancestor) is a child node of B
869 RefPtr<Node> ancestor = *it; local
871 if (RefPtr<Node> clonedAncestor = ancestor->cloneNode(false)) { // Might have been removed already during mutation event.
877 // Copy siblings of an ancestor of start/end containers
880 ASSERT(!firstChildInAncestorToProcess || firstChildInAncestorToProcess->parentNode() == ancestor);
891 ancestor->removeChild(child, ec);
893 case EXTRACT_CONTENTS: // will remove child from ancestor
907 firstChildInAncestorToProcess = direction == ProcessContentsForward ? ancestor->nextSibling() : ancestor->previousSibling()
    [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();
  /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/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 202 Object ancestor = getAncestor(adaptor, tokenNames, t, goal); local
203 if ( ancestor==null ) return false;
204 t = ancestor;
  /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...]
DTMDefaultBase.java 1358 int ancestor=_parent(elementNodeIndex); local
    [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/guava/guava/src/com/google/common/net/
InternetDomainName.java 367 return hasPublicSuffix() ? ancestor(publicSuffixIndex) : null;
444 return ancestor(publicSuffixIndex - 1);
455 * Returns an {@code InternetDomainName} that is the immediate ancestor of
464 return ancestor(1);
468 * Returns the ancestor of the current domain at the given number of levels
475 private InternetDomainName ancestor(int levels) { method in class:InternetDomainName
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ipa-prop.h 49 getting addresses of of ancestor fields in C++
51 NULL, ancestor jump function must behave like a simple pass-through.
74 IPA_JF_ANCESTOR /* represented by field ancestor */
93 /* Structure holding data required to describe an ancestor pass-through
98 /* Offset of the field representing the ancestor. */
129 struct ipa_ancestor_jf_data GTY ((tag ("IPA_JF_ANCESTOR"))) ancestor; member in union:jump_func_value
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ipa-prop.h 49 getting addresses of of ancestor fields in C++
51 NULL, ancestor jump function must behave like a simple pass-through.
74 IPA_JF_ANCESTOR /* represented by field ancestor */
93 /* Structure holding data required to describe an ancestor pass-through
98 /* Offset of the field representing the ancestor. */
129 struct ipa_ancestor_jf_data GTY ((tag ("IPA_JF_ANCESTOR"))) ancestor; member in union:jump_func_value
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ipa-prop.h 49 getting addresses of of ancestor fields in C++
51 NULL, ancestor jump function must behave like a simple pass-through.
74 IPA_JF_ANCESTOR /* represented by field ancestor */
93 /* Structure holding data required to describe an ancestor pass-through
98 /* Offset of the field representing the ancestor. */
129 struct ipa_ancestor_jf_data GTY ((tag ("IPA_JF_ANCESTOR"))) ancestor; member in union:jump_func_value
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ipa-prop.h 49 getting addresses of of ancestor fields in C++
51 NULL, ancestor jump function must behave like a simple pass-through.
74 IPA_JF_ANCESTOR /* represented by field ancestor */
93 /* Structure holding data required to describe an ancestor pass-through
98 /* Offset of the field representing the ancestor. */
129 struct ipa_ancestor_jf_data GTY ((tag ("IPA_JF_ANCESTOR"))) ancestor; member in union:jump_func_value
  /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/libxslt/libxslt/
numbers.c 594 /* Skip to next preceding or ancestor */
635 xmlNodePtr ancestor; local
652 /* ancestor-or-self::*[count] */
653 for (ancestor = node;
654 (ancestor != NULL) && (ancestor->type != XML_DOCUMENT_NODE);
655 ancestor = xmlXPathNextAncestor(parser, ancestor)) {
658 xsltTestCompMatchList(context, ancestor, fromPat))
661 if ((count == NULL && node->type == ancestor->type &&
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorInstrumentation.cpp 86 Node* ancestor = ancestors[i].node(); local
87 if (ancestor->hasEventListeners(eventType))
    [all...]
  /external/libxml2/include/libxml/
xpath.h 383 xmlNodePtr ancestor; /* used for walking preceding axis */ member in struct:_xmlXPathParserContext
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LoggerTest.java 2768 Logger ancestor = new MockParentLogger("ancestorLogger", local
2889 Logger ancestor = new MockLogger("ancestorLogger", local
2961 Logger ancestor = new MockLogger("ancestorLogger", local
    [all...]
  /external/libusb_aah/libusb/os/
windows_usb.c 515 * Returns the session ID of a device's nth level ancestor
1181 unsigned int nb_guids, pass, i, j, ancestor; local
    [all...]

Completed in 1182 milliseconds

1 2 3