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

1 2 3 4 5 6 7

  /libcore/luni/src/main/java/javax/xml/transform/dom/
DOMResult.java 100 * <p>In practice, <code>node</code> and <code>nextSibling</code> should be
106 * <p>Use <code>nextSibling</code> to specify the child node
108 * If <code>nextSibling</code> is not a sibling of <code>node</code>,
110 * If <code>node</code> is <code>null</code> and <code>nextSibling</code> is not <code>null</code>,
112 * If <code>nextSibling</code> is <code>null</code>,
119 * @param nextSibling The child node where the result nodes should be inserted before.
121 * @throws IllegalArgumentException If <code>nextSibling</code> is not a sibling of <code>node</code>.
122 * @throws IllegalArgumentException If <code>node</code> is <code>null</code> and <code>nextSibling</code> is not <code>null</code>.
126 public DOMResult(Node node, Node nextSibling) {
129 if (nextSibling != null)
    [all...]
  /external/pdfium/testing/libfuzzer/
pdf_xml_fuzzer.cc 28 pXMLNode; pXMLNode = pXMLNode->GetNodeItem(CFDE_XMLNode::NextSibling)) {
32 pXMLNode->GetNodeItem(CFDE_XMLNode::NextSibling);
34 pNextNode = pNextNode->GetNodeItem(CFDE_XMLNode::NextSibling)) {
  /external/guava/guava/src/com/google/common/collect/
LinkedListMultimap.java 116 Node<K, V> nextSibling; // the next node with the same key
151 firstNode.nextSibling = null;
214 * {@code nextSibling} element, or at the end of the list if {@code
215 * nextSibling} is null. Note: if {@code nextSibling} is specified, it MUST be
219 @Nullable K key, @Nullable V value, @Nullable Node<K, V> nextSibling) {
225 } else if (nextSibling == null) { // non-empty list, add to tail
236 keyTail.nextSibling = node;
240 } else { // non-empty list, insert before nextSibling
243 node.previous = nextSibling.previous
    [all...]