Searched refs:startNode (Results 1 - 25 of 34) sorted by relevance

12

/external/webkit/Source/WebCore/editing/
H A DBreakBlockquoteCommand.cpp105 // startNode is the first node that we need to move to the new blockquote.
106 Node* startNode = pos.deprecatedNode(); local
109 if (startNode->isTextNode()) {
110 Text* textNode = static_cast<Text*>(startNode);
112 startNode = startNode->traverseNextNode();
113 ASSERT(startNode);
117 Node* childAtOffset = startNode->childNode(pos.deprecatedEditingOffset());
118 startNode = childAtOffset ? childAtOffset : startNode
[all...]
H A DModifySelectionListLevel.h40 void appendSiblingNodeRange(Node* startNode, Node* endNode, Element* newParent);
41 void insertSiblingNodeRangeBefore(Node* startNode, Node* endNode, Node* refNode);
42 void insertSiblingNodeRangeAfter(Node* startNode, Node* endNode, Node* refNode);
H A DDeleteSelectionCommand.cpp433 Node* startNode = m_upstreamStart.deprecatedNode(); local
436 if (startNode == m_startBlock && startOffset == 0 && canHaveChildrenForEditing(startNode) && !startNode->hasTagName(tableTag)) {
438 startNode = startNode->traverseNextNode();
441 if (startOffset >= caretMaxOffset(startNode) && startNode->isTextNode()) {
442 Text *text = static_cast<Text *>(startNode);
443 if (text->length() > (unsigned)caretMaxOffset(startNode))
759 Node* startNode = m_selectionToDelete.start().deprecatedNode(); local
[all...]
H A DApplyStyleCommand.cpp346 Node* startNode = start.deprecatedNode(); local
347 if (startNode->isTextNode() && start.deprecatedEditingOffset() >= caretMaxOffset(startNode)) // Move out of text node if range does not include its characters.
348 startNode = startNode->traverseNextNode();
353 for (Node *node = startNode; node != beyondEnd; node = node->traverseNextNode())
360 for (Node* node = startNode; node != beyondEnd; node = node->traverseNextNode()) {
518 static Node* highestEmbeddingAncestor(Node* startNode, Node* enclosingNode) argument
520 for (Node* n = startNode; n && n != enclosingNode; n = n->parentNode()) {
661 Node* startNode local
1231 Node* startNode = start.containerNode(); local
1311 RefPtr<Node> startNode = passedStartNode; local
[all...]
H A DFormatBlockCommand.cpp40 static Node* enclosingBlockToSplitTreeTo(Node* startNode);
147 Node* enclosingBlockToSplitTreeTo(Node* startNode) argument
149 Node* lastBlock = startNode;
150 for (Node* n = startNode; n; n = n->parentNode()) {
H A DModifySelectionListLevel.cpp91 void ModifySelectionListLevelCommand::insertSiblingNodeRangeBefore(Node* startNode, Node* endNode, Node* refNode) argument
93 Node* node = startNode;
106 void ModifySelectionListLevelCommand::insertSiblingNodeRangeAfter(Node* startNode, Node* endNode, Node* refNode) argument
108 Node* node = startNode;
122 void ModifySelectionListLevelCommand::appendSiblingNodeRange(Node* startNode, Node* endNode, Element* newParent) argument
124 Node* node = startNode;
H A Dvisible_units.cpp366 Node *startNode; local
375 startNode = startRenderer->node();
376 if (startNode)
382 VisiblePosition visPos = startNode->isTextNode() ? VisiblePosition(Position(startNode, static_cast<InlineTextBox *>(startBox)->start(), Position::PositionIsOffsetInAnchor), DOWNSTREAM)
383 : VisiblePosition(positionBeforeNode(startNode), DOWNSTREAM);
746 Node* startNode = p.deprecatedNode(); local
748 if (!startNode)
751 if (isRenderedAsNonInlineTableImageOrHR(startNode))
752 return positionBeforeNode(startNode);
820 Node* startNode = p.deprecatedNode(); local
[all...]
H A Dmarkup.cpp126 Node* serializeNodes(Node* startNode, Node* pastEnd);
320 Node* StyledMarkupAccumulator::serializeNodes(Node* startNode, Node* pastEnd) argument
325 for (Node* n = startNode; n != pastEnd; n = next) {
382 // or b) ancestors that we never encountered during a pre-order traversal starting at startNode:
383 ASSERT(startNode->isDescendantOf(parent));
561 Node* startNode = updatedRange->firstNode(); local
572 startNode = visibleStart.next().deepEquivalent().deprecatedNode();
575 if (pastEnd && Range::compareBoundaryPoints(startNode, 0, pastEnd, 0, ec) >= 0) {
592 Node* lastClosed = accumulator.serializeNodes(startNode, pastEnd);
H A DTypingCommand.cpp175 Node* startNode = selectionForInsertion.start().deprecatedNode(); local
177 if (startNode && startNode->rootEditableElement() && compositionType != TextCompositionUpdate) {
181 startNode->rootEditableElement()->dispatchEvent(evt, ec);
H A DApplyStyleCommand.h97 void applyInlineStyleToNodeRange(EditingStyle*, Node* startNode, Node* pastEndNode);
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTreeWalker2Result.java102 protected void startNode(int node) throws org.xml.sax.SAXException method in class:TreeWalker2Result
115 super.startNode(node);
146 super.startNode(node);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebHTMLRepresentation.h62 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
H A DWebHTMLRepresentation.mm278 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset
280 return [WebHTMLConverter editingAttributedStringFromRange:Range::create(core(startNode)->document(), core(startNode), startOffset, core(endNode), endOffset).get()];
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMTreeWalker.java98 * operating as a Visitor. startNode (preorder) and endNode
114 startNode(pos);
148 * operating as a Visitor. startNode (preorder) and endNode
167 startNode(pos);
215 protected void startNode(int node) throws org.xml.sax.SAXException method in class:DTMTreeWalker
/external/webkit/Source/WebCore/dom/
H A DPosition.cpp519 Node* startNode = deprecatedNode(); local
520 if (!startNode)
524 Node* boundary = enclosingVisualBoundary(startNode);
528 bool startEditable = startNode->rendererIsEditable();
529 Node* lastNode = startNode;
580 if (currentNode != startNode) {
641 Node* startNode = deprecatedNode(); local
642 if (!startNode)
646 Node* boundary = enclosingVisualBoundary(startNode);
650 bool startEditable = startNode
[all...]
/external/icu4c/common/
H A Drbbitblb.cpp457 RBBINode *startNode; local
459 startNode = (RBBINode *)matchStartNodes->elementAt(startNodeIx);
460 if (startNode->fType != RBBINode::leafChar) {
464 if (endNode->fVal == startNode->fVal) {
471 // to the second char of a match starting with startNode.
472 setAdd(endNode->fFollowPos, startNode->fFollowPos);
516 RBBINode *startNode; local
519 startNode = (RBBINode *)matchStartNodes->elementAt(startNodeIx);
520 if (startNode->fType != RBBINode::leafChar) {
524 if (startNode
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DTreeWalker.java145 startNode(pos);
199 startNode(pos);
258 protected void startNode(Node node) throws org.xml.sax.SAXException method in class:TreeWalker
322 // System.out.println("TreeWalker#startNode: "+node.getNodeName());
334 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue());
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DTreeWalker.java177 startNode(pos);
230 startNode(pos);
289 protected void startNode(Node node) throws org.xml.sax.SAXException method in class:TreeWalker
335 // System.out.println("TreeWalker#startNode: "+node.getNodeName());
342 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue());
345 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue());
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM2.java1569 final int startNode = _startNode;
1570 if (startNode == NULL) {
1574 if (_includeSelf && (_currentNode + 1) == startNode)
1580 // %OPT% If the startNode is the root node, do not need
1582 if (startNode == ROOTNODE) {
1660 final int startNode = _startNode;
1677 if (NULL == expType || _parent2(node) < startNode && startNode != node) {
1687 else if (startNode == DTMDefaultBase.ROOTNODE)
1708 if (NULL == expType || _parent2(node) < startNode
[all...]
H A DSAX2DTM.java530 int startNode = identity;
550 } while (DTM.NULL != identity && (_parent(identity) >= startNode));
1273 int startNode = identity;
1293 } while (DTM.NULL != identity && (_parent(identity) >= startNode));
/external/webkit/Source/WebCore/inspector/front-end/
H A Dutilities.js48 var startNode;
60 if (!startNode)
61 startNode = stayWithinNode;
69 startNode = node;
76 if (startNode)
82 if (!startNode) {
83 startNode = stayWithinNode;
87 startNode = this;
127 result.setStart(startNode, startOffset);
/external/webkit/Source/WebKit/win/
H A DWebHTMLRepresentation.h61 /* [in] */ IDOMNode* startNode,
/external/srec/tools/make_ve_grammar/
H A Dmake_ve_grammar.c99 nodeID startNode = 0; local
205 fprintf(pFile_PCLG,"%d\t%d\thmm%d_#sil#\t-pau-\n", startNode, pauEndNode, i);
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebHTMLRepresentation.idl62 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
64 HRESULT attributedStringFromDOMNodes([in] IDOMNode* startNode, [in] int startOffset, [in] IDOMNode* endNode, [in] int endOffset, [out, retval] IDataObject** attributedString);
/external/webkit/Source/WebCore/rendering/
H A DRenderTextControl.cpp306 Node* startNode = 0; local
314 setContainerAndOffsetForRange(node, start - offset, startNode, start);
324 if (!startNode || !endNode)
327 return Range::create(document(), startNode, start, endNode, end);

Completed in 323 milliseconds

12