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

1 2

  /external/webkit/WebCore/editing/
BreakBlockquoteCommand.cpp 109 // startNode is the first node that we need to move to the new blockquote.
110 Node* startNode = pos.node();
113 if (startNode->isTextNode()) {
114 Text* textNode = static_cast<Text*>(startNode);
116 startNode = startNode->traverseNextNode();
117 ASSERT(startNode);
121 Node* childAtOffset = startNode->childNode(pos.deprecatedEditingOffset());
122 startNode = childAtOffset ? childAtOffset : startNode->traverseNextNode()
    [all...]
ModifySelectionListLevel.h 40 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);
DeleteSelectionCommand.cpp 404 Node* startNode = m_upstreamStart.node();
407 if (startNode == m_startBlock && startOffset == 0 && canHaveChildrenForEditing(startNode) && !startNode->hasTagName(tableTag)) {
409 startNode = startNode->traverseNextNode();
412 if (startOffset >= caretMaxOffset(startNode) && startNode->isTextNode()) {
413 Text *text = static_cast<Text *>(startNode);
414 if (text->length() > (unsigned)caretMaxOffset(startNode))
    [all...]
ModifySelectionListLevel.cpp 91 void ModifySelectionListLevelCommand::insertSiblingNodeRangeBefore(Node* startNode, Node* endNode, Node* refNode)
93 Node* node = startNode;
106 void ModifySelectionListLevelCommand::insertSiblingNodeRangeAfter(Node* startNode, Node* endNode, Node* refNode)
108 Node* node = startNode;
122 void ModifySelectionListLevelCommand::appendSiblingNodeRange(Node* startNode, Node* endNode, Element* newParent)
124 Node* node = startNode;
visible_units.cpp 399 Node *startNode;
408 startNode = startRenderer->node();
409 if (startNode)
421 VisiblePosition visPos = VisiblePosition(startNode, startOffset, DOWNSTREAM);
782 Node *startNode = p.node();
784 if (!startNode)
787 if (isRenderedAsNonInlineTableImageOrHR(startNode))
788 return firstDeepEditingPositionForNode(startNode);
790 Node* startBlock = enclosingBlock(startNode);
792 Node *node = startNode;
    [all...]
ApplyStyleCommand.cpp 704 Node *startNode = start.node();
705 if (startNode->isTextNode() && start.deprecatedEditingOffset() >= caretMaxOffset(startNode)) // Move out of text node if range does not include its characters.
706 startNode = startNode->traverseNextNode();
711 for (Node *node = startNode; node != beyondEnd; node = node->traverseNextNode())
718 for (Node* node = startNode; node != beyondEnd; node = node->traverseNextNode()) {
    [all...]
InsertListCommand.cpp 217 Node* startNode = start.deepEquivalent().node();
221 if (previousList && (!previousList->hasTagName(listTag) || startNode->isDescendantOf(previousList) || previousCell != currentCell))
223 if (nextList && (!nextList->hasTagName(listTag) || startNode->isDescendantOf(nextList) || nextCell != currentCell))
markup.cpp 610 void appendMarkup(Node* startNode, EChildrenOnly, const HashMap<AtomicStringImpl*, AtomicStringImpl*>* namespaces = 0);
621 void MarkupAccumulator::appendMarkup(Node* startNode, EChildrenOnly childrenOnly, const HashMap<AtomicStringImpl*, AtomicStringImpl*>* namespaces)
623 if (startNode == m_nodeToSkip)
633 m_nodes->append(startNode);
634 appendStartMarkup(m_result, startNode, 0, DoNotAnnotateForInterchange, false, &namespaceHash);
638 if (!(startNode->document()->isHTMLDocument() && doesHTMLForbidEndTag(startNode))) {
639 for (Node* current = startNode->firstChild(); current; current = current->nextSibling())
645 appendEndMarkup(m_result, startNode);
831 Node* startNode = updatedRange->firstNode()
    [all...]
TextIterator.cpp     [all...]
TypingCommand.cpp 143 Node* startNode = selectionForInsertion.start().node();
145 if (startNode && startNode->rootEditableElement() && !insertedTextIsComposition) {
149 startNode->rootEditableElement()->dispatchEvent(evt, ec);
  /libcore/luni/src/main/java/org/apache/xalan/transformer/
TreeWalker2Result.java 102 protected void startNode(int node) throws org.xml.sax.SAXException
115 super.startNode(node);
146 super.startNode(node);
  /external/webkit/WebCore/dom/
Position.cpp 474 Node* startNode = node();
475 if (!startNode)
479 Node* boundary = enclosingVisualBoundary(startNode);
482 bool startEditable = startNode->isContentEditable();
483 Node* lastNode = startNode;
534 if (currentNode != startNode) {
595 Node* startNode = node();
596 if (!startNode)
600 Node* boundary = enclosingVisualBoundary(startNode);
603 bool startEditable = startNode->isContentEditable()
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebHTMLRepresentation.h 61 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
WebHTMLRepresentation.mm 262 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset
264 return [NSAttributedString _web_attributedStringFromRange:Range::create(core(startNode)->document(), core(startNode), startOffset, core(endNode), endOffset).get()];
  /libcore/luni/src/main/java/java/util/prefs/
AbstractPreferences.java 530 AbstractPreferences startNode = null;
540 startNode = root;
543 startNode = this;
547 return startNode.nodeImpl(name, true);
609 AbstractPreferences startNode = null;
622 startNode = root;
625 startNode = this;
629 Preferences result = startNode.nodeImpl(name, false);
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMTreeWalker.java 98 * 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
  /external/chromium/third_party/icu/source/common/
rbbitblb.cpp 457 RBBINode *startNode;
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;
519 startNode = (RBBINode *)matchStartNodes->elementAt(startNodeIx);
520 if (startNode->fType != RBBINode::leafChar) {
524 if (startNode->fVal == bofNode->fVal)
    [all...]
  /external/icu4c/common/
rbbitblb.cpp 457 RBBINode *startNode;
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;
519 startNode = (RBBINode *)matchStartNodes->elementAt(startNodeIx);
520 if (startNode->fType != RBBINode::leafChar) {
524 if (startNode->fVal == bofNode->fVal)
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
TreeWalker.java 145 startNode(pos);
199 startNode(pos);
258 protected void startNode(Node node) throws org.xml.sax.SAXException
322 // System.out.println("TreeWalker#startNode: "+node.getNodeName());
334 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue());
  /libcore/luni/src/main/java/org/apache/xml/utils/
TreeWalker.java 177 startNode(pos);
230 startNode(pos);
289 protected void startNode(Node node) throws org.xml.sax.SAXException
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/webkit/WebCore/inspector/front-end/
utilities.js 63 var startNode;
75 if (!startNode)
76 startNode = stayWithinNode;
84 startNode = node;
91 if (startNode)
97 if (!startNode) {
98 startNode = stayWithinNode;
102 startNode = this;
142 result.setStart(startNode, startOffset);
  /external/webkit/WebKit/win/
WebHTMLRepresentation.h 61 /* [in] */ IDOMNode* startNode,
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java     [all...]
  /external/srec/tools/make_ve_grammar/
make_ve_grammar.c 99 nodeID startNode = 0;
205 fprintf(pFile_PCLG,"%d\t%d\thmm%d_#sil#\t-pau-\n", startNode, pauEndNode, i);
  /external/webkit/WebKit/win/Interfaces/
IWebHTMLRepresentation.idl 62 - (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);

Completed in 424 milliseconds

1 2