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

1 2

  /external/webkit/WebCore/dom/
NodeWithIndex.h 49 m_index = m_node->nodeIndex();
52 ASSERT(m_index == static_cast<int>(m_node->nodeIndex()));
Position.h 84 // will return img->parentNode() and img->nodeIndex() from these functions.
210 return Position(node->parentNode(), node->nodeIndex(), Position::PositionIsOffsetInAnchor);
216 return Position(node->parentNode(), node->nodeIndex() + 1, Position::PositionIsOffsetInAnchor);
Range.cpp 367 int nodeIndex = refNode->nodeIndex();
376 if (comparePoint(parentNode, nodeIndex, ec) < 0) { // starts before
377 if (comparePoint(parentNode, nodeIndex + 1, ec) > 0) // ends after the range
381 if (comparePoint(parentNode, nodeIndex + 1, ec) > 0) // ends after the range
566 int nodeIndex = refNode->nodeIndex();
575 if (comparePoint(parentNode, nodeIndex, ec) < 0 && // starts before start
576 comparePoint(parentNode, nodeIndex + 1, ec) < 0) { // ends before start
578 } else if (comparePoint(parentNode, nodeIndex, ec) > 0 && // starts after en
    [all...]
RangeBoundaryPoint.h 89 m_offsetInContainer = m_childBeforeBoundary->nodeIndex() + 1;
Position.cpp 143 return m_anchorNode->nodeIndex();
145 return m_anchorNode->nodeIndex() + 1;
246 return Position(parent, n->nodeIndex());
278 return Position(parent, n->nodeIndex() + 1);
521 // return lastVisible on the next iteration, but we terminate early to avoid doing a nodeIndex() call.
633 // positions will be [boundary->parentNode(), originalBlock->nodeIndex() + 1].
    [all...]
Node.h 315 unsigned nodeIndex() const;
Node.cpp 883 unsigned Node::nodeIndex() const
    [all...]
  /external/webkit/WebCore/xml/
XPathPath.cpp 138 for (size_t nodeIndex = 0; nodeIndex < matches.size(); ++nodeIndex) {
139 Node* node = matches[nodeIndex];
  /external/webkit/WebCore/page/
DOMSelection.cpp 112 return shadowAncestor->nodeIndex();
130 return shadowAncestor->nodeIndex();
148 return shadowAncestor->nodeIndex();
166 return shadowAncestor->nodeIndex();
348 int offset = shadowAncestor->nodeIndex();
436 unsigned nodeIndex = n->nodeIndex();
443 bool nodeFullySelected = Range::compareBoundaryPoints(parentNode, nodeIndex, selectedRange->startContainer(ec), selectedRange->startOffset(ec)) >= 0
444 && Range::compareBoundaryPoints(parentNode, nodeIndex + 1, selectedRange->endContainer(ec), selectedRange->endOffset(ec)) <= 0;
449 bool nodeFullyUnselected = Range::compareBoundaryPoints(parentNode, nodeIndex, selectedRange->endContainer(ec), selectedRange->endOffset(ec)) >
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTM.java 185 int nodeIndex = m_nodes.size();
188 if(m_dtmIdent.size() == (nodeIndex>>>DTMManager.IDENT_DTM_NODE_BITS))
198 mgrD.addDTM(this,id,nodeIndex);
211 // ensureSize(nodeIndex);
248 m_firstch.setElementAt(NOTPROCESSED,nodeIndex);
249 m_nextsib.setElementAt(NOTPROCESSED,nodeIndex);
250 m_prevsib.setElementAt(previousSibling,nodeIndex);
251 m_parent.setElementAt(parentIndex,nodeIndex);
259 m_firstch.setElementAt(nodeIndex,parentIndex);
296 m_exptype.setElementAt(expandedNameID,nodeIndex);
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java 872 int nodeIndex = m_size++;
875 if(m_dtmIdent.size() == (nodeIndex>>>DTMManager.IDENT_DTM_NODE_BITS))
877 addNewDTMID(nodeIndex);
891 m_nextsib.setElementAt(nodeIndex,previousSibling);
905 declareNamespaceInContext(parentIndex,nodeIndex);
911 m_firstch.setElementAt(nodeIndex,parentIndex);
916 return nodeIndex;
921 * @param nodeIndex The node identity at which the new DTM ID will begin
924 protected void addNewDTMID(int nodeIndex) {
933 mgrD.addDTM(this,id,nodeIndex);
    [all...]
SAX2DTM2.java     [all...]
  /external/chromium/third_party/icu/source/i18n/
zstrfmt.cpp 277 uint16_t nodeIndex = parent->fFirstChild;
278 while (nodeIndex > 0) {
279 CharacterNode *current = fNodes + nodeIndex;
286 prevIndex = nodeIndex;
287 nodeIndex = current->fNextSibling;
304 node->fNextSibling = nodeIndex;
317 uint16_t nodeIndex = parent->fFirstChild;
318 while (nodeIndex > 0) {
319 CharacterNode *current = fNodes + nodeIndex;
326 nodeIndex = current->fNextSibling
    [all...]
  /external/icu4c/i18n/
zstrfmt.cpp 318 uint16_t nodeIndex = parent->fFirstChild;
319 while (nodeIndex > 0) {
320 CharacterNode *current = fNodes + nodeIndex;
327 prevIndex = nodeIndex;
328 nodeIndex = current->fNextSibling;
345 node->fNextSibling = nodeIndex;
358 uint16_t nodeIndex = parent->fFirstChild;
359 while (nodeIndex > 0) {
360 CharacterNode *current = fNodes + nodeIndex;
367 nodeIndex = current->fNextSibling
    [all...]
  /external/webkit/WebCore/editing/
DeleteSelectionCommand.cpp 316 if (node->parent() == position.node() && node->nodeIndex() < (unsigned)position.deprecatedEditingOffset())
469 ASSERT(node->nodeIndex() < (unsigned)m_downstreamEnd.deprecatedEditingOffset());
508 offset = n->nodeIndex() + 1;
    [all...]
htmlediting.cpp     [all...]
TextIterator.cpp     [all...]
ApplyStyleCommand.cpp     [all...]
visible_units.cpp 613 return Position(node->parent(), node->nodeIndex());
714 return Position(node->parent(), node->nodeIndex());
    [all...]
ReplaceSelectionCommand.cpp     [all...]
SelectionController.cpp     [all...]
  /external/webkit/WebKit/android/nav/
CacheBuilder.cpp 503 int nodeIndex = count++;
536 DUMP_NAV_LOGD("{ %d, %d, %d, %d, %d }, // %d\n", nodeIndex,
549 nodeIndex, rect.x(), rect.y(), rect.width(), rect.height());
    [all...]
  /external/webkit/WebCore/rendering/
RenderTreeAsText.cpp 572 result += "child " + String::number(n->nodeIndex()) + " {" + getTagName(n) + "}";
  /external/webkit/SunSpider/tests/parse-only/
prototype-1.6.0.3.js     [all...]
concat-jquery-mootools-prototype.js     [all...]

Completed in 934 milliseconds

1 2