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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/dom/
NodeWithIndex.h 48 m_index = m_node.nodeIndex();
50 ASSERT(m_index == static_cast<int>(m_node.nodeIndex()));
Range.cpp 304 int nodeIndex = refNode->nodeIndex();
313 if (comparePoint(parentNode, nodeIndex, exceptionState) < 0) { // starts before
314 if (comparePoint(parentNode, nodeIndex + 1, exceptionState) > 0) // ends after the range
319 if (comparePoint(parentNode, nodeIndex + 1, exceptionState) > 0) // ends after the range
495 int nodeIndex = refNode->nodeIndex();
504 if (comparePoint(parentNode, nodeIndex, exceptionState) < 0 // starts before start
505 && comparePoint(parentNode, nodeIndex + 1, exceptionState) < 0) { // ends before start
509 if (comparePoint(parentNode, nodeIndex, exceptionState) > 0 // starts after en
    [all...]
Position.h 98 // will return img->parentNode() and img->nodeIndex() from these functions.
254 return Position(node.parentNode(), node.nodeIndex(), Position::PositionIsOffsetInAnchor);
260 return Position(node.parentNode(), node.nodeIndex() + 1, Position::PositionIsOffsetInAnchor);
RangeBoundaryPoint.h 101 m_offsetInContainer = m_childBeforeBoundary->nodeIndex() + 1;
Position.cpp 189 return m_anchorNode->nodeIndex();
191 return m_anchorNode->nodeIndex() + 1;
325 return createLegacyEditingPosition(parent, node->nodeIndex());
354 return createLegacyEditingPosition(parent, node->nodeIndex() + 1);
608 // return lastVisible on the next iteration, but we terminate early to avoid doing a nodeIndex() call.
722 // positions will be [boundary->parentNode(), originalBlock->nodeIndex() + 1].
    [all...]
Node.h 451 unsigned nodeIndex() const;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/heap_snapshot_worker/
JSHeapSnapshot.js 54 * @param {number} nodeIndex
57 createNode: function(nodeIndex)
59 return new WebInspector.JSHeapSnapshotNode(this, nodeIndex);
220 return this._flags[node.nodeIndex / this._nodeFieldCount];
243 this._flags[edgesIter.edge.node().nodeIndex / this._nodeFieldCount] |= flag;
272 list.push(iter.edge.node().nodeIndex / nodeFieldCount);
325 var nodeIndex = containmentEdges[edgeIndex + edgeToNodeOffset];
327 node.nodeIndex = nodeIndex;
332 var nodeOrdinal = nodeIndex / nodeFieldCount
    [all...]
HeapSnapshot.js 91 return this._snapshot.createNode(this.nodeIndex());
97 nodeIndex: function()
193 this._node.nodeIndex = index;
327 nodeIndex: function()
452 * @param {number=} nodeIndex
454 WebInspector.HeapSnapshotNode = function(snapshot, nodeIndex)
457 this.nodeIndex = nodeIndex || 0;
466 return this._snapshot._nodeDistances[this.nodeIndex / this._snapshot._nodeFieldCount];
491 return this._snapshot._dominatorsTree[this.nodeIndex / this._snapshot._nodeFieldCount] * nodeFieldCount
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotProxy.js 339 dominatorIdsForNode: function(nodeIndex, callback)
341 this.callMethod(callback, "dominatorIdsForNode", nodeIndex);
345 * @param {number} nodeIndex
348 createEdgesProvider: function(nodeIndex)
350 return this.callFactoryMethod(null, "createEdgesProvider", WebInspector.HeapSnapshotProviderProxy, nodeIndex);
354 * @param {number} nodeIndex
357 createRetainingEdgesProvider: function(nodeIndex)
359 return this.callFactoryMethod(null, "createRetainingEdgesProvider", WebInspector.HeapSnapshotProviderProxy, nodeIndex);
401 * @param {number} nodeIndex
404 createNodesProviderForDominator: function(nodeIndex)
    [all...]
HeapSnapshotCommon.js 120 * @param {number} nodeIndex
125 WebInspector.HeapSnapshotCommon.Node = function(id, name, distance, nodeIndex, retainedSize, selfSize, type)
130 this.nodeIndex = nodeIndex;
HeapSnapshotDataGrids.js 639 * @param {number} nodeIndex
641 setDataSource: function(snapshot, nodeIndex)
644 var node = { nodeIndex: nodeIndex || snapshot.rootNodeIndex };
711 * @param {number} nodeIndex
713 setDataSource: function(snapshot, nodeIndex)
715 WebInspector.HeapSnapshotContainmentDataGrid.prototype.setDataSource.call(this, snapshot, nodeIndex);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMSelection.cpp 379 int offset = shadowAncestor->nodeIndex();
474 unsigned nodeIndex = n->nodeIndex();
482 bool nodeFullySelected = Range::compareBoundaryPoints(parentNode, nodeIndex, selectedRange->startContainer(), selectedRange->startOffset(), exceptionState) >= 0 && !exceptionState.hadException()
483 && Range::compareBoundaryPoints(parentNode, nodeIndex + 1, selectedRange->endContainer(), selectedRange->endOffset(), exceptionState) <= 0 && !exceptionState.hadException();
489 bool nodeFullyUnselected = (Range::compareBoundaryPoints(parentNode, nodeIndex, selectedRange->endContainer(), selectedRange->endOffset(), exceptionState) > 0 && !exceptionState.hadException())
490 || (Range::compareBoundaryPoints(parentNode, nodeIndex + 1, selectedRange->startContainer(), selectedRange->startOffset(), exceptionState) < 0 && !exceptionState.hadException());
547 return adjustedNode->nodeIndex();
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathPath.cpp 162 for (size_t nodeIndex = 0; nodeIndex < matches->size(); ++nodeIndex) {
163 Node* node = (*matches)[nodeIndex];
  /external/apache-xml/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...]
  /external/apache-xml/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...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 416 int nodeIndex = findIndexOfChar(mRootNodeArray, word[charIndex]);
417 while (CHARACTER_NOT_FOUND_INDEX != nodeIndex) {
418 currentPtNode = currentNodeArray.mData.get(nodeIndex);
426 nodeIndex = findIndexOfChar(currentNodeArray, word[charIndex]);
429 if (CHARACTER_NOT_FOUND_INDEX == nodeIndex) {
495 currentNodeArray.mData.set(nodeIndex, newParent);
  /external/icu/icu4c/source/i18n/
tznames_impl.cpp 232 uint16_t nodeIndex = parent->fFirstChild;
233 while (nodeIndex > 0) {
234 CharacterNode *current = fNodes + nodeIndex;
241 prevIndex = nodeIndex;
242 nodeIndex = current->fNextSibling;
259 node->fNextSibling = nodeIndex;
272 uint16_t nodeIndex = parent->fFirstChild;
273 while (nodeIndex > 0) {
274 CharacterNode *current = fNodes + nodeIndex;
281 nodeIndex = current->fNextSibling
    [all...]
  /external/chromium_org/third_party/icu/source/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/chromium_org/third_party/readability/js/
readability.js 554 for(var nodeIndex = 0; (node = allElements[nodeIndex]); nodeIndex+=1) {
568 nodeIndex-=1;
584 nodeIndex-=1;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp     [all...]
ApplyStyleCommand.cpp     [all...]
DeleteSelectionCommand.cpp 557 offset = n->nodeIndex() + 1;
    [all...]
htmlediting.cpp 910 if (position.containerNode() == node.parentNode() && static_cast<unsigned>(position.offsetInContainerNode()) > node.nodeIndex())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElement.cpp 425 offsetInContainer = node->nodeIndex() + offset;

Completed in 446 milliseconds

1 2 3